Is it possible to get result set from a Oracle store procedure via ODBC?
C#
1
Posts
1
Posters
0
Views
1
Watching
-
Hi guys, I got a Oracle store procedure which would return dataset using a ref cursor,it's quite easy to get the result set if I use the classes in System.Data.OracleClient because there's a type OracleType.Cursor which matches the procedure parameter's type. But is it possible to do this via ODBC? There isn't a type likes 'OdbcType.Cursor'. Anything you can help it would be appreciated. :)