JDBC學習1——JDBC基本概念、JDBC的各個物件、JDBC控制事務

2020-08-14 11:06:38

1.JDBC

概念:Java DataBase Connectivity Java 數據庫連線, Java語言操作數據庫。

JDBC本質:其實是官方(sun公司)定義的一套操作所有關係型數據庫的規則,即介面。各個數據庫廠商去實現這套介面,提供數據庫驅動jar包。我們可以使用這套介面(JDBC)程式設計,真正執行的程式碼是驅動jar包中的實現類。

1.1JDBC快速入門

步驟:

  1. 匯入驅動jar包 mysql-connector-java-5.1.37-bin.jar
  2. 複製mysql-connector-java-5.1.37-bin.jar到專案的libs目錄下,然後右鍵–>Add As Library
  3. 註冊驅動
  4. 獲取數據庫連線物件 Connection
  5. 定義sql
  6. 獲取執行sql語句的物件 Statement
  7. 執行sql,接受返回結果
  8. 處理結果
  9. 釋放資源

程式碼實現:

//1. 匯入驅動jar包
//2.註冊驅動
Class.forName("com.mysql.jdbc.Driver");
//3.獲取數據庫連線物件
Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/db3", "root", "root");
//4.定義sql語句
String sql = "update account set balance = 500 where id = 1";
//5.獲取執行sql的物件 Statement
Statement stmt = conn.createStatement();
//6.執行sql
int count = stmt.executeUpdate(sql);
//7.處理結果
System.out.println(count);
//8.釋放資源
stmt.close();
conn.close();

1.2詳解各個物件

1.2.1 DriverManage,驅動管理物件

功能:註冊驅動:告訴程式該使用哪一個數據庫驅動jar。

static void registerDriver(Driver driver) :註冊與給定的驅動程式 DriverManager 。 

寫程式碼使用:

Class.forName("com.mysql.jdbc.Driver");

通過檢視原始碼發現:在com.mysql.jdbc.Driver類中存在靜態程式碼塊:

 static {
		try {
				java.sql.DriverManager.registerDriver(new Driver());
		 } catch (SQLException E) {
				throw new RuntimeException("Can't register driver!");
		}
}

注意:mysql5之後的驅動jar包可以省略註冊驅動的步驟。

1.2.2獲取數據庫連線

方法:

static Connection getConnection(String url, String user, String password) 

參數:url:指定連線的路徑;user:使用者名稱;password:密碼 。

語法:jdbc:mysql://ip地址(域名):埠號/數據庫名稱

例子:jdbc:mysql://localhost:3306/db3

注意:如果連線的是本機mysql伺服器,並且mysql服務預設埠是3306,則url可以簡寫爲:jdbc:mysql:數據庫名稱

1.2.3 Connection,數據庫連線物件

Connection,代表當前程式碼和數據庫連線的橋樑。

Connection的功能有兩個:1)獲取執行sql的物件(即Statement物件);2)管理事務。

1)獲取執行sql的物件的兩種方法:
Statement createStatement()
PreparedStatement prepareStatement(String sql)

2)Connection物件的管理事務的常用方法:

  • 開啓事務:setAutoCommit(boolean autoCommit) :呼叫該方法設定參數爲false,即開啓事務
  • 提交事務:commit()
  • 回滾事務:rollback()

1.2.4 Statement,執行sql的物件

Statement物件的執行sql的常用方法:
1)boolean execute(String sql) :可以執行任意的sql
2)int executeUpdate(String sql) :執行DML(insert、update、delete)語句、DDL(create,alter、drop)語句。
executeUpdate函數的返回值,是影響的行數,可以通過這個影響的行數判斷DML語句是否執行成功,返回值>0的則執行成功,反之,則失敗。
3)ResultSet executeQuery(String sql) :執行DQL(select)語句。

三個小練習,執行三種sql語句:

  1. account表 新增一條記錄
  2. account表 修改記錄
  3. account表 刪除一條記錄

