Dear Friends
I have a stored procedure in MS-SQL database which returns an output parameter
In query analyser I execute the procedure as fallows
DECLARE @@param_out INT
exec proc_1 'param_in_1','param_in_2',@@param_out OUTPUT
PRINT @@param_out
How can i get the value of param_out from
VB code?
Thanks
Nav