I have an oracle storedProc that takes one input parameter and 15
output parameters. Can I get the results of the output parameters in a
datareader or must I add 15 output parameters?

thanks


john

Re: using a dataReader with StoredProc by Sahil

Sahil
Fri Apr 29 11:30:50 CDT 2005

You can get a datareader. Just use a Ref Cursor output parameter.

- Sahil Malik [MVP]
http://codebetter.com/blogs/sahil.malik/



"coltrane" <tendengarci@yahoo.com> wrote in message
news:1114791224.426306.95160@g14g2000cwa.googlegroups.com...
> I have an oracle storedProc that takes one input parameter and 15
> output parameters. Can I get the results of the output parameters in a
> datareader or must I add 15 output parameters?
>
> thanks
>
>
> john
>



Re: using a dataReader with StoredProc by coltrane

coltrane
Tue May 03 09:15:16 CDT 2005

thanks for the reference
john