Hi,
I am a reasonably experienced pl/sql developer, but very new to odp.net.
We want to use odp.net to create soap/rest services for several existing oracle functions.
Some of these functions return record types or tables of record types, e.g.:
type my_result_rec is record(
val1 number,
val2 number );
type my_result_tab is table of my_result_rec;
function my_function(
param1 in number,
param2 in number
) return my_result_tab;
Is it possible to use these kind of functions in odp.net? What is the preferred way of interacting with custom data types?
Thank you very much in advance!
Rob