H2 DB Identity() 函数在嵌入模式下不起作用

发布于 2024-12-09 20:43:13 字数 434 浏览 0 评论 0原文

我使用的是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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文