如何从Oracle的JDBC批量插入中获取生成的密钥?


问题内容

我正在使用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()循环一起使用以获得所需的结果。还有其他解决方案吗?


问题答案:

似乎Oracle 12c不支持根据以下页面将自动生成的密钥与批处理更新结合使用:

http://docs.oracle.com/cd/E16655_01/java.121/e17657/jdbcvers.htm

请参阅“检索自动生成的密钥”部分下标有“限制”的小节。