create or replace package temppkg
is
type mytable is ref cursor;
procedure Get_Template(cur_mytable out mytable);
end;
/
create or replace package body temppkg
is
procedure Get_Template(cur_mytable out mytable)
is
begin
open cur_mytable for select * from ZBGL_CW_HISMX;
end Get_Template;
end temppkg;
/
本文详细介绍了如何在数据库中创建自定义存储过程及包,包括实例代码演示及使用说明。
765

被折叠的 条评论
为什么被折叠?



