Short and sweet:
- app works on x86 machine but not on x64 (tried on a 2008 Server and a Windows 8)
- Microsoft Access Database Engine 2010 already installed (also have Microsoft Office 2007 Access Database Engine installed)
- MS Office not installed
- confirmed the existence of C:\Program Files (x86)\Common Files\microsoft shared\OFFICE12\ACEOLEDB.DLL
Code:
string conn = "Provider=SQLOLEDB;Data Source=localhost;Initial Catalog=Northwind;Integrated Security=SSPI;";
OleDbConnection _connOle = new OleDbConnection(conn);
Any ideas what I should do to get this app to work on the x64 machines? Thanks!