使用参数创建引用光标?

发布于 2024-11-08 00:18:21 字数 313 浏览 1 评论 0原文

如何使用参数创建 ref 光标并从 plsql 函数返回此光标? 我尝试编写类似此代码的代码..

create or replace function get_ref_cur(id in number) return sys_refcursor is
 ref_curs sys_refcursor; 
 begin 
    open ref_curs(std_id number) for select * from student where id = std_id;
 return ref_curs; 
 end;

但此代码不起作用。

how can I create ref curser with parameters and return this cursor from plsql function?
I tried to write something like this code..

create or replace function get_ref_cur(id in number) return sys_refcursor is
 ref_curs sys_refcursor; 
 begin 
    open ref_curs(std_id number) for select * from student where id = std_id;
 return ref_curs; 
 end;

but this code did not work.

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

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

发布评论

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

评论(1

神经大条 2024-11-15 00:18:22

您不需要将参数应用于普通的 sys_refcursor。

create or replace function get_ref_cur(id in number) return sys_refcursor is
 ref_curs sys_refcursor; 
 begin 
    open ref_curs for select * from student where std_id = id;
 return ref_curs; 
 end;

You shouldn't need to apply parameters to a plain sys_refcursor.

create or replace function get_ref_cur(id in number) return sys_refcursor is
 ref_curs sys_refcursor; 
 begin 
    open ref_curs for select * from student where std_id = id;
 return ref_curs; 
 end;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文