Hibernate:使用用户提供的 SQL 代码进行更新

发布于 2024-11-17 21:59:58 字数 260 浏览 2 评论 0原文

我一直在阅读文档,但找不到任何有关它的信息。

是否可以让 Hibernate 发送用户提供的 SQL 查询以便更新或插入数据库中的对象?

换句话说,是否可以使用 session.saveOrUpdate( myObject ); 来生成 update mySchema.myObject set field1=?, field2=?, field3=?其中 unique_key=? 替换为来自用户提供的字符串的手动查询?

I've been reading the documentation, but I couldn't find any information about it.

Is it possible to have Hibernate send user-provided SQL queries in order to UPDATE or to INSERT an object in the database?

In other words, is it possible to have session.saveOrUpdate( myObject ); , which generates update mySchema.myObject set field1=?, field2=?, field3=? where unique_key=?
to be replaced with a manual query from a user-provided String?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

[旋木] 2024-11-24 21:59:58

参考文档。不过,有一些警告:会话和二级缓存不知道对实体所做的更改,版本字段未更新等。

如果 HQL 仍然不够,您可能总是会回退到 < a href="http://docs.jboss.org/hibernate/core/3.6/reference/en-US/html_single/#querysql" rel="nofollow">SQL 查询。

This is well described in the reference documentation. There are caveats, though : the session and the second-level cache aren't aware of the changes made to the entities, the version field is not updated, etc.

And if HQL is still not sufficient, you may always fall back to SQL queries.

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