I am reading the contents of an excel sheet in my application using:
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();
This does not work on 64-bit systems with an error:
Microsoft.Jet.OLEDB.4.0 'provider is not registered on the local machine
How to make this work on 64-bit machines?
devnull
source share