I have a record and table of type this record
TYPE owner_Rec IS RECORD (
ssn CHAR (9),
NAME VARCHAR2 (60),
address VARCHAR2(120) );
TYPE Owner_tbl IS TABLE OF owner_Rec
INDEX BY BINARY_INTEGER;
This I am sending as an out parameter in my stored procedure.
How should i access this table in my
java code , what should i mention in registerOutParameter
cs = (OracleCallableStatement) conn.prepareCall("{call GET_OWNER(?)}");
cs.registerOutParameter (1, );
[ August 17, 2005: Message edited by: Bear Bibeault ]