如何从 Spring/Hibernate 调用存储例程/函数?
是否有可能通过 Spring/Hibernate 调用存储函数(MySql Server)?
该函数获取两个参数 (int, varchar(20)) 并返回一个 varchar(255), 我认为命名查询一定有可能,但我不知道如何生成映射。
Is there a possibility to call a stored function (MySql Server) via Spring/Hibernate?
The function gets two parameter (int, varchar(20)) and returns a varchar(255),
I think there must me a possibility with named-query but I have no idea how to generate the mapping.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能必须将存储过程包装在另一个返回结果集的存储过程中。
请参阅 Hibernate 核心参考第 18 章 有关命名查询和调用存储过程的信息。
You might have to wrap the stored procedure in another stored procedure that returns a resultset.
See Hibernate Core Reference Chapter 18 for info on named queries and calling stored procedures.