如何使用 jpa 和 MS SQL 指定提示
我希望我的一张表具有行级锁定。我目前正在使用 JPA (hibernate) 和 play 框架。
这是需要在数据库级别指定的事情还是可以通过编程方式完成?
I would like one of my table to have row level locking. I am currently using JPA (hibernate) with play framework.
Is this something that needs to be specified at the DB level or can it be done progammatically?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
作为解决方法,我最终使用下面的代码将事务设置为 read_uncommited。
这似乎适合我的需求,但并不完全是我想要的。
此外,session.connection() 已被弃用,这可能不是一个长期的解决方案。
As a work around I ended up setting the transaction to read_uncommited with the code below.
This seems to suit my needs but is not exactly what I was looking for.
Furthermore the session.connection() is deprecated and this might not be a long term solution.