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;
 
Back
Top