如何在没有 ArrayIndexOutOfBoundsException 的情况下通过 executeBatch 获取生成的密钥?
Posted
技术标签:
【中文标题】如何在没有 ArrayIndexOutOfBoundsException 的情况下通过 executeBatch 获取生成的密钥?【英文标题】:How to get generated keys by executeBatch without ArrayIndexOutOfBoundsException? 【发布时间】:2015-11-08 11:33:04 【问题描述】:下面的方法我要同时INSERT多条记录。
public void insert()
try
this.connection.setAutoCommit(false);
PreparedStatement ps = this.connection.prepareStatement(
"INSERT INTO COMPANY (NAME,Address) Values (?,?)", new String[]"ID");
ps.setString(1, "X01");
ps.setString(2, "Address1");
ps.addBatch();
ps.setString(1, "Y01");
ps.setString(2, "Address2");
ps.addBatch();
//EXCEPTION OCCURS HERE
int[] numUpdates = ps.executeBatch();
for (int i = 0; i < numUpdates.length; i++)
System.out.println("Execution " + i +
"successful: " + numUpdates[i] + " rows inserted");
ResultSet resultSet =
(ps).getGeneratedKeys();
while (resultSet.next())
String deptNoKey = resultSet.getString(1);
System.out.println("Automatically generated key value = "
+ deptNoKey);
catch (BatchUpdateException b)
// process BatchUpdateException
catch (SQLException e)
e.printStackTrace();
此时,当我希望为每个 INSERT 生成 PK 时,我得到了这个异常
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 22 at oracle.jdbc.driver.T4CNumberAccessor.unmarshalOneRow(T4CNumberAccessor.java:250) at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:754) at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:216) at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:1250) at oracle.jdbc.driver.OraclePreparedStatement.executeForRowsWithTimeout(OraclePreparedStatement.java:14264) at oracle.jdbc.driver.OraclePreparedStatement.executeBatch(OraclePreparedStatement.java:14379) at oracle.jdbc.driver.OracleStatementWrapper.executeBatch(OracleStatementWrapper.java:589) at dbpro.SqlHelper.insert2(SqlHelper.java:988) at dbpro.SqlHelper.main(SqlHelper.java:1023) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:483) at com.intellij.rt.execution.application.AppMain.main(AppMain.java:134)
异常之后: 在表 COMPANY 中,正确添加了两条记录,但我希望为每个执行的插入获得一个包含一行的 ResultSet,因此我可以生成每个 PK。
【问题讨论】:
我无法重现这个。您使用的是哪个 Oracle 版本?哪个 JDBC 驱动程序 JAR? ID 是如何生成的(例如,使用触发器、12c 中的身份库)?我在 Linux x64 上使用 Oracle 11g XE 11.2.0.2.0,我使用触发器来设置 ID 值,并尝试使用 ojdbc14.jar、ojdbc5.jar、ojdbc6.jar 和 ojdbc7.jar 中的每一个。除了没有插入的行数之外,所有四个 JAR 都按预期工作。 我想插入几条记录并获取密钥。那么解决方案是什么?请发送示例代码。我可以通过 trigger 生成 ID,但我想通过 java 代码中的 executeBatch 获取它们。 我不明白您所说的“请发送示例代码”是什么意思。我刚刚使用了你的代码,它对我有用。另外,请回答我在第一条评论中提出的问题。 我用过:Oracle 11g XE 11.2.0.2.0 - ojdbc6 - jdk1.8 和 ids 由触发器生成 【参考方案1】:这似乎是 Windows 上的 Oracle、驱动程序 JAR ojdbc6.jar 或(知道 Oracle)两者中的一个错误。
您提供的代码没有重大问题。它应该可以工作,尽管当我运行它时,每次插入的行数返回为 -2 (= Statement.SUCCESS_NO_INFO
),所以你最好忽略这些数字。
您的代码在 Linux 上使用 Oracle 11g XE 11.2.0.2.0 和四个版本的 Oracle JDBC 驱动程序 JAR 运行良好。但是,如果我在 Windows 10 上使用相同版本的 Oracle XE 和 ojdbc6.jar 运行它,它会失败并出现与您得到的相同的 ArrayIndexOutOfBoundsException。如果我使用 ojdbc7.jar 而不是 ojdbc6.jar,问题就会消失。
因此,我建议将 ojdbc6.jar 替换为 ojdbc7.jar,您可以从 here 下载。
【讨论】:
非常感谢您的回答和提示。以上是关于如何在没有 ArrayIndexOutOfBoundsException 的情况下通过 executeBatch 获取生成的密钥?的主要内容,如果未能解决你的问题,请参考以下文章
如何在没有 createSlice 的情况下使用 createThunkAsync
如何在没有没有索引的 url 的情况下调用 codeigniter 控制器功能