Joa.know
Joa.know

Reputation: 37

Databinding in VB.NET Modify Database Connection

Anybody here have an idea how to modify connection from database using databinding in VB.NET if I am going to copy the file project and then save it to another computers and run. I am using microsoft access database, the error occurs is microsoft.ace.oledb.12.0 provider is not registered on the local machine. How to fix this problem so that every time i need to copy my project to another computer the error will not occur again.

Thanks in advance.

Upvotes: 1

Views: 348

Answers (1)

ron tornambe
ron tornambe

Reputation: 10780

The Microsoft.ACE.OLEDB.12.0 driver is not installed on vanilla Windows systems. If you use an installation program you can craft ways to install it or alert the user to install it manually. Here's a link to the redistributable download: http://www.microsoft.com/en-us/download/details.aspx?displaylang=en&id=13255

Upvotes: 1

Related Questions