User-Defined TableType
を作成します データベース内:
CREATE TYPE [dbo].[MyTableType] AS TABLE(
[Id] int NOT NULL,
[Name] [nvarchar](128) NULL
)
Stored Procedure
でパラメータを定義します :
CREATE PROCEDURE [dbo].[InsertTable]
@myTableType MyTableType readonly
AS
BEGIN
insert into [dbo].Records select * from @myTableType
END
DataTable
を送信します SQLサーバーに直接:
using (var command = new SqlCommand("InsertTable") {CommandType = CommandType.StoredProcedure})
{
var dt = new DataTable(); //create your own data table
command.Parameters.Add(new SqlParameter("@myTableType", dt));
SqlHelper.Exec(command);
}
ストアドプロシージャ内の値を編集するには、同じタイプのローカル変数を宣言し、それに入力テーブルを挿入します。
DECLARE @modifiableTableType MyTableType
INSERT INTO @modifiableTableType SELECT * FROM @myTableType
次に、@modifiableTableType
を編集できます :
UPDATE @modifiableTableType SET [Name] = 'new value'