码迷,mamicode.com
首页 > 数据库 > 详细

Oracle -PLSQL存储过程游标当出参

时间:2014-09-10 22:30:51      阅读:374      评论:0      收藏:0      [点我收藏+]

标签:oracle   plsql   cursor   存储过程   

包头:

create or replace package ProdureceCursorData is

type  curtype is ref cursor;    
type type_record is record  
(  
  deptno NUMBER(2) ,
  dname  VARCHAR2(14),
  loc    VARCHAR2(13)
); 
PROCEDURE Procedure1(cur out curtype);

end ProdureceCursorData;


包体:

create or replace package body ProdureceCursorData is

PROCEDURE Procedure1(cur out curtype)
as
begin
open  cur for select * from DEPT;
end;

end ProdureceCursorData;


测试:

SQL> select * from DEPT;

DEPTNO DNAME          LOC
------ -------------- -------------
    10 ACCOUNTING     NEW YORK
    20 RESEARCH       DALLAS
    30 SALES          CHICAGO
    40 OPERATIONS     BOSTON

SQL> set serveroutput on
SQL> declare
  2  curoutarg    ProdureceCursorData.curtype;
  3  rec_arg      ProdureceCursorData.type_record;
  4  begin
  5    dbms_output.put_line(‘------------------------‘);
  6    ProdureceCursorData.Procedure1(curoutarg);
  7   loop
  8   fetch curoutarg into rec_arg;
  9   exit when curoutarg%notfound;
 10   dbms_output.put_line(rec_arg.deptno||‘ ‘||rec_arg.dname||‘ ‘||rec_arg.loc);
 11    end loop;
 12  end;
 13  /
------------------------
10 ACCOUNTING NEW YORK
20 RESEARCH DALLAS
30 SALES CHICAGO
40 OPERATIONS BOSTON
PL/SQL procedure successfully completed

记录一下实践结果,哈哈哈

Oracle -PLSQL存储过程游标当出参

标签:oracle   plsql   cursor   存储过程   

原文地址:http://blog.csdn.net/lifang123456/article/details/39188077

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!