我是用oracle9i 在sql puls中创建包
create or replace package sa.iaa
is
type aa is ref cursor
procedure inaa(outp out aa);
end;
create or replace package body sa.iaa
is
procedure inaa(outp out aa)
as
begin
  open outp for select danjbh from pf_djhz;
end;
end;
在sql puls中调用
begin
  sa.iaa.inaa;
end;
错误提示:
wrong number or types of arguments in call to 'INAA'
请问如何在sql puls中把结果集显示出来,如何用delphi7调用返回结果集