这是我从excel表读取列并保存到我的Visual Studio 2010控制台应用程序中正常工作的数据表的代码,但是当我在使用Visual Studio 2008的SSIS项目中使用此代码时,我使用了SSIS包中的确切代码然后我收到错误The Microsoft.ACE.OLEDB.12.0 provider is not registered on the local Machine
我是SSIS的新手,我的其他SSIS VS2008项目工作正常,但在这一项中我必须从excel读取数据,所以我使用的是现有代码,但收到此错误。
//excel to data table
public System.Data.DataTable exceltodatatable()
{
System.Data.DataTable myTable = null; ;
try
{
System.Data.OleDb.OleDbConnection MyConnection;
System.Data.DataSet DtSet;
System.Data.OleDb.OleDbDataAdapter MyCommand;
// string path = @"D:\projects\excel\spec.xlsx";
//string connStr = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + path + ";Extended Properties=Excel 12.0;";
MyConnection = new System.Data.OleDb.OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source='D:\\projects\\excel_tEST\\ConsoleApplication13\\ConsoleApplication13\\bin\\Debug\\excel\\clublist.xlsx';Extended Properties=Excel 12.0;");
MyCommand = new System.Data.OleDb.OleDbDataAdapter("select * from [Sheet1$]", MyConnection);
MyCommand.TableMappings.Add("Table", "TestTable");
DtSet = new System.Data.DataSet();
MyCommand.Fill(DtSet);
myTable = DtSet.Tables[0];
MyConnection.Close();
myTable.Columns.Add("someNewColumn", typeof(string));
int i = 0;
foreach (DataRow drOutput in myTable.Rows)
{
// drOutput["Preferred Version"] = drOutput["Preferred Version"].ToString().Replace("**", "yes");
//your remaining codes
int count = drOutput[0].ToString().Length;
if (count <= 24)
{
myTable.Rows[i][1] = "3"; ;
}
else
{
myTable.Rows[i][1] = "4"; ;
}
i++;
}
}
catch (Exception ex)
{
//MessageBox.Show(ex.ToString());
}
// myTable.Columns.Remove("Author");
return myTable;
}
这是我错误的Screenshot。有什么帮助吗?
答案 0 :(得分:1)
这是OLEDB驱动程序无法找到您指定的提供程序时给出的错误。鉴于它在Visual Studio中运行(我假设在同一台计算机上),您可能会研究是否将应用程序构建为64位而不是32位。您安装的提供程序可能是x86,因此必须从x86应用程序调用。
尝试将运行时设置为32位(follow this guide)并查看是否可以修复错误。