Writing to Access w/VB.NET

jpetter7

Member
Joined
Jul 20, 2004
Messages
16
Programming Experience
Beginner
Can someone please tell me how to establish a connection to an Access DB from a vb.net form. I have tried to do this from server explorer, but I don't have the option to select MS ACCESS. I get sql server, oracle, and several other options, but Access isnt one of them. Thank you in advance!
 
You can do this by creating a new OleDbConnection and OleDbCommand fromt he tools menu on the left. Then with the OleDbConnection you will be able to select an Access database. Make sure the database type is set to Microsoft Jet
 
Back
Top