Sometimes it is useful to create, update, or delete a set of rows in a database. There are several approaches you could use to achieve that goal. One of them is to pass an array of information from a client to a CLR integration stored procedure on the server using a CLR integration user-defined data type. The nature of such user-defined data types limits the size of the data provided to the server to 8000 bytes. Therefore, this approach is not satisfactory for large or complex data. See the contact creation stored procedure in the AdventureWorks Cycles CLR Layer sample. If the data being manipulated is small and simple, this approach can be much more efficient than calling a stored procedure for each row.
This sample contains:
-
The
ContactTypeNamesuser-defined data type. This contains a list of desired contact type names.
-
The
usp_EnsureContactTypeNamesstored procedure implemented as a Microsoft Visual C# or Microsoft Visual Basic method, which accepts an instance of theContactTypeNamesuser-defined data type and inserts new rows in the Person.ContactType table for any contact names that are contained in the user-defined data type instance which are not already present in the table.
-
The
TestArrayParameterconsole application which creates an instance of theContactTypeNamesuser-defined data type based on the command line parameters passed in and then invokes theusp_EnsureContactTypeNamesstored procedure passing the user-defined data type instance as a parameter.
Install directory: drive:\Program Files\Microsoft SQL Server\90\Samples\Engine\Programmability\CLR\ArrayParameter\
Scenario
Jane is a developer for Adventure Works Cycles. She has to insert a small number of simple rows in a table but wants to minimize database turnarounds.
Languages
Transact-SQL, Visual C# and Visual Basic.
Features
The Array Parameter sample uses the following features of .
| Application Area | Features |
|---|---|
|
Overall |
CLR, user-defined data type, Transact-SQL |
Prerequisites
Before running this sample, make sure the following software is installed:
-
Microsoft SQL Server 2005 or Microsoft SQL Server 2005 Express Edition (SQL Server Express). You can obtain SQL Server Express free of charge from the SQL Server 2005 Express Edition Documentation and Samples
Web site .
-
The AdventureWorks database which is included with SQL Server 2005, and is also available at the SQL Server 2005 Express Edition Documentation and Samples
Web site .
-
The SQL Server 2005 Database Engine samples. These samples are included with SQL Server 2005 and are also included with the Microsoft .NET Framework version 2.0 SDK 2.0.
-
.NET Framework SDK 2.0 or Microsoft Visual Studio 2005. You can obtain .NET Framework SDK free of charge. See Installing the .NET Framework SDK.
Building the Sample
To build the Array Parameter sample
-
CD to the install directory and execute the following at a .NET Framework or Microsoft Visual Studio 2005 command prompt:
sn -k keypair.snk -
Compile the sample by using Visual Studio 2005 and the provided Visual Studio solution or using , which is included in the .NET Framework SDK 2.0, by executing commands similar to the following at a .NET Framework command prompt:
msbuild /nologo /verbosity:quiet /property:Configuration=Debug CS\ArrayParameter.sln -
Make sure that the AdventureWorks database is installed.
-
If you did not install the SQL Server engine samples in the default location, modify the path in the CREATE ASSEMBLY part of the script in Scripts\InstallCS.sql to refer to the location where the samples were installed.
-
If you are not an administrator for the SQL Server instance you are using, you must have an administrator grant you CreateAssembly permission to complete the installation.
-
Open the scripts\installCS.sql or scripts\installVB.sql file, depending on whether you compiled the csprcs project or the Visual Basic project, in . Execute the script contained in the file, or execute a command similar to the following in a command prompt window:
sqlcmd -E -I -i Scripts\InstallCS.sql
Running the Sample
To run the Array Parameter sample
-
Execute a command similar to the following in a command prompt window:
Scripts\TestCS.cmd
Removing the Sample
To remove the Array Parameter sample
-
Open the scripts\cleanup.sql file in SQL Server Management Studio and execute the script contained in the file, or execute the following command in a command prompt window:
sqlcmd -E -I -i Scripts\cleanup.sql
Comments
The CLR for SQL Server 2005 or SQL Server Express must be enabled for this sample to work correctly.
Samples are provided for educational purposes only. They are not intended to be used in a production environment and have not been tested in a production environment. Microsoft does not provide technical support for these samples. Sample applications and assemblies should not be connected to or used with your production SQL Server database or your report server without the permission of the system administrator.