您好,登錄后才能下訂單哦!
這期內(nèi)容當(dāng)中小編將會給大家?guī)碛嘘P(guān)如何在Java中利用JDBC連接數(shù)據(jù)庫,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
db.properties
配置文件(MySql數(shù)據(jù)庫)
# db.properties jdbc.driver=com.mysql.jdbc.Driver jdbc.url=jdbc:mysql://localhost:3306/demo?useUnicode=true&characterEncoding=UTF-8 jdbc.username=root jdbc.password=123456 # paramter for BasicDataSource initSize=2 maxActive=2
db.properties
配置文件(Oracle數(shù)據(jù)庫)
# db.properties jdbc.driver=oracle.jdbc.OracleDriver jdbc.url=jdbc:oracle:thin:localhost:1521:orcl jdbc.username=root jdbc.password=123456 # paramter for BasicDataSource initSize=2 maxActive=2
JDBC直接連接數(shù)據(jù)庫
package JDBC; import java.io.IOException; import java.io.InputStream; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; import java.util.Properties; /** * JDBC連接數(shù)據(jù)庫管理工具類 */ public class JDBC { static String driver; static String url; static String username; static String password; static { try { Properties cfg = new Properties(); InputStream in = JDBC.class.getClassLoader().getResourceAsStream("db.properties"); cfg.load(in); //將文件內(nèi)容加載到Properties對象中(以散列表形式存在) driver = cfg.getProperty("jdbc.driver"); url = cfg.getProperty("jdbc.url"); username = cfg.getProperty("jdbc.username"); password = cfg.getProperty("jdbc.password"); in.close(); } catch (IOException e) { e.printStackTrace(); throw new RuntimeException(e); } } /** * 創(chuàng)建數(shù)據(jù)庫連接 */ public static Connection getConnection() { try { Class.forName(driver); //注冊驅(qū)動 Connection conn = DriverManager.getConnection(url, username, password); return conn; } catch (Exception e) { e.printStackTrace(); throw new RuntimeException(e); } } /* * 關(guān)閉數(shù)據(jù)庫的連接 */ public static void close(Connection conn) { if (conn != null) { try { conn.close(); } catch (SQLException e) { e.printStackTrace(); } } } }
通過連接池連接數(shù)據(jù)庫
package JDBC; import java.io.IOException; import java.io.InputStream; import java.sql.Connection; import java.sql.SQLException; import java.util.Properties; import org.apache.commons.dbcp.BasicDataSource; /** * 連接池版本的數(shù)據(jù)庫連接管理工具類 */ public class DBUtils { private static String driver; private static String url; private static String username; private static String password; private static int initSize; private static int maxActive; private static BasicDataSource dbs; static { dbs = new BasicDataSource(); Properties cfg = new Properties(); try { InputStream in = DBUtils.class.getClassLoader().getResourceAsStream("db.properties"); cfg.load(in); // 初始化參數(shù) driver = cfg.getProperty("jdbc.driver"); url = cfg.getProperty("jdbc.url"); username = cfg.getProperty("jdbc.username"); password = cfg.getProperty("jdbc.password"); initSize = Integer.parseInt(cfg.getProperty("initSize")); maxActive = Integer.parseInt(cfg.getProperty("maxActive")); in.close(); // 初始化連接池 dbs.setDriverClassName(driver); dbs.setUrl(url); dbs.setUsername(username); dbs.setPassword(password); dbs.setInitialSize(initSize); dbs.setMaxActive(maxActive); } catch (IOException e) { e.printStackTrace(); throw new RuntimeException(e); } } /** * 創(chuàng)建數(shù)據(jù)庫連接,從連接池中獲取連接,如果連接池滿了,則等待. */ public static Connection getConnection() { try { Connection conn = dbs.getConnection(); return conn; } catch (SQLException e) { e.printStackTrace(); throw new RuntimeException(e); } } /* * 關(guān)閉數(shù)據(jù)庫的連接,歸還到連接池 */ public static void close(Connection conn) { if (conn != null) { try { conn.close(); } catch (SQLException e) { e.printStackTrace(); } } } //回滾,僅在禁用自動提交時使用 public static void rollback(Connection conn) { if (conn != null) { try { conn.rollback(); } catch (SQLException e) { e.printStackTrace(); } } } }
連接數(shù)據(jù)庫后的使用
Connection conn=null; try{ conn=DbUtils.getConnection(); Statement st=conn.createStatement(); String sql="select id, name from people"; ResultSet rs=st.executeQuery(sql); while(rs.next()){ int id=rs.getInt("id"); String name=rs.getString("name"); System.out.println(id+","+name); } //結(jié)果集元數(shù)據(jù) ResultSetMetaData meta = rs.getMetaData(); int n = meta.getColumnCount(); //多少列 for(int i=1; i<=n; i++){ String name= meta.getColumnName(i); //獲取列名 System.out.println(name); } rs.close();//釋放查詢結(jié)果 st.close();//釋放語句對象 }catch(Exception e){ e.printStackTrace(); }finally { DbUtils.close(conn); }
預(yù)編譯SQL執(zhí)行 及 取消自動提交
try { conn = DBUtils.getConnection(); conn.setAutoCommit(false); //取消自動提交, 后續(xù)手動提交 String sql="update people set name=? where id=? "; PreparedStatement ps= conn.prepareStatement(sql); //按照順序發(fā)送參數(shù) ps.setString(1, "Lao Wang"); ps.setInt(2, 100); //執(zhí)行"執(zhí)行計劃" int n=ps.executeUpdate(); conn.commit(); //手動提交 } catch (Exception e) { e.printStackTrace(); DBUtils.rollback(conn); //異?;貪L }finally{ DBUtils.close(conn); }
Statement的addBatch(sql)
和executeBatch()
方法可以批量執(zhí)行sql。
Statement st=conn.createStatement(); st.addBatch(sql1); //sql1 添加到Statement的緩存中 st.addBatch(sql2); st.addBatch(sql3); int[] ary=st.executeBatch(); //執(zhí)行一批SQL
PreparedStatement也支持批量參數(shù)的處理
PreparedStatement ps = conn.prepareStatement(sql); ps.setInt(1, 1); ps.setString(2, "wang"); ps.addBatch(); //將參數(shù)添加到ps緩存區(qū) ps.setInt(1, 2); ps.setString(2, "li"); ps.addBatch(); //將參數(shù)添加到ps緩存區(qū) int[] ary = ps.executeBatch(); // 批量執(zhí)行
PreparedStatement ps = conn.prepareStatement(sql);
還可以傳入第二個參數(shù)用以獲取自增主鍵或者序號自增的列
上述就是小編為大家分享的如何在Java中利用JDBC連接數(shù)據(jù)庫了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。