java 串連 postgresql

來源:互聯網
上載者:User

標籤:font   man   style   分享   ret   技術分享   use   import   驅動   

      最近公司用postgresql這個資料庫,看網上說這個資料庫還算好用,自己就用了一下,我就是用java串連了一下資料庫。

     其實每個資料庫的串連方式大致相同,只是用到的驅動不同,用不同資料庫只需要換不同的資料庫驅動包。

   

  項目結構

  

 

代碼

DBHelper

 

package com.xxx.postgrepsql;import java.sql.Connection;import java.sql.DriverManager;import java.sql.PreparedStatement;/** * 資料庫協助類 */public class DBHelper {    private static String url = "jdbc:postgresql://localhost:5432/Solution";    private static String driver = "org.postgresql.Driver";    private static String user = "postgres";    private static String password = "18731362155";    private Connection connection = null;    public Connection getConnection() {        return connection;    }    public PreparedStatement getStatement() {        return statement;    }    private PreparedStatement statement = null;    public DBHelper(String sql) {        try {            Class.forName(driver);            connection = DriverManager.getConnection(url, user, password);            statement = connection.prepareStatement(sql);        } catch (Exception e) {            e.printStackTrace();        }    }    public void close() {        try {            this.connection.close();            this.statement.close();        } catch (Exception e) {            e.printStackTrace();        }    }}

jdbcDemo

package com.xxx.postgrepsql;import java.sql.*;/** * 串連postgres資料庫 */public class jdbcDemo {    public static void main(String[] args) {        String sql="select * from t_user";        DBHelper dbHelper=new DBHelper(sql);        try {            ResultSet resultSet = dbHelper.getStatement().executeQuery();            System.out.println("Id      username        password");            while (resultSet.next()){                System.out.println(resultSet.getString(1)+"          "+resultSet.getString(2)+"             "+resultSet.getString(3));            }            dbHelper.close();        } catch (SQLException e) {            dbHelper.close();            e.printStackTrace();        }    }}

 

 

如果有什麼問題歡迎諮詢qq1058179540

 

java 串連 postgresql

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.