Return output parameter

  • How can i display the value of stored procedure output parameter using sql query analyser. I want to check the value of output parameter before sending to my web page .

  • try this method

    Declare @OutputParameter Datatype

    EXEC StoredProcedurename

    ParameterValue1,

    ParameterValue2,..ParameterValue3,

    @OutputParameter OUTPUT

    Select @OutputParameter

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply