H2 DB Identity() 函数在嵌入模式下不起作用
我使用的是H2数据库。我有一个带有标识列的表。我执行插入,然后尝试调用 Identity() 函数来确定分配给新创建的行的 id。
这是我用来调用身份函数的代码片段:
CallableStatement cs = dbConnection.prepareCall("{ ? = call IDENTITY()}");
cs.registerOutParameter(1, Types.BIGINT);
cs.execute();
id = cs.getLong(1);
cs.close();
我遇到的问题是,由于某种原因,该函数在服务器模式下工作,但当我在嵌入模式下调用该函数时出现此错误:
org.h2.jdbc。 JdbcSQLException:未设置参数“#1”; SQL语句: ? = 调用 IDENTITY() [90012-160]
I am using the H2 database. I have a table with an identity column. I perform an insert and then try and call the identity() function to determine the id assigned to the newly created row.
here is the code snippet I use to call the identity function:
CallableStatement cs = dbConnection.prepareCall("{ ? = call IDENTITY()}");
cs.registerOutParameter(1, Types.BIGINT);
cs.execute();
id = cs.getLong(1);
cs.close();
The problem I run into is that for some reason this function works in server mode, but gives me this error when I call the function in embedded mode:
org.h2.jdbc.JdbcSQLException: Parameter "#1" is not set; SQL statement:
? = call IDENTITY() [90012-160]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论