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
基础教程推荐
- c# Math.Sqrt 实现 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- MS Visual Studio .NET 的替代品 2022-01-01
- 将 XML 转换为通用列表 2022-01-01