NHibernate访问Oracle存储过程REFCURSOR和输出参数
当前版本的 NHibernate (v2.1.2) 是否支持访问 Oracle 存储过程输出 REFCURSOR 此外到输出参数?
我可以使用我的代码很好地访问输出引用游标。但是我不确定我可以在同一存储过程中访问附加输出参数。
一些调用语法的示例将不胜感激。谢谢。
Does the current version of NHibernate (v2.1.2) support access Oracle stored procedure output REFCURSOR in addition to an output parameter?
I can access the output refcursor fine with my code. However i'm not sure i can access the additional output param in the same stored procedure.
Some sample of calling syntax would be greatly appreciated. thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,事实并非如此。仅支持一个引用游标,并且它必须是存储过程中的第一个参数。
您始终可以从会话中获取 IDbConnection,然后在此类场景中使用普通的 ODP.Net(您会失去 nh 功能),或者更确切地说更改存储过程。
Nope it does not. Only one refcursor is supported and it has to be the first parameter in the sproc.
You can always get the IDbConnection from the session and then use plain ODP.Net for such scenarios (you lose nh functionality) or rather change the stored procedure.
我找到了一个使用 NHibernate 调用旧存储过程的解决方案。
我认为这不是更好的方法,但我们通常没有时间重构一切,所以:
I found a solution to call old stored procedures with NHibernate.
I don't think that is the better way, but we normally don't have time to refactor everything, so: