Oracle 包(package)
--定义包规范 create or replace package p_stu as --定义结构体 type re_stu is record( rname student.name%type, rage student.age%type ); --定义游标 type c_stu is ref cursor; --定义函数 function numAdd(num1 number,num2 number)return number; --定义过程 procedure GetStuList(cid in varchar2,c_st out c_stu); end;
--实现包体,名称一致。 create or replace package body p_stu as --游标和结构体,包规范中已声明,包体中不用再声明,直接使用。 --实现方法 function numAdd(num1 number,num2 number)return number as num number; begin num:=num1+num2; return num; end; --实现过程 procedure GetStuList(cid varchar2,c_st out c_stu) as r_stu re_stu; --直接使用包规范中的结构 begin open c_st for select name,age from student where classid=cid; -- 如果已经在过程中遍历了游标,在使用这个过程的块中,将没有值。 -- loop -- fetch c_st into r_stu; -- exit when c_st%notfound; -- dbms_output.put_line(‘姓名=‘||r_stu.rname); -- end loop; end; end;
只有当包头编辑成功后才能编辑包体,其中的函数名与过程名须和包头中的函数过程一样。 1 包说明和包体必须有相同的名字 2 包的开始没有begin语句,与存储过程和函数不同。 3 在包的说明部分定义函数和过程的名称和参数,具体实现在包体中定义。 4 在包内声明常量、变量、类型定义、异常、及游标时不使用declare。 5 包内的过程和函数的定义不要create or replace语句。 6 包声明和包体两者分离。
(3)使用
declare c_stu p_stu.c_stu; --定义包中游标变量 r_stu p_stu.re_stu; --定义包中结构体变量 num number; begin --使用及遍历包中过程返回的结果集 p_stu.GetStuList(‘C001‘,c_stu); loop fetch c_stu into r_stu; exit when c_stu%notfound; dbms_output.put_line(‘姓名=‘||r_stu.rname); end loop; --使用包中的方法 select p_stu.numAdd(5,6) into num from dual; dbms_output.put_line(‘Num=‘||num); end;
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。