程式碼:

Statement stmt = null;
Connection conn = null;
try {
	//1. 註冊驅動
	Class.forName("com.mysql.jdbc.Driver");
	//2. 定義sql
	String sql = "insert into account values(null,'王五',3000)";
	//3.獲取Connection物件
	conn = DriverManager.getConnection("jdbc:mysql:///db3", "root", "root");
	//4.獲取執行sql的物件 Statement
	stmt = conn.createStatement();
	/5.執行sql
	int count = stmt.executeUpdate(sql);//影響的行數
	 //6.處理結果
	System.out.println(count);
	if(count > 0){
		System.out.println("新增成功!");
	}else{
		System.out.println("新增失敗!");
	}
} catch (ClassNotFoundException e) {
	e.printStackTrace();
} catch (SQLException e) {
	e.printStackTrace();
}finally {
	//stmt.close();
	//7. 釋放資源
	//避免空指針異常
	if(stmt != null){
		try {
			stmt.close();
		} catch (SQLException e) {
			e.printStackTrace();
		}
	}
	 if(conn != null){
		try {
			conn.close();
		} catch (SQLException e) {
			e.printStackTrace();
		}
	}
}

1.2.5 ResultSet物件

結果集物件,封裝查詢結果。

用到的函數:
1)boolean next(): 遊標向下移動一行,判斷當前行是否是最後一行末尾(是否有數據),如果是,則返回false,如果不是則返回true。

2)getXxx(參數):獲取數據
Xxx:代表數據型別 如: int getInt() , String getString()
參數:int:代表列的編號,從1開始 如: getString(1);String:代表列名稱。 如: getDouble(「balance」)。

使用步驟:
1.遊標向下移動一行
2. 判斷是否有數據
3. 獲取數據

   //回圈判斷遊標是否是最後一行末尾。
while(rs.next()){
	//獲取數據
	//6.2 獲取數據
	int id = rs.getInt(1);
	String name = rs.getString("name");
	double balance = rs.getDouble(3);
	System.out.println(id + "---" + name + "---" + balance);
}

練習:
定義一個方法,查詢emp表的數據將其封裝爲物件,然後裝載集合,返回。
1.定義Emp類
2.定義方法 public List findAll(){}
3.實現方法 select * from emp;

/**
 * * 定義一個方法,查詢emp表的數據將其封裝爲物件,然後裝載集合,返回。
 */
