Hi ,
I have a package which uses a record type(defined in specification)
TYPE cont_rec IS RECORD
(cont_id Number
,cont_number Number
,cont_number_modifier Number
,s_l_id Number);
TYPE cont_tbl IS TABLE OF cont_rec INDEX BY BINARY_INTEGER;
and in package body a procedure is called
go_cont(p_id In Number,
x_name in Varchar2,
x_con out cont_tbl
x_tab1 out vARCHAR2);
I need to write a procedure to call go_cont procedure in it..get the data from record type out parameter and manipulate it.
The problem is i dont know how to retrieve the data from a record type.
Please help me.
I have a package which uses a record type(defined in specification)
TYPE cont_rec IS RECORD
(cont_id Number
,cont_number Number
,cont_number_modifier Number
,s_l_id Number);
TYPE cont_tbl IS TABLE OF cont_rec INDEX BY BINARY_INTEGER;
and in package body a procedure is called
go_cont(p_id In Number,
x_name in Varchar2,
x_con out cont_tbl
x_tab1 out vARCHAR2);
I need to write a procedure to call go_cont procedure in it..get the data from record type out parameter and manipulate it.
The problem is i dont know how to retrieve the data from a record type.
Please help me.