標籤:可變 可變參 ace stack 關閉 date getc connect 目的
import java.sql.Connection;import java.sql.DriverManager;import java.sql.PreparedStatement;import java.sql.ResultSet;import java.sql.Statement;//自訂jdbc工具類。//目的是簡化jdbc開發。public class JDBCUtil {public static String driver="oracle.jdbc.driver.OracleDriver";public static String url = "jdbc:oracle:thin:@127.0.0.1:1521:orcl";public static String user = "system";public static String password = "orcl";//擷取1條資料庫的串連public static Connection getConnection(){Connection con = null; //返回的串連try {//1 載入驅動Class.forName(driver);con = DriverManager.getConnection(url, user, password);//2 擷取串連} catch (Exception e) {e.printStackTrace();}return con;}//查詢:簡單查詢,不含?的sql語句public static ResultSet doQuery(String sql){return doQuery(sql,null);}//查詢:複雜查詢,含有多個?的sql語句public static ResultSet doQuery(String sql,String... ps){//1 擷取串連Connection con = getConnection(); //調用上面的方法,擷取1個串連if(con==null){System.out.println("擷取串連失敗!");return null; //提前終止本方法代碼 }ResultSet rs = null;try {//2執行查詢PreparedStatement psm = con.prepareStatement(sql);//通過for迴圈,訪問參數數組,給psm逐個設定可變參數!!if(ps!=null) //只有可變參數不為空白,才進行?賦值{for(int i=0;i<ps.length;i++){psm.setString(i+1, ps[i]);//將第i個可變參數,設定到第i+1個問號}}rs = psm.executeQuery();} catch (Exception e) {e.printStackTrace();}//3 返回結果.注意,不能關閉,否則結果用不了return rs;}//修改(包含添加,刪除,修改,刪表,建表):返回sql影響的行數.不含?的sql語句public static int doUpdate(String sql){return doUpdate(sql,null);}//修改(包含添加,刪除,修改,刪表,建表):返回sql影響的行數.含?有的sql語句public static int doUpdate(String sql,String... ps){//1 擷取串連Connection con = getConnection(); //調用上面的方法,擷取1個串連if(con==null){System.out.println("擷取串連失敗!");return 0; //提前終止本方法代碼 }int result = 0;PreparedStatement psm = null;try {//2執行查詢psm = con.prepareStatement(sql);//通過for迴圈,訪問參數數組,給psm逐個設定可變參數!!if(ps!=null){for(int i=0;i<ps.length;i++){psm.setString(i+1, ps[i]);//將第i個可變參數,設定到第i+1個問號}}result = psm.executeUpdate();} catch (Exception e) {e.printStackTrace();}finally{close(null,psm,con); //修改完畢,記得關閉資源}//3 返回結果.注意,不能關閉,否則結果用不了return result;}//關閉資源。三個參數的版本public static void close(ResultSet rs,Statement sm,Connection con){try {if (rs != null)rs.close();if (sm != null)sm.close();if (con != null)con.close();} catch (Exception e) {e.printStackTrace();}}//關閉資源。一個參數的版本public static void close(ResultSet rs){Statement sm = null;Connection con = null;try {if (rs != null){sm = rs.getStatement();rs.close();}if (sm != null){con = sm.getConnection();sm.close();}if (con != null)con.close();} catch (Exception e) {e.printStackTrace();}}}
oracle---jdbc--laobai