Hibernate:使用用户提供的 SQL 代码进行更新
我一直在阅读文档,但找不到任何有关它的信息。
是否可以让 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
参考文档。不过,有一些警告:会话和二级缓存不知道对实体所做的更改,版本字段未更新等。
如果 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.