minty
minty

Reputation: 22421

Calling a PL/SQL function that returns a {Table}%ROWTYPE from C#

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

Answers (1)

haymansfield
haymansfield

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

Related Questions