Excelからデータベースにデータをインポートしようとしています。私はhttp://www.davidhayden.com/blog/dave/archive/2006/05/31/2976.aspxから次のコードを得ました。私はx86アーキテクチャを持っているので、それは問題ではありません。私がコードを実行すると、プログラムはconnection.Open();
に 'The。Microsoft .Jet.OLEDB.4.0'プロバイダがローカルマシンに登録されていないことを示します。何か案は ?'Microsoft .Jet.OLEDB.4.0'プロバイダがローカルマシンに登録されていません
string excelConnectionString = @"Provider=Microsoft
.Jet.OLEDB.4.0;Data Source=C://suc.xls;Extended
Properties=""Excel 8.0;HDR=YES;""";
// Create Connection to Excel Workbook
using (OleDbConnection connection =
new OleDbConnection(excelConnectionString))
{
OleDbCommand command = new OleDbCommand
("Select ID,Data FROM [Data$]", connection);
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);
}
}
}
私は32bitマシンを使用していることを指定しました – Alex
ありがとうございます。それは私のために働いた。 – Narnian