我试图弄清楚是否有一种方法在使用参数时在Sql Server中执行多值插入,准确地说,有这样的命令:com = new SqlCommand(insert into myTable values (@recID,@tagID), con);com.Parameters.Add(@recID, SqlDbType....
我试图弄清楚是否有一种方法在使用参数时在Sql Server中执行多值插入,准确地说,有这样的命令:
com = new SqlCommand("insert into myTable values (@recID,@tagID)", con);
com.Parameters.Add("@recID", SqlDbType.Int).Value = recID;
com.Parameters.Add("@tagID", SqlDbType.Int).Value = tagID;
com.ExecuteNonQuery();
有没有办法使用参数执行多值单个插入,同时考虑到每个值的参数可能不同? (例如:tagID可能总是不同)
我一直在互联网上搜索但到目前为止没有运气,提前谢谢,问候.
解决方法:
您可以使用表值参数:How to pass table value parameters to stored procedure from .net code
首先,在SQL Server中创建类型:
CREATE TYPE [dbo].[myTvpType] AS TABLE
(
[RecordID] int,
[TagID] int
)
以及插入数据的C#代码:
internal void InsertData(SqlConnection connection, Dictionary<int, int> valuesToInsert)
{
using (DataTable myTvpTable = CreateDataTable(valuesToInsert))
using (SqlCommand cmd = connection.CreateCommand())
{
cmd.CommandText = "INSERT INTO myTable SELECT RecordID, TagID FROM @myValues";
cmd.CommandType = CommandType.Text;
SqlParameter parameter = cmd.Parameters.AddWithValue("@myValues", myTvpTable);
parameter.SqlDbType = SqlDbType.Structured;
cmd.ExecuteNonQuery();
}
}
private DataTable CreateDataTable(Dictionary<int, int> valuesToInsert)
{
// Initialize the DataTable
DataTable myTvpTable = new DataTable();
myTvpTable.Columns.Add("RecordID", typeof(int));
myTvpTable.Columns.Add("TagID", typeof(int));
// Populate DataTable with data
foreach(key in valuesToInsert.Key)
{
DataRow row = myTvpTable.NewRow();
row["RecordID"] = valuesToInsert[key];
row["TagID"] = key;
}
}
沃梦达教程
本文标题为:c# – 使用参数Sql Server插入多行
基础教程推荐
猜你喜欢
- C#获得程序的根目录以及判断文件是否存在的实例讲解 2023-01-22
- C#之泛型详解 2023-05-30
- 简述C#枚举高级战术 2023-03-14
- C#使用NPOI对Excel数据进行导入导出 2023-06-14
- 详谈C# 图片与byte[]之间以及byte[]与string之间的转换 2022-10-27
- c# – Windows 7上的系统蜂鸣声 2023-09-19
- asp.net实现遍历Request的信息操作示例 2023-02-09
- 实例详解C#实现http不同方法的请求 2022-12-26
- C#使用System.Buffer以字节数组Byte[]操作基元类型数据 2023-06-05
- C#多线程的ResetAbort()方法 2023-05-31