MySQL 批量插入PreparedStatement addbatch()的用法

Statement和PreparedStatement的區別就很少廢話了,直接說PreparedStatement最重要的addbatch()結構的使用.spa

1.創建連接,(打電話撥號 )    orm

   Connection    connection =getConnection();get

2.不自動 Commit (瓜子不是一個一個吃,所有剝開放桌子上,而後一口舔了)it

connection.setAutoCommit(false);   io

3.預編譯SQL語句,只編譯一回哦,效率高啊.(發明一個剝瓜子的方法,之後不要總想怎麼剝瓜子好.就這樣剝.)
PreparedStatement statement = connection.prepareStatement("INSERT INTO TABLEX VALUES(?, ?)");   
編譯

4.來一個剝一個,而後放桌子上效率

//記錄1
statement.setInt(1, 1); 
statement.setString(2, "Cujo"); 
statement.addBatch();
   
方法

//記錄2
statement.setInt(1, 2); 
statement.setString(2, "Fred"); 
statement.addBatch();
   
margin

//記錄3
statement.setInt(1, 3); 
statement.setString(2, "Mark"); 
statement.addBatch();
   
top

//批量執行上面3條語句. 一口吞了,很爽
int [] counts = statement.executeBatch();   

//Commit it 嚥下去,到肚子(DB)裏面
connection.commit();

相關文章
相關標籤/搜索