Java 批量插入資料(Oracle)

來源:互聯網
上載者:User

標籤:

  1. //大量新增20000條資料用時8秒。  
  2. try {  
  3.    String url = "jdbc:oracle:thin:@IP:1521:orcl"; // orcl為資料庫的SID  
  4.    String user = "oracle";  
  5.    String password = "oracle";  
  6.    StringBuffer sql = new StringBuffer();  
  7.    sql.append("insert into ex_log (EX_LOG_ID,EX_LOG_DATE) values (?,?)");  
  8.    Class.forName("oracle.jdbc.driver.OracleDriver");  
  9.    Connection con = (Connection) DriverManager.getConnection(url,user,password);  
  10.    // 關閉事務自動認可  
  11.    con.setAutoCommit(false);  
  12.   
  13.    Long startTime = System.currentTimeMillis();  
  14.    PreparedStatement pst = (PreparedStatement) con.prepareStatement(sql.toString());  
  15.    for (int i = 0; i < list.size(); i++) {  
  16.     ExLog exLog = (ExLog)list.get(i);  
  17.     pst.setString(1, exLog.getExLogId());  
  18.     pst.setString(2, exLog.getExLogDate());  
  19.     // 把一個SQL命令加入命令列表  
  20.     pst.addBatch();  
  21.    }  
  22.    // 執行批次更新  
  23.    pst.executeBatch();  
  24.    // 語句執行完畢,提交本事務  
  25.    con.commit();  
  26.    Long endTime = System.currentTimeMillis();  
  27.    System.out.println("用時:" + (endTime - startTime));  
  28.    pst.close();  
  29.    con.close();  
  30.   } catch (ClassNotFoundException e) {  
  31.    e.printStackTrace();  
  32.   } catch (SQLException e) {  
  33.    e.printStackTrace();  
  34.   }  
 

Java 批量插入資料(Oracle)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.