--创建过程,參数为sys_refcursor,为out型create or replace procedure aabbsys_refcursor(o out sys_refcursor) isbegin open o for select * from basplumain;end;-----....
分类:
其他好文 时间:
2014-10-04 16:46:46
阅读次数:
287
1. 自定义 ref cursor 和 sys_refcursor; 2. sys_refcursor 做为参数传递结果集; 3. ref cursor 做为参数传递结果集; 1. 自定义 ref cursor 和 sys_refcursor: declare type df_ref is ref ...
分类:
数据库 时间:
2014-09-26 02:57:38
阅读次数:
464
总共介绍两种游标一种高效使用游标cursor 、sys_refcursor、 bulk collect 1、cursor游标使用 [sql] view plain copy print ? /*简单cursor游标 *students表里面有name字段,你可以换做其他表测试 */ --定义 decl...
分类:
数据库 时间:
2014-09-15 19:57:19
阅读次数:
323
表名作为参数的动态游标
DECLARE
v_table_name VARCHAR2(30) := 'CUX_MES_WIP_BARCODE_MAP';
--l_rec SYS_REFCURSOR;
TYPE t_data IS TABLE OF VARCHAR2(30) INDEX BY BINARY_INTEGER;
TYPE t_cur IS REF C...
分类:
数据库 时间:
2014-08-07 19:01:30
阅读次数:
390
--创建过程,参数为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 repla...
分类:
其他好文 时间:
2014-06-17 16:04:12
阅读次数:
180