Given a call to a stored procedure like this:
declare @return_value int
exec @return_value = dbo.myProcedure
How do I re-assign @return_value to e.g. an attribute or a variable?
Given a call to a stored procedure like this:
declare @return_value int
exec @return_value = dbo.myProcedure
How do I re-assign @return_value to e.g. an attribute or a variable?