I need to get data from a function that returns a record table. for instance
Pkg1 package
The specified record inside the package:
type rec is record(id number,name varchar2(40));
Record table defined inside the package:
type rec_tbl is table of rec;
Function defined inside the package:
FUNCTION get_rec_tbl() RETURN rec_tbl;
Now I need to do the following: using spring jdbc or spring jdbctemplate to get the values from the function and process it. I am not sure how to do this.
Can anyone help?
source
share