in reply to Re: Passing arrays to an oracle stored procedure
in thread Passing arrays to an oracle stored procedure
So this procedure takes in an associative array as an input and returns a set of rows as a table.TYPE msg_comp IS TABLE OF VARCHAR2(40) INDEX BY VARCHAR2(100); TYPE messages_table IS TABLE OF VARCHAR2(200); TYPE message_versions_tt IS TABLE OF SOME_TABLE%ROWTYPE; PROCEDURE get_message_versions( msg_comp_names IN msg_comp, message_versions OUT message_versions_tt );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Passing arrays to an oracle stored procedure
by Anonymous Monk on Aug 23, 2013 at 09:13 UTC |