Click here to Skip to main content
15,893,663 members
Articles / Database Development / SQL Server / SQL Server 2008

C# and Table Value Parameters

Rate me:
Please Sign up or sign in to vote.
4.78/5 (30 votes)
20 Aug 2009CPOL3 min read 326.3K   4.3K   50  
How to send bulk data using table value parameters from C#
-- This is the sample script to test the SP

-- An instance of the Table parameter type is created
Declare	@SampelData	As	[dbo].[SampleDataType]
-- and then filled with the set of values
Insert	Into	@SampelData(SampleString, SampleInt) Values('1',1);
Insert	Into	@SampelData(SampleString, SampleInt) Values('2',null);
Insert	Into	@SampelData(SampleString, SampleInt) Values('3',3);

Select * From @SampelData
-- we then call the SP to store the values
Exec SampleProcedure @SampelData

Select *  From SampleTable

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect Imfinity
India India
Hi I have been working on enterprise applications for last six years.

Comments and Discussions