java JDBC-批处理Batch-事务
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java JDBC-批处理Batch-事务相关的知识,希望对你有一定的参考价值。
public class Demo5 {
public static void main(String[] args) {
Statement stmt=null;
Connection conn=null;
try {
Class.forName("com.mysql.jdbc.Driver");
conn=DriverManager.getConnection("jdbc:mysql://localhost:3306/test","root","dyl123");
//设为手动提交
conn.setAutoCommit(false);
stmt=conn.createStatement();
for(int i=0;i<20000;i++)
{
stmt.addBatch("insert into t_user(username,pwd,regTime) values(‘米"+i+"‘,555,now())");
}
stmt.executeBatch();
conn.commit(); //提交事务
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}finally {
try {
stmt.close();
} catch (SQLException e) {
e.printStackTrace();
}
try {
conn.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
}
}
以上是关于java JDBC-批处理Batch-事务的主要内容,如果未能解决你的问题,请参考以下文章
SPRING BATCH:嵌套异常是java.sql.SQLException:ORA-08177:无法序列化此事务的访问权限