Import Excel file into Microsoft SQL Server using C#(使用 C# 将 Excel 文件导入 Microsoft SQL Server)
问题描述
我有一个 C# 程序,我想将 Excel 文件导入 Microsoft SQL Server 2008 R2.
I have a C# program that I want to import an Excel file into Microsoft SQL Server 2008 R2.
谁能给我一个链接或教程,我可以完全理解如何做到这一点?
Can someone give me a link or tutorial where I can fully understand on how to this?
我已经做了很长时间了,我真的不知道如何实现它.
I've been doing this for a long time and I really don't have an idea on how to implement this.
请帮忙.谢谢.
推荐答案
string excelConnectionString = @"Provider=Microsoft
.Jet.OLEDB.4.0;Data Source=Book1.xls;Extended
Properties=""Excel 8.0;HDR=YES;""";
//创建到 Excel 工作簿的连接
我们可以像这样将excel导入sql server
We can Import excel to sql server like this
使用(OleDbConnection 连接 =新的 OleDbConnection(excelConnectionString)){
OleDbCommand 命令 = 新的 OleDbCommand("Select ID,Data FROM [Data$]", 连接);
connection.Open();
`// Create DbDataReader to Data Worksheet `
using (DbDataReader dr = command.ExecuteReader())
{
// SQL Server Connection String
string sqlConnectionString = "Data Source=.;
Initial Catalog=Test;Integrated Security=True";
// Bulk Copy to SQL Server
using (SqlBulkCopy bulkCopy =
new SqlBulkCopy(sqlConnectionString))
{
bulkCopy.DestinationTableName = "ExcelData";
bulkCopy.WriteToServer(dr);
}
这篇关于使用 C# 将 Excel 文件导入 Microsoft SQL Server的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 C# 将 Excel 文件导入 Microsoft SQL Server


- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 输入按键事件处理程序 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04