我将使用JDBC批量插入多条记录。 有没有办法让每个记录生成的密钥? 我可以使用ps.getGeneratedKeys()
与批量插入?
我使用oracle.jdbc.OracleDriver
final String insert = "Insert into Student(RollNumber, Name, Age) values(StudentSEQ.nextval, ? , ?)";
final int BATCH_SIZE = 998;
int count = 0;
Connection con = null;
PreparedStatement ps = null;
try {
con = getConnection();
ps = con.prepareStatement(insert);
for (Student s : students) {
ps.setString(1, s.getName());
ps.setInt(2, s.getAge());
ps.addBatch();
count++;
if (count % BATCH_SIZE == 0) {
// Insert records in batches
ps.executeBatch();
}
}
// Insert remaining records
ps.executeBatch();
} finally {
if(ps != null)
ps.close();
release(con);
}
我想使用的ps.executeUpdate()
连同ps.getGeneratedKeys()
内循环,以获得期望的结果。 任何其他解决办法?