一、相關(guān)概念
1.什么是JDBC
JDBC(Java Data Base Connectivity,java數(shù)據(jù)庫(kù)連接)是一種用于執(zhí)行SQL語(yǔ)句的Java API,可以為多種關(guān)系數(shù)據(jù)庫(kù)提供統(tǒng)一訪問(wèn),它由一組用Java語(yǔ)言編寫的類和接口組成。JDBC提供了一種基準(zhǔn),據(jù)此可以構(gòu)建更高級(jí)的工具和接口,使數(shù)據(jù)庫(kù)開(kāi)發(fā)人員能夠編寫數(shù)據(jù)庫(kù)應(yīng)用程序。
2.數(shù)據(jù)庫(kù)驅(qū)動(dòng)
我們安裝好數(shù)據(jù)庫(kù)之后,我們的應(yīng)用程序也是不能直接使用數(shù)據(jù)庫(kù)的,必須要通過(guò)相應(yīng)的數(shù)據(jù)庫(kù)驅(qū)動(dòng)程序,通過(guò)驅(qū)動(dòng)程序去和數(shù)據(jù)庫(kù)打交道。其實(shí)也就是數(shù)據(jù)庫(kù)廠商的JDBC接口實(shí)現(xiàn),即對(duì)Connection等接口的實(shí)現(xiàn)類的jar文件。
二、常用接口
1.Driver接口
Driver接口由數(shù)據(jù)庫(kù)廠家提供,作為java開(kāi)發(fā)人員,只需要使用Driver接口就可以了。在編程中要連接數(shù)據(jù)庫(kù),必須先裝載特定廠商的數(shù)據(jù)庫(kù)驅(qū)動(dòng)程序,不同的數(shù)據(jù)庫(kù)有不同的裝載方法。如:
裝載MySql驅(qū)動(dòng):Class.forName("com.mysql.jdbc.Driver");
裝載Oracle驅(qū)動(dòng):Class.forName("oracle.jdbc.driver.OracleDriver");
2.Connection接口
Connection與特定數(shù)據(jù)庫(kù)的連接(會(huì)話),在連接上下文中執(zhí)行sql語(yǔ)句并返回結(jié)果。DriverManager.getConnection(url, user, password)方法建立在JDBC URL中定義的數(shù)據(jù)庫(kù)Connection連接上。
連接MySql數(shù)據(jù)庫(kù):Connection conn = DriverManager.getConnection("jdbc:mysql://host:port/database", "user", "password");
連接Oracle數(shù)據(jù)庫(kù):Connection conn = DriverManager.getConnection("jdbc:oracle:thin:@host:port:database", "user", "password");
連接SqlServer數(shù)據(jù)庫(kù):Connection conn = DriverManager.getConnection("jdbc:microsoft:sqlserver://host:port; DatabaseName=database", "user", "password");
常用方法:
3.Statement接口
用于執(zhí)行靜態(tài)SQL語(yǔ)句并返回它所生成結(jié)果的對(duì)象。
三種Statement類:
常用Statement方法:
4.ResultSet接口
ResultSet提供檢索不同類型字段的方法,常用的有:
ResultSet還提供了對(duì)結(jié)果集進(jìn)行滾動(dòng)的方法:
使用后依次關(guān)閉對(duì)象及連接:ResultSet → Statement → Connection
三、使用JDBC的步驟
加載JDBC驅(qū)動(dòng)程序 → 建立數(shù)據(jù)庫(kù)連接Connection → 創(chuàng)建執(zhí)行SQL的語(yǔ)句Statement → 處理執(zhí)行結(jié)果ResultSet → 釋放資源
1.注冊(cè)驅(qū)動(dòng) (只做一次)
方式一:Class.forName(“com.MySQL.jdbc.Driver”);
推薦這種方式,不會(huì)對(duì)具體的驅(qū)動(dòng)類產(chǎn)生依賴。
方式二:DriverManager.registerDriver(com.mysql.jdbc.Driver);
會(huì)造成DriverManager中產(chǎn)生兩個(gè)一樣的驅(qū)動(dòng),并會(huì)對(duì)具體的驅(qū)動(dòng)類產(chǎn)生依賴。
2.建立連接
Connection conn = DriverManager.getConnection(url, user, password);
URL用于標(biāo)識(shí)數(shù)據(jù)庫(kù)的位置,通過(guò)URL地址告訴JDBC程序連接哪個(gè)數(shù)據(jù)庫(kù),URL的寫法為:
其他參數(shù)如:useUnicode=true&characterEncoding=utf8
3.創(chuàng)建執(zhí)行SQL語(yǔ)句的statement
1 //Statement 2 String id = "5";3 String sql = "delete from table where id=" + id;4 Statement st = conn.createStatement(); 5 st.executeQuery(sql); 6 //存在sql注入的危險(xiǎn)7 //如果用戶傳入的id為“5 or 1=1”,那么將刪除表中的所有記錄
1 //PreparedStatement 有效的防止sql注入(SQL語(yǔ)句在程序運(yùn)行前已經(jīng)進(jìn)行了預(yù)編譯,當(dāng)運(yùn)行時(shí)動(dòng)態(tài)地把參數(shù)傳給PreprareStatement時(shí),即使參數(shù)里有敏感字符如 or '1=1'也數(shù)據(jù)庫(kù)會(huì)作為一個(gè)參數(shù)一個(gè)字段的屬性值來(lái)處理而不會(huì)作為一個(gè)SQL指令)2 String sql = “insert into user (name,pwd) values(?,?)”; 3 PreparedStatement ps = conn.preparedStatement(sql); 4 ps.setString(1, “col_value”); //占位符順序從1開(kāi)始5 ps.setString(2, “123456”); //也可以使用setObject6 ps.executeQuery();
4.處理執(zhí)行結(jié)果(ResultSet)
1 ResultSet rs = ps.executeQuery(); 2 While(rs.next()){ 3 rs.getString(“col_name”); 4 rs.getInt(1); 5 //…6 }
5.釋放資源
//數(shù)據(jù)庫(kù)連接(Connection)非常耗資源,盡量晚創(chuàng)建,盡量早的釋放
//都要加try catch 以防前面關(guān)閉出錯(cuò),后面的就不執(zhí)行了
1 try { 2 if (rs != null) { 3 rs.close(); 4 } 5 } catch (SQLException e) { 6 e.printStackTrace(); 7 } finally { 8 try { 9 if (st != null) {10 st.close();11 }12 } catch (SQLException e) {13 e.printStackTrace();14 } finally {15 try {16 if (conn != null) {17 conn.close();18 }19 } catch (SQLException e) {20 e.printStackTrace();21 }22 }23 }
四、事務(wù)(ACID特點(diǎn)、隔離級(jí)別、提交commit、回滾rollback)
1.批處理Batch
2.測(cè)試事務(wù)的基本概念和用法
1 package com.test.jdbc; 2 3 import java.sql.Connection; 4 import java.sql.DriverManager; 5 import java.sql.PreparedStatement; 6 import java.sql.SQLException; 7 8 /** 9 * 測(cè)試事務(wù)的基本概念和用法10 */11 public class Demo06 {12 public static void main(String[] args) {13 Connection conn = null;14 PreparedStatement ps1 = null;15 PreparedStatement ps2 = null;16 17 try {18 Class.forName("com.mysql.jdbc.Driver");19 conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/testjdbc","root","mysql");20 21 conn.setAutoCommit(false); //JDBC中默認(rèn)是true,自動(dòng)提交事務(wù)22 23 ps1 = conn.prepareStatement("insert into t_user(userName,pwd)values(?,?)"); //事務(wù)開(kāi)始24 ps1.setObject(1, "小高");25 ps1.setObject(2, "123");26 ps1.execute();27 System.out.println("第一次插入");28 29 try {30 Thread.sleep(5000);31 } catch (InterruptedException e) {32 e.printStackTrace();33 }34 35 ps2 = conn.prepareStatement("insert into t_user(userName,pwd)values(?,?,?)"); //模擬執(zhí)行失敗(values的參數(shù)寫成三個(gè)了)36 //insert時(shí)出現(xiàn)異常,執(zhí)行conn.rollback37 ps2.setObject(1, "小張");38 ps2.setObject(2, "678");39 ps2.execute();40 System.out.println("第二次插入"); 41 42 conn.commit();43 44 } catch (ClassNotFoundException e) {45 e.printStackTrace();46 try {47 conn.rollback();48 } catch (SQLException e1) {49 e1.printStackTrace();50 }51 } catch (SQLException e) {52 e.printStackTrace();53 } finally{54 55 try {56 if (ps1!=null) {57 ps1.close();58 }59 } catch (SQLException e) {60 e.printStackTrace();61 }62 try {63 if (ps2!=null) {64 ps2.close();65 }66 } catch (SQLException e) {67 e.printStackTrace();68 }69 try {70 if (conn!=null) {71 conn.close();72 }73 } catch (SQLException e) {74 e.printStackTrace();75 }76 }77 }78 }
1 第一次插入 2 java.sql.SQLException: No value specified for parameter 3 3 at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1078) 4 at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:989) 5 at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:975) 6 at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:920) 7 at com.mysql.jdbc.PreparedStatement.checkAllParametersSet(PreparedStatement.java:2611) 8 at com.mysql.jdbc.PreparedStatement.fillSendPacket(PreparedStatement.java:2586) 9 at com.mysql.jdbc.PreparedStatement.fillSendPacket(PreparedStatement.java:2510)10 at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1316)11 at com.test.jdbc.Demo06.main(Demo06.java:39)
五、時(shí)間處理(Date和Time以及Timestamp區(qū)別、隨機(jī)日期生成)
java.util.Date
1 package com.test.jdbc; 2 3 import java.sql.Connection; 4 import java.sql.DriverManager; 5 import java.sql.PreparedStatement; 6 import java.sql.SQLException; 7 import java.sql.Timestamp; 8 import java.util.Random; 9 10 /**11 * 測(cè)試時(shí)間處理(java.sql.Date,Time,Timestamp)12 */13 public class Demo07 {14 public static void main(String[] args) {15 Connection conn = null;16 PreparedStatement ps = null;17 18 try {19 Class.forName("com.mysql.jdbc.Driver");20 conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/testjdbc","root","mysql");21 22 for (int i = 0; i < 1000; i++) {23 24 ps = conn.prepareStatement("insert into t_user(userName,pwd,regTime,lastLoginTime)values(?,?,?,?)");25 ps.setObject(1, "小高" + i);26 ps.setObject(2, "123");27 28 //29 int random = 1000000000 + new Random().nextInt(1000000000); //隨機(jī)時(shí)間30 31 java.sql.Date date = new java.sql.Date(System.currentTimeMillis() - random); //插入隨機(jī)時(shí)間32 java.sql.Timestamp stamp = new Timestamp(System.currentTimeMillis()); //如果需要插入指定時(shí)間,可以使用Calendar、DateFormat33 ps.setDate(3, date);34 ps.setTimestamp(4, stamp);35 //36 ps.execute();37 }38 39 System.out.println("插入");40 41 } catch (ClassNotFoundException e) {42 e.printStackTrace();43 } catch (SQLException e) {44 e.printStackTrace();45 } finally{46 47 try {48 if (ps!=null) {49 ps.close();50 }51 } catch (SQLException e) {52 e.printStackTrace();53 }54 try {55 if (conn!=null) {56 conn.close();57 }58 } catch (SQLException e) {59 e.printStackTrace();60 }61 }62 }63 }
1 package com.test.jdbc; 2 3 import java.sql.Connection; 4 import java.sql.Date; 5 import java.sql.DriverManager; 6 import java.sql.PreparedStatement; 7 import java.sql.ResultSet; 8 import java.sql.SQLException; 9 import java.text.DateFormat;10 import java.text.ParseException;11 import java.text.SimpleDateFormat;12 13 /**14 * 測(cè)試時(shí)間處理(java.sql.Date,Time,Timestamp),取出指定時(shí)間段的數(shù)據(jù)15 */16 public class Demo08 {17 18 /**19 * 將字符串代表的時(shí)間轉(zhuǎn)為long數(shù)字(格式:yyyy-MM-dd hh:mm:ss)20 * @param dateStr21 * @return22 */23 public static long str2DateTime(String dateStr){24 DateFormat format = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");25 26 try {27 return format.parse(dateStr).getTime();28 } catch (ParseException e) {29 e.printStackTrace();30 return 0;31 }32 }33 34 public static void main(String[] args) {35 Connection conn = null;36 PreparedStatement ps = null;37 ResultSet rs = null;38 39 try {40 Class.forName("com.mysql.jdbc.Driver");41 conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/testjdbc","root","mysql");42 43 //44 ps = conn.prepareStatement("select * from t_user where regTime > ? and regTime < ?");45 java.sql.Date start = new java.sql.Date(str2DateTime("2016-06-20 00:00:00"));46 java.sql.Date end = new java.sql.Date(str2DateTime("2016-06-24 00:00:00"));47 48 ps.setObject(1, start);49 ps.setObject(2, end);50 51 rs = ps.executeQuery();52 while(rs.next()){53 System.out.println(rs.getInt("id") + "--" + rs.getString("userName")+"--"+rs.getDate("regTime"));54 }55 //56 57 } catch (ClassNotFoundException e) {58 e.printStackTrace();59 } catch (SQLException e) {60 e.printStackTrace();61 } finally{62 63 try {64 if (ps!=null) {65 ps.close();66 }67 } catch (SQLException e) {68 e.printStackTrace();69 }70 try {71 if (conn!=null) {72 conn.close();73 }74 } catch (SQLException e) {75 e.printStackTrace();76 }77 }78 }79 }
六、CLOB文本大對(duì)象操作
1 package com.test.jdbc; 2 3 import java.io.BufferedReader; 4 import java.io.ByteArrayInputStream; 5 import java.io.File; 6 import java.io.FileReader; 7 import java.io.InputStreamReader; 8 import java.io.Reader; 9 import java.sql.Clob; 10 import java.sql.Connection; 11 import java.sql.DriverManager; 12 import java.sql.PreparedStatement; 13 import java.sql.ResultSet; 14 import java.sql.SQLException; 15 16 /** 17 * 測(cè)試CLOB 文本大對(duì)象的使用 18 * 包含:將字符串、文件內(nèi)容插入數(shù)據(jù)庫(kù)中的CLOB字段和將CLOB字段值取出來(lái)的操作。 19 */ 20 public class Demo09 { 21 public static void main(String[] args) { 22 Connection conn = null; 23 PreparedStatement ps = null; 24 PreparedStatement ps2 = null; 25 ResultSet rs = null; 26 Reader r = null; 27 28 try { 29 Class.forName("com.mysql.jdbc.Driver"); 30 conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/testjdbc","root","mysql"); 31 32 //插入// 33 ps = conn.prepareStatement("insert into t_user(userName,myInfo)values(?,?)"); 34 ps.setString(1, "小高"); 35 36 //將文本文件內(nèi)容直接輸入到數(shù)據(jù)庫(kù)中 37 // ps.setClob(2, new FileReader(new File("G:/JAVA/test/a.txt"))); 38 39 //將程序中的字符串輸入到數(shù)據(jù)庫(kù)中的CLOB字段中 40 ps.setClob(2, new BufferedReader(new InputStreamReader(new ByteArrayInputStream("aaaa".getBytes())))); 41 42 ps.executeUpdate(); 43 System.out.println("插入"); 44 // 45 46 //查詢// 47 ps2 = conn.prepareStatement("select * from t_user where id=?"); 48 ps2.setObject(1, 223021); 49 50 rs = ps2.executeQuery(); 51 System.out.println("查詢"); 52 while (rs.next()) { 53 Clob c = rs.getClob("myInfo"); 54 r = c.getCharacterStream(); 55 int temp = 0; 56 while ((temp=r.read())!=-1) { 57 System.out.print((char)temp); 58 } 59 } 60 61 } catch (ClassNotFoundException e) { 62 e.printStackTrace(); 63 } catch (Exception e) { 64 e.printStackTrace(); 65 } finally{ 66 67 try { 68 if (r!=null) { 69 r.close(); 70 } 71 } catch (Exception e) { 72 e.printStackTrace(); 73 } 74 try { 75 if (rs!=null) { 76 rs.close(); 77 } 78 } catch (SQLException e) { 79 e.printStackTrace(); 80 } 81 try { 82 if (ps2!=null) { 83 ps2.close(); 84 } 85 } catch (SQLException e) { 86 e.printStackTrace(); 87 } 88 try { 89 if (ps!=null) { 90 ps.close(); 91 } 92 } catch (SQLException e) { 93 e.printStackTrace(); 94 } 95 try { 96 if (conn!=null) { 97 conn.close(); 98 } 99 } catch (SQLException e) {100 e.printStackTrace();101 }102 }103 }104 }
七、BLOB二進(jìn)制大對(duì)象的使用
八、總結(jié)(簡(jiǎn)單封裝、資源文件properties處理連接信息)
1 #右擊該properties文件--properties--Resource--Text file encoding,選中other,選擇其它編碼方式。 2 #如UTF-8或GBK,這樣就能在properties里面輸入中文,而不會(huì)自動(dòng)轉(zhuǎn)成Unicode了。 3 4 #java中的properties文件是一種配置文件,主要用于表達(dá)配置信息。 5 #文件類型為*.properties,格式為文本文件,文件內(nèi)容是"鍵=值"的格式。 6 #在properties文件中,可以用"#"來(lái)作注釋 7 8 #MySQL連接配置 9 mysqlDriver=com.mysql.jdbc.Driver10 mysqlURL=jdbc:mysql://localhost:3306/testjdbc11 mysqlUser=root12 mysqlPwd=mysql13 14 #Oracle連接配置15 #...
1 package com.test.jdbc; 2 3 import java.sql.Connection; 4 import java.sql.PreparedStatement; 5 import java.sql.ResultSet; 6 7 /** 8 * 測(cè)試使用JDBCUtil工具類來(lái)簡(jiǎn)化JDBC開(kāi)發(fā) 9 */10 public class Demo11 {11 public static void main(String[] args) {12 Connection conn = null;13 PreparedStatement ps = null;14 ResultSet rs = null;15 16 try {17 conn = JDBCUtil.getMysqlConn();18 19 ps = conn.prepareStatement("insert into t_user (userName) values (?)");20 ps.setString(1, "小高高");21 ps.execute();22 23 } catch (Exception e) {24 e.printStackTrace();25 } finally{26 JDBCUtil.close(rs, ps, conn);27 }28 }29 }
聯(lián)系客服