my storeprocedure will return a structure likethis
type student is record
(field1 varchar2(20),
field2 varchar2(20),
field3 varchar2(20),
field4 integer,
field5 varchar2(20),
);
type student_rec is table of student index by binary_integer;
how do get this in jdbc,i ran the storeprocedure and printed the output this structure has valuesin it,i need to call it from the jdbc,how do i do that.
thanks.
type student is record
(field1 varchar2(20),
field2 varchar2(20),
field3 varchar2(20),
field4 integer,
field5 varchar2(20),
);
type student_rec is table of student index by binary_integer;
how do get this in jdbc,i ran the storeprocedure and printed the output this structure has valuesin it,i need to call it from the jdbc,how do i do that.
thanks.