Oracle
 sql >> Datenbank >  >> RDS >> Oracle

PL/SQL:Fehler PLS-00306:Falsche Anzahl oder Argumenttypen im Aufruf für die Zahlentabelle ausgelöst

Der Grund, warum Sie vor dem PLS-00306 stehen Fehler ist Inkompatibilität von NUMLIST Sammlungstyp, definiert in der Paketspezifikation und NUMLIST Sammlungstyp, der im anonymen PL/SQL-Block definiert ist. Obwohl die Definitionen dieser beiden Sammlungstypen identisch sind, sind sie nicht kompatibel. In Ihrem anonymen PL/SQL-Block müssen Sie deklarieren und dann an die GETSERVICES_API übergeben Prozedur eine Variable von PKGCOMSUPPORT_SERVICE.NUMLIST Datentyp.

create or replace package PKG as
  type t_numlist is table of number index by varchar2(50);
  procedure SomeProc(p_var in pkg.t_numlist);
end;
/

create or replace package body PKG as
  procedure someproc(p_var in pkg.t_numlist) is
  begin
    null;
  end;
end;
/

declare
  type t_numlist is table of number index by varchar2(50);
  l_var t_numlist;
begin
  pkg.someproc(l_var);
end;

ORA-06550: line 5, column 3:
PLS-00306: wrong number or types of arguments in call to 'SOMEPROC'

declare
  --type t_numlist is table of number index by varchar2(50);
  l_var pkg.t_numlist;
begin
  pkg.someproc(l_var);
end;

anonymous block completed