首页 > 代码库 > sys_refcursor的使用方法实例
sys_refcursor的使用方法实例
--创建过程,參数为sys_refcursor,为out型 create or replace procedure aabbsys_refcursor(o out sys_refcursor) is begin open o for select * from basplumain; end; --- --測试过程,使用aabbsys_refcursor传出的值 create or replace procedure aabb_test_sys_refcursor(return out int)is type t_basplumain is table of basplumain%rowtype; t_plu t_basplumain; v sys_refcursor; begin aabbsys_refcursor(v); fetch v bulk collect into t_plu; for i in 1..t_plu.count loop dbms_output.put_line(t_plu(i).pluname); end loop; end; --- --sqlplus測试脚本 --set serveroutput on declare v_return int default 0; begin aabb_test_sys_refcursor(v_return); end;
sys_refcursor的使用方法实例
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。