目前有 sp_test1,sp_test2,sp_test3
请教给个实例
如果可以把以上三个存储过程放到一个包里...
------解决方案--------------------
--先建包头
create or replace package sp_test as
procedure sp_test1(v_str varchar2);
procedure sp_test2;
procedure sp_test3;
end sp_test;
--再建包体
create or replace package body sp_test as
procedure sp_test1(v_str varchar2) is
begin
dbms_output.put_lint(v_str);
end;
procedure sp_test2() is
begin
null;
end;
.....
end sp_test;
这样就把包建好了啊 然后编译成功后,调用时把包头加上就可以了,如sp_test.sp_test2
------解决方案--------------------
------解决方案--------------------
给个例子参考一下: