I cannot open an Excel distribution sheet with .NET on an x64 server using the following connection string
"Provider = Microsoft.Jet.OLEDB.4.0; Data Source =" + filePath + "; Advanced Properties = Excel 8.0;"
I get that the provider "Microsoft.Jet.OLEDB.4.0" is not registered on the local computer.
I installed the 2007 Office system component: data connection components and tried using Microsoft.ACE.OLEDB.12.0 and this connection string
"Provider = Microsoft.ACE.OLEDB.12.0; Data Source =" + filePath + "; Advanced Properties = Excel 8.0;"
and got "Microsoft.ACE.OLEDB.12.0 Provider" is not registered on the local computer. "
I searched Google with the only answer being a 64-bit problem, who has an idea how to fix this?
source
share