How to use array( Varray) in store procedure. Actually,i have make a stored procedure from which i retrieve a list of elements.
For example:
create or replace procedure GetTargetFields ( fileformat in varchar2,
filefields out Vrray(4) )
IS
BEGIN
SELECT id
INTO filefields
FROM tablename;
END;