Parameter OUTPUT

  • Thread starter Thread starter Miguel Pardo
  • Start date Start date
M

Miguel Pardo

I have an stored procedure which has an OUTPUT parameter,
how can i get it, it has to be through a DataReader or
something like that???? or when i call it???

can you give me an example???
or how???


Any help will be welcome, thanX!!!!

Regards...
 
SqlParameter parameter = new SqlParameter();
parameter.Direction = ParameterDirection.Output;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top