使用 Hibernate 从 Oracle 序列中提取数据
我在 Oracle 数据库中定义了一个序列。 我可以使用 Hibernate 提取该序列吗?我不想使用该序列为我的对象生成 id,因此 @GenerateValue
和 @Id
不是我正在寻找的东西。
I've a sequence defined in my Oracle database.
Can I pull from this sequence using Hibernate? I don't want to use the sequence for generating ids for my objects, so @GeneratedValue
and @Id
are not the things I am looking for.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样的东西:
Something like this:
您是否尝试过:
这将返回一个记录结果集,其中包含序列中的下一个值。然后您可以使用
来获取序列的当前值。
Have you tried:
This will return a one record result set with the next value in your sequence. You can then use
To get the current value of the sequence.