Reputation: 22421
I am using the Oracle Data Provider. I am having trouble calling a function that returns a record type defined as TABLE_NAME%ROWTYPE. How do you do this from C#
Upvotes: 3
Views: 1302
Reputation: 5647
ODP.net does not work with the record type. You could return a refcursor to your record and then access it from there.
Upvotes: 2