最新下载
热门教程
- 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(); |
|
相关文章
- 我的世界铁砧工艺重力科技建筑方块合成表有哪些 06-27
- 燕云十六声墨城见闻任务怎么完成 06-27
- 失控进化手游天赋如何搭配 06-27
- 修真高手手游将臣玩法指南 修真高手手游将臣角色培养与实战技巧详解 06-27
- 修真高手手游路西法玩法攻略 修真高手手游路西法角色强度与技能连招解析 06-27
- 《007 First Light》的Switch 2版本不会像《无主之地4》那样销声匿迹 06-27