主頁 > 知識庫 > JDBC大批量寫入數(shù)據(jù)到SQLServer2000,記錄數(shù)大于10000

JDBC大批量寫入數(shù)據(jù)到SQLServer2000,記錄數(shù)大于10000

熱門標(biāo)簽:硅基電話機(jī)器人官網(wǎng) 城市地圖標(biāo)志怎么標(biāo)注 電話機(jī)器人怎么看余額 長沙外呼系統(tǒng)平臺 西安電話自動外呼系統(tǒng) 美國地圖標(biāo)注軟件下載 合肥crm外呼系統(tǒng)加盟 漯河電銷回?fù)芡夂粝到y(tǒng) 怎么修改高德地圖標(biāo)注
復(fù)制代碼 代碼如下:

SpObserver.putSp("sessionFactory1");
SimpleDateFormat fomat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Session s=null;
s=daoSupport.getSessionFactory().openSession();
Connection con=s.connection();
Statement stmt = null;
try {
stmt=con.createStatement();
con.setAutoCommit(false);
Iterator it=list.iterator();
int iCount = 1;
long start = System.currentTimeMillis();
while(it.hasNext()){
TResultWaterZId t = (TResultWaterZId)it.next();
StringBuffer sb = new StringBuffer();
sb.append("insert into T_result_water_z(schemeid,stcd,z,tm) values('");
sb.append(t.getSchemeid()).append("','").append(t.getStcd()).append("','");
sb.append(t.getZ()).append("','").append(fomat.format(t.getTm())).append("')");
stmt.addBatch(sb.toString());
if(iCount % 1000 == 0){
stmt.executeBatch();
stmt.clearBatch();
}
iCount++;
}
stmt.executeBatch();
stmt.clearBatch();
con.commit();
long end = System.currentTimeMillis();
System.out.println("addTResultWaterZId used time:"+(end-start));
stmt.close();
con.close();
} catch (SQLException e) {
try {
con.rollback();
} catch (SQLException e1) {
e1.printStackTrace();
}
e.printStackTrace();
}finally{
try {
stmt.close();
con.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
您可能感興趣的文章:
  • 批量處理JDBC語句提高處理速度
  • Java批量修改文件名的實例代碼
  • java 下執(zhí)行mysql 批量插入的幾種方法及用時
  • java文件重命名(文件批量重命名)實例程序代碼分享
  • Java實現(xiàn)文件批量重命名具體實例
  • Java快速批量移動文件的實現(xiàn)方法
  • Java 批量刪除html中注釋內(nèi)容的方法
  • 實例講解Java批量插入、更新數(shù)據(jù)
  • python實現(xiàn)JAVA源代碼從ANSI到UTF-8的批量轉(zhuǎn)換方法
  • java實現(xiàn)jdbc批量插入數(shù)據(jù)

標(biāo)簽:玉溪 瀘州 文山 廣西 濟(jì)源 吉林 撫順 商洛

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《JDBC大批量寫入數(shù)據(jù)到SQLServer2000,記錄數(shù)大于10000》,本文關(guān)鍵詞  JDBC,大批量,寫入,數(shù)據(jù),到,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《JDBC大批量寫入數(shù)據(jù)到SQLServer2000,記錄數(shù)大于10000》相關(guān)的同類信息!
  • 本頁收集關(guān)于JDBC大批量寫入數(shù)據(jù)到SQLServer2000,記錄數(shù)大于10000的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章