Click here to Skip to main content
15,885,365 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How can i connect MS-Access database from VB.Net application in my 64 bit machine?

I can not connect with MS Access database (.mdb) from my vb.net application. My machine is 64 bit and OS Windows 7. I have use the connection string as provider "Provider=Microsoft.Jet.OLEDB.4.0;Data Source= D:\Setup.mdb"
Posted

Try:
Compile your project to X86 CPU and Install 32 bit oledb provider.
 
Share this answer
 
The "Microsoft.Jet.OLEDB.4.0" provider is 32-bit only. 64-bit applications cannot use it.

You either have to use a different provider that is 64-bit compatible, namely "Microsoft.ACE.OLEDB.12.0" (Access 2007 and higher), or recompile your app to target x86 only.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900