I am using the Oracle Data Provider. I am having trouble calling开发者_Python百科 a function that returns a record type defined as TABLE_NAME%ROWTYPE. How do you do this from C#
ODP.net does not work with the record type. You could return a refcursor to your record and then access it from there.
精彩评论