Forum Replies Created

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

  • RE: Get the return value of a proc?

    My reply had two parts:

    1. How to do it in SQL Server

    2. How to do it in ADO.Net

  • RE: Get the return value of a proc?

    Example of Calling a SQL Server SP with an return parameter (@RC):

    DECLARE @rc int

    DECLARE @WinderReel int

    DECLARE @JumboSet tinyint

    DECLARE @CullTime smalldatetime

    DECLARE @Diameter decimal(9,3)

    EXECUTE @rc = [LabNet].[dbo].[jpCullSetFetch]

    ...

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