Viewing 2 posts - 1 through 2 (of 2 total)
My reply had two parts:
1. How to do it in SQL Server
2. How to do it in ADO.Net
February 5, 2008 at 6:10 am
#775092
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]
...
February 4, 2008 at 9:20 am
#774787