I:使用标准版方式批量地插入一百万条数据
为简洁查看,这里使用 throws 解决异常,若在使用中,以下代码的异常应该使用 try-catch-finally 处理
- 标准版方式所花费的毫秒数为:1497527
public void Insert() throws Exception {
long start = System.currentTimeMillis();
Connection conn = JDBCUtils.getConnection();
String sql = "insert into goods(goods_name) values(?)";
PreparedStatement ps = conn.prepareStatement(sql);
for (int i = 0; i < 1000000; i++) {
ps.setObject(1, "name_" + i);
ps.execute();
}
JDBCUtils.