Hi all,
I would like to know how to declare an array like myvar(100,50) so it can be referrenced in code like:
declare
temp number;
myvar of type ?
begin
.. do some stuff
for i in 1..100 loop
temp := myvar(i,10);
end loop;
.. do more stuff
exception
end;
I am aware of this type but this is no good:
TYPE TabNames IS TABLE OF VARCHAR2(30)
INDEX BY BINARY_INTEGER;
tab_name TabNames;
I want an extra nested level, is this possible, can anyone help me?
Thanks
David
I would like to know how to declare an array like myvar(100,50) so it can be referrenced in code like:
declare
temp number;
myvar of type ?
begin
.. do some stuff
for i in 1..100 loop
temp := myvar(i,10);
end loop;
.. do more stuff
exception
end;
I am aware of this type but this is no good:
TYPE TabNames IS TABLE OF VARCHAR2(30)
INDEX BY BINARY_INTEGER;
tab_name TabNames;
I want an extra nested level, is this possible, can anyone help me?
Thanks
David