A Alberto Oct 16, 2004 #1 How can I find out the return value of a store procedure in Sql Server? Thank you
R Richard Blewett [DevelopMentor] Oct 16, 2004 #2 Add a parameter to the parameters colleciton with a Direction of ParameterDirection.ReturnValue Regards Richard Blewett - DevelopMentor http://staff.develop.com/richardb/weblog How can I find out the return value of a store procedure in Sql Server? Thank you
Add a parameter to the parameters colleciton with a Direction of ParameterDirection.ReturnValue Regards Richard Blewett - DevelopMentor http://staff.develop.com/richardb/weblog How can I find out the return value of a store procedure in Sql Server? Thank you
M Morten Wennevik Oct 16, 2004 #3 Hi Alberto, As Richard said, Parameters would be the way to go. These two pages might give you a few ideas: http://www.c-sharpcorner.com/Code/2003/Jan/InsOutsinCS.asp http://www.c-sharpcorner.com/database/dbsqlnet.asp
Hi Alberto, As Richard said, Parameters would be the way to go. These two pages might give you a few ideas: http://www.c-sharpcorner.com/Code/2003/Jan/InsOutsinCS.asp http://www.c-sharpcorner.com/database/dbsqlnet.asp