Is it possible to get ref cursor from oracle stored procedure by using DAAB from Microsoft Enterprise Library 4.1?
Returning ref cursor from oracle stored procedure by using DAAB from MS EntLib 4.1
4k Views Asked by afin At
2
There are 2 best solutions below
0

DAAB does not provide a capability for us to get the Ref Cursor. The issue is System.Data.Common does not have DbType.Cursor or DbType.RefCursor type. So, there is a bit of tweaking required in the DAAB 4.1 source code. Please follow the steps provided in the following link. It works like a piece of cake.
Yes, surely you can.
And on the C# side:
RefCursor param supposed to be named "cur_out".