Als u dezelfde bewerking 1000 keer probeert uit te voeren, raad ik u aan re-using
dezelfde PreparedStatement
of gebruik addBatch()
en executeBatch()
combinatie.
Als u van plan bent uw PreparedStatement opnieuw te gebruiken, kunt u het volgende doen:
public void insertARow(PreparedStatement ps, ArrayList<String> row){
//your code
}
public void calledMethod(){
String insert = "INSERT INTO user.info(cola,colb) values(?,?)";
PreparedStatement ps = null;
try{
ps = con.prepareStatement(insert);
/**
* Here you make the call to insertARow passing it the preparedstatement that you
* have created. This in your case will be called multiple times.
*/
insertARow(ps, row);
}finally{
if(ps != null){
//close ps
}
}
}