Re: Return value in stored procedure



"Man T" <alanpltse_NOSPAM@xxxxxxxxxxxx> wrote in message
news:482cc7df$1@xxxxxxxxxxxxxxxxxxxxxxxxx
So is there a way to get the return value from the stored procedure?

Yes, you should be able to access the return value in a similar manner by
accessing the return value parameter
Parameters.ParamByName('@RETURN_VALUE').Value

Good luck,
krf


.