public class JDBCDemo8 {
    public static void main(String[] args) {
        List<Emp> list = new JDBCDemo8().findAll2();
        System.out.println(list);
        System.out.println(list.size());
    }
    /**
     * 查詢所有emp物件
     * @return
     */
    public List<Emp> findAll(){
        Connection conn = null;
        Statement stmt = null;
        ResultSet rs = null;
        List<Emp> list = null;
        try {
            //1.註冊驅動
            Class.forName("com.mysql.jdbc.Driver");
            //2.獲取連線
            conn = DriverManager.getConnection("jdbc:mysql:///db3", "root", "root");
            //3.定義sql
            String sql = "select * from emp";
            //4.獲取執行sql的物件
            stmt = conn.createStatement();
            //5.執行sql
            rs = stmt.executeQuery(sql);
            //6.遍歷結果集,封裝物件,裝載集合
            Emp emp = null;
            list = new ArrayList<Emp>();
            while(rs.next()){
                //獲取數據
                int id = rs.getInt("id");
                String ename = rs.getString("ename");
                int job_id = rs.getInt("job_id");
                int mgr = rs.getInt("mgr");
                Date joindate = rs.getDate("joindate");
                double salary = rs.getDouble("salary");
                double bonus = rs.getDouble("bonus");
                int dept_id = rs.getInt("dept_id");
                // 建立emp物件,並賦值
                emp = new Emp();
                emp.setId(id);
                emp.setEname(ename);
                emp.setJob_id(job_id);
                emp.setMgr(mgr);
                emp.setJoindate(joindate);
                emp.setSalary(salary);
                emp.setBonus(bonus);
                emp.setDept_id(dept_id);

                //裝載集合
                list.add(emp);
            }

        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        } catch (SQLException e) {
            e.printStackTrace();
        }finally {
            if(rs != null){
                try {
                    rs.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }

            if(stmt != null){
                try {
                    stmt.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }

            if(conn != null){
                try {
                    conn.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
        }
        return list;
    }

1.2.6 PreparedStatement:執行sql的物件

在下邊的登錄案例中,存在SQL隱碼攻擊問題:在拼接sql時,有一些sql的特殊關鍵字參與字串的拼接。會造成安全性問題。

問題復現:輸入使用者隨便,輸入密碼:a’ or ‘a’ = 'a。
則查詢的sql語句爲:select * from user where username = ‘fhdsjkf’ and password = ‘a’ or ‘a’ = ‘a’ 。

爲了解決sql注入問題,我們使用PreparedStatement物件。它能預編譯的SQL,參數使用?作爲佔位符。

步驟:

  1. 匯入驅動jar包 mysql-connector-java-5.1.37-bin.jar
  2. 註冊驅動
  3. 獲取數據庫連線物件 Connection
  4. 定義sql,注意:sql的參數使用?作爲佔位符。 如:select * from user where username = ? and password = ?;
  5. 獲取執行sql語句的物件 PreparedStatement Connection.prepareStatement(String sql)
  6. 給?賦值:
    方法: setXxx(參數1,參數2)
    * 參數1:?的位置編號 從1 開始
    * 參數2:?的值
  7. 執行sql,接受返回結果,不需要傳遞sql語句
  8. 處理結果
  9. 釋放資源

注意:後期都會使用PreparedStatement來完成增刪改查的所有操作。因爲PreparedStatement物件有兩個優點:可以防止SQL隱碼攻擊;效率更高。

程式碼如下:

public boolean login2(String username,String password) {
	if(username == null || password == null) {
		return false;
	}
	//連線數據庫,判斷是否成功
	Connection conn = null;
	Statement stmt = null;
	ResultSet rs = null;
	//1.獲取連線
	try {
		conn = JDBCUtils.getConnection();
		//2.定義sql
		String sql = "select * from user where username = ? and password = ?";
		//3. 獲取執行sql的物件
		pstmt = conn.prepareStatement(sql);
		//給?賦值
		pstmt.setString(1,username);
		pstmt setString(2,password);
		//4.執行查詢,不需要傳遞sql
		rs = pstmt.executeQuery();
		//判斷
		return rs.next();
	} catch (SQLException e) {
		e.printStackTrace();
	} finally {
		JDBCUtils.close(rs.pstmt,conn);
	}
	return false;
}

2.抽取JDBC工具類 ,JDBCUtils

* 目的:簡化書寫
* 分析:
  1. 註冊驅動也抽取

  2. 抽取一個方法獲取連線物件
    * 需求:不想傳遞參數(麻煩),還得保證工具類的通用性。
    * 解決:組態檔
    jdbc.properties
    url=
    user=
    password=

  3. 抽取一個方法釋放資源

程式碼實現:

public class JDBCUtils {
	private static String url;
	private static String user;
	private static String password;
	private static String driver;
	/**
	 * 檔案的讀取,只需要讀取一次即可拿到這些值。使用靜態程式碼塊
	*/
	static{
	    //讀取資原始檔,獲取值。
	    try {
	        //1. 建立Properties集合類。
	        Properties pro = new Properties();
	        //獲取src路徑下的檔案的方式--->ClassLoader 類載入器
	        ClassLoader classLoader = JDBCUtils.class.getClassLoader();
	        URL res  = classLoader.getResource("jdbc.properties");
	        String path = res.getPath();
	        System.out.println(path);///D:/IdeaProjects/itcast/out/production/day04_jdbc/jdbc.properties
	            
	        //2. 載入檔案
	       // pro.load(new FileReader("D:\\IdeaProjects\\itcast\\day04_jdbc\\src\\jdbc.properties"));
	        pro.load(new FileReader(path));
	        
	        //3. 獲取數據,賦值
	        url = pro.getProperty("url");
	        user = pro.getProperty("user");
	        password = pro.getProperty("password");
	        driver = pro.getProperty("driver");
	        
	        //4. 註冊驅動
	        Class.forName(driver);
	    } catch (IOException e) {
	        e.printStackTrace();
	    } catch (ClassNotFoundException e) {
	        e.printStackTrace();
	    }
	}


	/**
	 * 獲取連線
	 * @return 連線物件
	*/
	public static Connection getConnection() throws SQLException {
	
	    return DriverManager.getConnection(url, user, password);
 }
	
	/**
	 * 釋放資源
	 * @param stmt
	 * @param conn
	 */
	 public static void close(Statement stmt,Connection conn){
	    if( stmt != null){
	        try {
	            stmt.close();
	        } catch (SQLException e) {
	            e.printStackTrace();
	        }
	    }
	
	    if( conn != null){
	        try {
	            conn.close();
	        } catch (SQLException e) {
	            e.printStackTrace();
	        }
	    }
	 }
	
	
	/**
	 * 釋放資源
	 * @param stmt
	 * @param conn
	 */
	 public static void close(ResultSet rs,Statement stmt, Connection conn){
	    if( rs != null){
	        try {
	            rs.close();
	        } catch (SQLException e) {
	            e.printStackTrace();
	        }
	    }
	
	    if( stmt != null){
	        try {
	            stmt.close();
	        } catch (SQLException e) {
	            e.printStackTrace();
	        }
	    }
	
	    if( conn != null){
	        try {
	            conn.close();
	        } catch (SQLException e) {
	            e.printStackTrace();
	        }
	    }
  }
}
	/**
     * 演示JDBC工具類
     * @return
     */
    public List<Emp> findAll2(){
        Connection conn = null;
        Statement stmt = null;
        ResultSet rs = null;
        List<Emp> list = null;
        try {
           /* //1.註冊驅動
            Class.forName("com.mysql.jdbc.Driver");
            //2.獲取連線
            conn = DriverManager.getConnection("jdbc:mysql:///db3", "root", "root");*/
            conn = JDBCUtils.getConnection();
            //3.定義sql
            String sql = "select * from emp";
            //4.獲取執行sql的物件
            stmt = conn.createStatement();
            //5.執行sql
            rs = stmt.executeQuery(sql);
            //6.遍歷結果集,封裝物件,裝載集合
            Emp emp = null;
            list = new ArrayList<Emp>();
            while(rs.next()){
                //獲取數據
                int id = rs.getInt("id");
                String ename = rs.getString("ename");
                int job_id = rs.getInt("job_id");
                int mgr = rs.getInt("mgr");
                Date joindate = rs.getDate("joindate");
                double salary = rs.getDouble("salary");
                double bonus = rs.getDouble("bonus");
                int dept_id = rs.getInt("dept_id");
                // 建立emp物件,並賦值
                emp = new Emp();
                emp.setId(id);
                emp.setEname(ename);
                emp.setJob_id(job_id);
                emp.setMgr(mgr);
                emp.setJoindate(joindate);
                emp.setSalary(salary);
                emp.setBonus(bonus);
                emp.setDept_id(dept_id);

                //裝載集合
                list.add(emp);
            }

        } catch (SQLException e) {
            e.printStackTrace();
        }finally {
            JDBCUtils.close(rs,stmt,conn);
        }
        return list;
    }

3. 練習

需求:通過鍵盤錄入使用者名稱和密碼;判斷使用者是否登錄成功。
select * from user where username = 「」 and password = 「」;
如果這個sql有查詢結果,則成功,反之,則失敗。

步驟:
1.建立數據庫表 user

CREATE TABLE USER(
	id INT PRIMARY KEY AUTO_INCREMENT,
	username VARCHAR(32),
	PASSWORD VARCHAR(32)
);
INSERT INTO USER VALUES(NULL,'zhangsan','123');
INSERT INTO USER VALUES(NULL,'lisi','234');

2.程式碼實現:

public class JDBCDemo9 {
	public static void main(String[] args) {
		//1.鍵盤錄入,接受使用者名稱和密碼
		Scanner sc = new Scanner(System.in);
		System.out.println("請輸入使用者名稱:");
		String username = sc.nextLine();
		System.out.println("請輸入密碼:");
		String password = sc.nextLine();
		//2.呼叫方法
		boolean flag = new JDBCDemo9().login(username, password);
		//3.判斷結果,輸出不同語句
		if(flag){
			//登錄成功
			System.out.println("登錄成功!");
		}else{
			System.out.println("使用者名稱或密碼錯誤!");
		}
	}	
	/**
	 * 登錄方法
	 */
	public boolean login(String username ,String password){
		if(username == null || password == null){
			return false;
		}
		 //連線數據庫判斷是否登錄成功
		Connection conn = null;
		Statement stmt =  null;
		ResultSet rs = null;
		//1.獲取連線
		try {
			conn =  JDBCUtils.getConnection();
			//2.定義sql
			String sql = "select * from user where username = '"+username+"' and password = '"+password+"' ";
			//3.獲取執行sql的物件
			stmt = conn.createStatement();
			//4.執行查詢
			rs = stmt.executeQuery(sql);
			//5.判斷
			return rs.next();//如果有下一行,則返回true
		} catch (SQLException e) {
			e.printStackTrace();
		}finally {
			JDBCUtils.close(rs,stmt,conn);
	 	}
		return false;
	}
}

4.JDBC控制事務:

事務:一個包含多個步驟的業務操作。如果這個業務操作被事務管理,則這多個步驟要麼同時成功,要麼同時失敗。

操作:
1. 開啓事務
2. 提交事務
3. 回滾事務

使用Connection物件來管理事務

  • 開啓事務:setAutoCommit(boolean autoCommit) :呼叫該方法設定參數爲false,即開啓事務。在執行sql之前開啓事務。
  • 提交事務:commit()
    * 當所有sql都執行完提交事務
  • 回滾事務:rollback()
    * 在catch中回滾事務

程式碼:

public class JDBCDemo10 {
	public static void main(String[] args) {
		Connection conn = null;
		PreparedStatement pstmt1 = null;
		PreparedStatement pstmt2 = null;
		try {
			 //1.獲取連線
			 conn = JDBCUtils.getConnection();
			 //開啓事務
			 conn.setAutoCommit(false);
			 //2.定義sql
			 //2.1 張三 - 500
			 String sql1 = "update account set balance = balance - ? where id = ?";
			  //2.2 李四 + 500
			 String sql2 = "update account set balance = balance + ? where id = ?";
			  //3.獲取執行sql物件
			 pstmt1 = conn.prepareStatement(sql1);
			 pstmt2 = conn.prepareStatement(sql2);
			  //4. 設定參數
			 pstmt1.setDouble(1,500);
			 pstmt1.setInt(2,1);
			
			 pstmt2.setDouble(1,500);
			 pstmt2.setInt(2,2);
			 //5.執行sql
			 pstmt1.executeUpdate();
			 // 手動製造異常
			 int i = 3/0;
			
			 pstmt2.executeUpdate();
			 //提交事務
			 conn.commit();
		} catch (Exception e) {
		     //事務回滾
		     try {
			     if(conn != null) {
			         conn.rollback();
			     }
		      } catch (SQLException e1) {
		          e1.printStackTrace();
		      }
		      e.printStackTrace();
		}finally {
		      JDBCUtils.close(pstmt1,conn);
		      JDBCUtils.close(pstmt2,null);
		}
	}
}