我在pl / sql匿名块中有以下代码&得到错误"参考未初始化的集合"。
declare
myarray my_array_type := my_array_type ();
begin
PKG.GETVAL(myarray);
for I in 1..myarray.count
DBMS_OUTPUT.PUT_LINE('Value : '||myarray(I).value);
end;
PKG.GETVAL()返回数组中的一些值。
Error report: ORA-06531: Reference to uninitialized collection ORA-06512: at line 4 06531. 00000 - "Reference to uninitialized collection"