Stored Procedure return values

  • Thread starter Thread starter George
  • Start date Start date
G

George

Hi, I have a stored procedure that return 2 values (not 2 rows). Two
separate values. How can I read both of them from a Sql Command Object in
C#. When I execute the command and assign the results in a data reader I
have only one index at the data reader. Like the second value has never been
read.

What can I do?
 
If you do not show your SP code and your C# code of how the SP is called, it
is hard to say what is wrong, but it is certain to say you did something
wrong.
 
Search the Internet for info on Output parameters ... maybe that's what
you're looking for?
 
Back
Top