stored procedure problem
Database
3
Posts
3
Posters
0
Views
1
Watching
-
Hi I wrote one stored procedure it’s returning two parameters. How to get the two output parameters retuned by SP .
-
Hi I wrote one stored procedure it’s returning two parameters. How to get the two output parameters retuned by SP .
If using a .NET language, set the parameter object's Direction property to ParameterDirection.Output (or, if you're passing values in through this parameter as well, ParameterDirection.InputOutput). The parameter will then be set to this value once all resultsets have been read to the end.
DoEvents: Generating unexpected recursion since 1991