how do i connect VB 2008 application to microsoft Access 2003 database
connecting VB 2008 with ms access database
Collapse
X
-
Use OLEDBConnection . But you'll need the proper syntax for the connection string.Originally posted by fanocehow do i connect VB 2008 application to microsoft Access 2003 database
Visit then Bookmark this site: ConnectionStrin gs.Com
Here is the connectionStrin g example. Of course, replace the database (mdb) with your mdb:
Code:Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\mydatabase.mdb;User Id=admin;Password=;
-
Nice site ^ ^ .Originally posted by VBWheatiesVisit then Bookmark this site: ConnectionStrin gs.ComComment
-
Comment