oracle---jdbc--laobai

來源:互聯網
上載者:User

標籤:可變   可變參   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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.