Oracle 10g 中的 DMBS_SQL.to_refcursor 等效项

发布于 2024-08-11 03:14:01 字数 233 浏览 6 评论 0原文

我有一位同事遇到了DBMS_SQL.to_refcursor,这对他来说是一个很好的解决方案,可以传回他需要的引用游标,但是我们运行的是 Oracle 10g,并且此功能仅在 11g 中可用。

Oracle 10g 中有类似的简单方法吗?

我们开发了另一种编码解决方案的方法,但使用 DBMS_SQL 中的绑定变量会更容易,但我们不希望这个包变得过于难以管理,因为它将传递给其他程序员来维护。

I have a coworker who came across DBMS_SQL.to_refcursor which would be a great solution for him to pass back the refcursor he needs, however we are running Oracle 10g and this feature is only available in 11g.

Is there an easy equivalent to this in Oracle 10g?

We have developed an alternate way of coding our solution but it would be easier to use the bind variables in the DBMS_SQL but we don't want this package to become overly difficult to manage and such since it will be passed on to other programmers to maintain.

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

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

发布评论

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

评论(1

怀中猫帐中妖 2024-08-18 03:14:01

链接列出了各种可用的动态 SQL 替代方案< /a>,包括DBMS_SQL.to_refcursor。我最倾向于使用 OPEN ... FOR 表示法:

L_CURSOR SYS_REFCURSOR;
L_QUERY  VARCHAR2(5000) DEFAULT '...'

BEGIN

   FOR I IN 0 .. (TRUNC(LENGTH(L_QUERY) / 255)) LOOP
     DBMS_OUTPUT.PUT_LINE(SUBSTR(L_QUERY, I * 255 + 1, 255));
   END LOOP;

   OPEN L_CURSOR FOR L_QUERY;
   RETURN L_CURSOR;

END;

更新:

不幸的是,就我而言,这不起作用,因为我绑定了不同数量的变量。这就是我使用 DBMS_SQL 包以编程方式绑定变量而不是使用语法的原因。

我建议使用 context< /code> 变量在这种情况下 - 从 9i 开始就支持它们。

This link lists the various dynamic SQL alternatives available, including the DBMS_SQL.to_refcursor. I mostly tend to use the OPEN ... FOR notation:

L_CURSOR SYS_REFCURSOR;
L_QUERY  VARCHAR2(5000) DEFAULT '...'

BEGIN

   FOR I IN 0 .. (TRUNC(LENGTH(L_QUERY) / 255)) LOOP
     DBMS_OUTPUT.PUT_LINE(SUBSTR(L_QUERY, I * 255 + 1, 255));
   END LOOP;

   OPEN L_CURSOR FOR L_QUERY;
   RETURN L_CURSOR;

END;

Update:

unfortunately in my case this will not work because I am binding varying number of variables. That's the reason I used DBMS_SQL package to bind variables programatically not with using syntax.

I suggest using context variables in that case - they've been supported since 9i.

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