使用 MS EntLib 4.1 中的 DAAB 从 Oracle 存储过程返回引用游标

发布于 2024-08-27 01:21:22 字数 76 浏览 7 评论 0原文

是否可以使用 Microsoft Enterprise Library 4.1 中的 DAAB 从 Oracle 存储过程中获取引用游标?

Is it possible to get ref cursor from oracle stored procedure by using DAAB from Microsoft Enterprise Library 4.1?

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

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

发布评论

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

评论(2

睡美人的小仙女 2024-09-03 01:21:22

是的,当然可以。

PROCEDURE load_all (
    p_row_start          IN     number,
    p_page_size          IN     number,

    cur_out              OUT    sys_refcursor
) AS
...

在 C# 方面:

DbCommand cmd = db.GetStoredProcCommand("my_package.load_all", paramValues))
IDataReader r = db.ExecuteReader(cmd);
...

RefCursor 参数应该命名为“cur_out”。

Yes, surely you can.

PROCEDURE load_all (
    p_row_start          IN     number,
    p_page_size          IN     number,

    cur_out              OUT    sys_refcursor
) AS
...

And on the C# side:

DbCommand cmd = db.GetStoredProcCommand("my_package.load_all", paramValues))
IDataReader r = db.ExecuteReader(cmd);
...

RefCursor param supposed to be named "cur_out".

飘落散花 2024-09-03 01:21:22

DAAB 不为我们提供获取参考光标的功能。问题是 System.Data.Common 没有 DbType.Cursor 或 DbType.RefCursor 类型。因此,DAAB 4.1 源代码需要进行一些调整。请按照以下链接中提供的步骤进行操作。它的工作就像小菜一碟。

http://www.codeproject.com/KB/database/DAAB_On_ODPNet.aspx

DAAB does not provide a capability for us to get the Ref Cursor. The issue is System.Data.Common does not have DbType.Cursor or DbType.RefCursor type. So, there is a bit of tweaking required in the DAAB 4.1 source code. Please follow the steps provided in the following link. It works like a piece of cake.

http://www.codeproject.com/KB/database/DAAB_On_ODPNet.aspx

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