【JavaWeb】JDBC連線MySQL資料庫

weixin_33860722發表於2018-02-21
3426615-8782e226982a1e85.jpg

正文之前

在之前寫的JavaWeb專案中使用了JDBC,在此來回顧一下,並做個demo看看,先來看看JDBC的概念

Java資料庫連線,(Java Database Connectivity,簡稱JDBC)是Java語言中用來規範客戶端程式如何來訪問資料庫的應用程式介面,提供了諸如查詢和更新資料庫中資料的方法    ——Wikipedia

正文

1. 準備工作

  • IntelliJ IDEA

  • mysql-connector-java-5.0.8-bin(不是最新版本)

  • 建立資料庫 customer

  • 建表 customer

3426615-608c65d84fbb2b07.PNG

2. 定義資料庫資訊

    //資料庫地址
    private static final String url = "jdbc:mysql://localhost:3306/customer";
    private static final String name = "com.mysql.jdbc.Driver";
    private static final String username = "這裡填上你的資料庫名稱";
    private static final String password = "這裡填上你的資料庫的密碼";

3. 開啟連線

    private DBManager(String sql){
        try{
            Class.forName(name);
            connection = DriverManager.getConnection(url, username, password);
            preparedStatement = connection.prepareStatement(sql);

        }catch(Exception e){
            e.printStackTrace();
        }
    }

4. 進行操作後需要的關閉連線

    private void close(){
        try{
            this.connection.close();
            this.preparedStatement.close();
        }catch (Exception e){
            e.printStackTrace();
        }
    }

5. 寫個demo

    public static void main(String[] args){
        String sql = "SELECT * FROM customer";
        DBManager dbManager = new DBManager(sql);  //例項化

        String id, name, gender, phone, email, description;

        try{
            ResultSet result = dbManager.preparedStatement.executeQuery();
            while(result.next()){                  //若有資料,就輸出
                id = result.getString(1);
                name = result.getString(2);
                gender = result.getString(3);
                phone = result.getString(4);
                email = result.getString(5);
                description = result.getString(6);
                //顯示出每一行資料
                System.out.println(id + "  " + name + "  " + gender + "  "
                                    + phone + "  " + email + "  " + description);
            }
            result.close();
            dbManager.close();
            
        }catch (Exception e){
            e.printStackTrace();
        }
    }

6. 完整程式碼

3426615-f3d29e880fbf979c.PNG
3426615-2ec6c41b765eab8e.PNG

7. 查詢結果

JDBC:

3426615-00906f266c653614.PNG

MySQL Workbench:

3426615-f23dcf8a03fe2624.PNG

二者的結果是相同的,證明JDBC連線資料庫並且操作成功

相關文章