Hi Friends,
I have a nested table type as an IN parameter in a stored procedure like below in Oracle 10g database.
CREATE OR REPLACE TYPE scott.o_emp_type AS OBJECT (
empno NUMBER,
ename VARCHAR2 (10),
job VARCHAR2 (9)
);
CREATE OR REPLACE TYPE scott.t_emp_type AS TABLE OF o_emp_type;
CREATE OR REPLACE TYPE scott.o_dept_type AS OBJECT (
deptno NUMBER,
dname VARCHAR2 (14),
loc VARCHAR2 (13),
tt_emp_type t_emp_type
);
CREATE OR REPLACE TYPE scott.t_dept_type AS TABLE OF o_dept_type;
Please suggest me a way in java how to pass this a value to this particular type.
Kindly give me example specific to this nested table type.
Regards,
Marlon.