Insert entire DataTable into database at once instead of row by row?(一次将整个 DataTable 插入数据库而不是逐行插入数据库?)
问题描述
我有一个 DataTable,需要将整个内容推送到数据库表中.
I have a DataTable and need the entire thing pushed to a Database table.
我可以用一个 foreach 把它全部放在那里,一次插入每一行.由于有几千行,这会非常缓慢.
I can get it all in there with a foreach and inserting each row at a time. This goes very slow though since there are a few thousand rows.
有没有什么方法可以更快地一次性完成整个数据表?
Is there any way to do the entire datatable at once that might be faster?
DataTable 的列数少于 SQL 表.其余的应为空.
The DataTable has less columns than the SQL table. the rest of them should be left NULL.
推荐答案
我发现 SqlBulkCopy 是一种简单的方法,并且不需要在 SQL Server 中编写存储过程.
I discovered SqlBulkCopy is an easy way to do this, and does not require a stored procedure to be written in SQL Server.
这是我如何实现它的示例:
Here is an example of how I implemented it:
// take note of SqlBulkCopyOptions.KeepIdentity , you may or may not want to use this for your situation.
using (var bulkCopy = new SqlBulkCopy(_connection.ConnectionString, SqlBulkCopyOptions.KeepIdentity))
{
// my DataTable column names match my SQL Column names, so I simply made this loop. However if your column names don't match, just pass in which datatable name matches the SQL column name in Column Mappings
foreach (DataColumn col in table.Columns)
{
bulkCopy.ColumnMappings.Add(col.ColumnName, col.ColumnName);
}
bulkCopy.BulkCopyTimeout = 600;
bulkCopy.DestinationTableName = destinationTableName;
bulkCopy.WriteToServer(table);
}
这篇关于一次将整个 DataTable 插入数据库而不是逐行插入数据库?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:一次将整个 DataTable 插入数据库而不是逐行插入数据库?
基础教程推荐
- 获取C#保存对话框的文件路径 2022-01-01
- Mono https webrequest 失败并显示“身份验证或解密失败" 2022-01-01
- 从 C# 控制相机设备 2022-01-01
- SonarQube C# 分析失败“不是指针的有效行偏移" 2022-01-01
- 重新排序 WPF TabControl 中的选项卡 2022-01-01
- 更新 Visual Studio 中的 DataSet 结构以匹配新的 SQL 数据库结构 2022-01-01
- C# 9 新特性——record的相关总结 2023-04-03
- 将数据集转换为列表 2022-01-01
- 在 VB6 或经典 ASP 中使用 .NET 2022-01-01
- 如果条件可以为空 2022-01-01
