最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
JDBC批量插入数据到数据库实例
时间:2022-06-29 03:14:54 编辑:袖梨 来源:一聚教程网
例子
| 代码如下 | 复制代码 |
String sql = "insert into record(id, record, insetDate) values (sequence_record.nextval, ?, sysdate)"; Connection connection = DBConnection.getConnection(); PreparedStatement pstmt = connection.prepareStatement(sql); //每次提交最大条数 final int batchSize = 5000; int count = 0; for (Record record: recordList) { pstmt.setString(1, record.getRecord()); pstmt.addBatch(); if(++count % batchSize == 0) { pstmt.executeBatch(); } } //提交剩余的数据 pstmt.executeBatch(); pstmt.close(); connection.close(); |
|
相关文章
- 冒泡社区如何设置键盘 03-23
- 快手网页版在线登录观看入口-快手网页版一键登录观看 03-23
- 锤子终极奥义 俯爆压头灯实战全解析 03-23
- 穿越火线火麒麟突刺关闭方法是什么 03-23
- 12306官网订票余票查询-12306余票查询详细步骤 03-23
- 生化危机4双爪子怪打法是什么 03-23