I am new to both Oracle and Entlib.
I have written some code to call a stored procedure which works fine, however there's an issue when I am calling stored procedure with Ref cursor as output parameter.
Could anybody help me with some sample code to access stored procedure inside Oracle database using EntLib which returns a Ref cursor as output parameter?
Thanks.
You could look at the tests in the source code.
First define a cursor:
Then create a stored procedure:
Note use of cur_out as the ref cursor name -- this is mandatory.
Then the c# code:
The test uses this configuration file.
If you are using ODP.NET then you would want to switch from using the deprecated System.Data.OracleClient to Oracle.DataAccess.Client. You would need to use the EntlibContrib Oracle ODP.NET Data Provider. Also, you could look at the EntLibContrib Quickstart for sample ODP.NET configuration.