使用 Statement.RETURN_GENERATED_KEYS 例程从表中检索最后插入的身份 ID?
可能的重复:
如何在 JDBC 中获取插入 ID?
在下面语句,如何获取最后插入的 C12 标识值?这是来自 JavaDB 手册,但他们没有提到如何从该记录集中检索最后插入的值。
CREATE TABLE TABLE1 (C11 int, C12 int GENERATED ALWAYS AS IDENTITY)
Statement stmt = conn.createStatement();
stmt.execute(
"INSERT INTO TABLE1 (C11) VALUES (1)",
Statement.RETURN_GENERATED_KEYS);
ResultSet rs = stmt.getGeneratedKeys();
Possible Duplicate:
How to get the insert ID in JDBC?
In the following statement, how can I fetch the last inserted C12 identity value? This is from the JavaDB manual, but they have not mentioned how to retrieve this last inserted value from this record set.
CREATE TABLE TABLE1 (C11 int, C12 int GENERATED ALWAYS AS IDENTITY)
Statement stmt = conn.createStatement();
stmt.execute(
"INSERT INTO TABLE1 (C11) VALUES (1)",
Statement.RETURN_GENERATED_KEYS);
ResultSet rs = stmt.getGeneratedKeys();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下面是获取生成密钥的示例:
PS:相关的 StackOverflow 问题 就足够了。
Here's an example to get generated keys:
PS: A related StackOverflow question can suffice.