我正在使用以下方法阅读应用程序中excel表的内容:
OleDbConnection con = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + fileName + ";Extended Properties=Excel 8.0"); _myDataSet = new DataSet(); OleDbDataAdapter myCommand = new OleDbDataAdapter(" SELECT * FROM [" + "My Sheet" + "$]",con); myCommand.Fill(_myDataSet); con.Close();
这在64位系统中失败并出现错误:
Microsoft.Jet.OLEDB.4.0′ provider is
not registered on the local machine
如何在64位机器上工作?
解决方法
Microsoft.Jet.OLEDB没有64位版本,只有32位.将您的应用程序编译为32位(平台目标:构建选项中的x86).