JDBC的快速入門
阿新 • • 發佈:2022-12-11
JDBC的快速入門
一、前置工作
1.匯入相關資料庫的jar包
2.右擊jar包,點選And as Library...
二、程式碼實現
1.註冊驅動
使用 Class.forName();方法註冊驅動,此時使用musql資料庫
Class.forName("com.mysql.jdbc.Driver");
2.獲取連結
使用DriverManager.getConnection(url,username,password);獲取連結
3.定義sql語句
例如:修改account表中的id=1的money資料:
String sql = "update account set money = 2000 where id = 1";
4.獲取執行sql的物件,使用Statement方法
使用 Statement 方法獲取執行的物件
5.執行sql
.使用 executeUpdate 來執行sql語句
6.處理結果
7.釋放資源
stmt.close();
conn.close();
package com.itheima.jdbc; import java.sql.Connection; import java.sql.DriverManager; import java.sql.Statement; //JDBC的快速入門 public class JDBCDemo { public static void main(String[] args) throwsException { //1.註冊驅動 Class.forName("com.mysql.jdbc.Driver"); //2.獲取連結 String url = "jdbc:mysql://127.0.0.1:3306/db1"; String username = "root"; String password = "123456"; Connection conn = DriverManager.getConnection(url,username,password);//3.定義sql語句 String sql = "update account set money = 2000 where id = 1"; //4.獲取執行sql的物件 Statement Statement stmt = conn.createStatement(); //5.執行sql int count = stmt.executeUpdate(sql); //返回值是受影響的行數 //6.處理結果 System.out.println(count); //7.釋放資源 stmt.close(); conn.close(); } }
執行前後對比:
執行前:
執行後: