@NamedNativeQuery 多个结果集
是否可以使用 @NamedNativeQuery+Spring+Hibernate 返回多个结果集?
我正在使用 HibernateTemplate.findByNamedQuery 来查找映射的 DAO 对象,如下所示:
@Entity
@NamedNativeQueries( {
@NamedNativeQuery( callable = true, name = "QueryName", query = "pStoredProcedureName ?, ?, ?", readOnly = true,
resultClass = DAOClass.class ),
但现在我调用的存储过程有多个结果集,而我似乎只能获取第一个结果集。
谢谢。
Is it possible to get back multiple resultsets with @NamedNativeQuery+Spring+Hibernate?
I am using HibernateTemplate.findByNamedQuery
to lookup a DAO object mapped like so:
@Entity
@NamedNativeQueries( {
@NamedNativeQuery( callable = true, name = "QueryName", query = "pStoredProcedureName ?, ?, ?", readOnly = true,
resultClass = DAOClass.class ),
But now the stored procedure I am calling has multiple result sets and I can only seem to get the first one.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
基于这个我不认为这是可能的。
Based on this I don't think it is possible.