I have the following defined in a package spec (ssan3102):
TYPE ssan3_stringarray IS TABLE OF VARCHAR2(2000) INEX BY BINARY_INTEGER;
And the following defined in a procedure.
keys ssan3102.ssan3_stringarray;
A call to a C library populates keys. How can I use dbms_ouput.put_line to display the entries in the table? Each entry is 8 bytes.
Thanks