
Signature
Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.
Well I think I found the solution on
http://www.gotdotnet.com/codegallery/messageBoard/Thread.aspx?id=295a464a-6072-4
e25-94e2-91be63527327&mbid=12e6b3c0-1261-461b-b86d-eff86af3939d&threadid=0dc416c
f-790a-45e0-a81f-52a71dc37dff
And to recap it, basically to make you DAAB get the Ref Cursor output
parameter from the stored procedure you don't have to add any parameter to
the DBCommandWrapper object because DAAB will add one automatically for you,
but the name of the out parameter in your stored procedure must be cur_OUT
which must be delared as a Ref Cursor. This information is already documented
in the Enterprise Library Release Notes Word document.
But this automatic feature will only add one output cursor parameter to your
command object, my question will be:
How about if you have multiple output cursor parameters returned by the
Oracle stored procedure how should your code handle the situation.
Thanks Peter.
> Hi
>
[quoted text clipped - 14 lines]
> Get Secure! - www.microsoft.com/security
> This posting is provided "AS IS" with no warranties, and confers no rights.
"Peter Huang" [MSFT] - 22 Oct 2005 02:41 GMT
Hi
Thanks for your knowledge sharing, I think the whole community will benifit
from your experience.
Best regards,
Peter Huang
Microsoft Online Partner Support

Signature
Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.
Terence Watt - 06 May 2007 14:02 GMT
Hello,
did u find a way to handle multiple output cursor parameters returned by the
Oracle stored procedure?
Thanks