I've got an oracle stored function that returns sys_refcursor as an out parameter. It's structure belike
Object
- param1
- param2
- param3
- param4_list(cursor)
I want to get param1-3 values into datatable1 and param4_list(cursor) values into datatable2 using C#. Any suggestions? If possible, show examples please.