conn.setAutoCommit(false);不让数据自动提交
stmt=conn.createStatement();
stmt.addBatch("语句1");
stmt.addBatch("语句2");
stmt.executeBatch();//批处理
conn.commit();//提交事务
cinn.setAutoCommit(true););//当conn回到初状态!能自动提交!
在这里面捕捉异常
catch(SQLException e)
{
e.printStackTrace();
try{
if(conn!=null)
{
conn.rollback();//回滚
conn.setAutoCommit(true);//当conn回到初状态!能自动提交!
}
catch(SQLException el)
{
el.printStackTrace();
}
}
}