how to invoke a pl/sql function from java, to return a table of element
Hi everybody,
as the title, i have a pl/sql funtion, like below:
type t_record is record (
...
);
type t_table is table of t_record;
function() return t_table is ...
Is there any way for java get to know this data type? so that in java code, we can do some thing like below or similiar:
resultset rt = callablestatement.getresultset()..
thank you. :)
darvei

