user3193026
user3193026

Reputation: 39

Oracle with .Net without refcursor

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

Answers (1)

Wernfried Domscheit
Wernfried Domscheit

Reputation: 59557

You can write the query directly in .NET and send it to the database. Just set command property "CommandType" accordingly.

Upvotes: 0

Related Questions