java - Set values of multiple lists which are received from different sql queries in same refcursor -
i have stored procedure outputs ref cursor.
the stored proc. contains 2 different queries, each of returns list. say,
query1 returns list of serial_numbers. query2 returns list of serial names.
how should set these 2 lists in same ref cursor variable . when retrieve refcursor in java should
refcursor[0] => serial_number refcursor[1] => serial_names
each of these objects contains respective list.
Comments
Post a Comment