如何使用 jpa 和 MS SQL 指定提示

发布于 2024-12-09 01:21:55 字数 93 浏览 0 评论 0原文

我希望我的一张表具有行级锁定。我目前正在使用 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 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

忘你却要生生世世 2024-12-16 01:21:55

作为解决方法,我最终使用下面的代码将事务设置为 read_uncommited。


   try{
     Session session = (Session) Report.em().getDelegate();
     Connection connection = session.connection();
     connection.setTransactionIsolation(Connection.TRANSACTION_READ_UNCOMMITTED);
   } catch(SQLException e){
   ...
   }

这似乎适合我的需求,但并不完全是我想要的。
此外,session.connection() 已被弃用,这可能不是一个长期的解决方案。

As a work around I ended up setting the transaction to read_uncommited with the code below.


   try{
     Session session = (Session) Report.em().getDelegate();
     Connection connection = session.connection();
     connection.setTransactionIsolation(Connection.TRANSACTION_READ_UNCOMMITTED);
   } catch(SQLException e){
   ...
   }

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文