Reputation: 39
I have a query regarding refcursor. I am using refcursor as out parameter in oracle stored procedure. I have written a simple select query using cursors and return it as dataset to the calling function. Is it possible not to use refcursor and fill the dataset?
Upvotes: 0
Views: 123
Reputation: 59557
You can write the query directly in .NET and send it to the database. Just set command property "CommandType" accordingly.
Upvotes: 0