views:

38

answers:

3

how would i create edit read use table in ms access via vb.net please give me some help

A: 

You must create an ODBC connection in your VB script and then you can send SQL commands to the Access database.

See here for some code to get you started.

Aaron Digulla
+2  A: 

You should use ADO.Net and System.Data.OleDb (OleDbConnection, OleDbCommand, OleDbDataAdapter, OleDbDataReader) and even DataSets.

See this articlefor sample code.

Jojo Sardez
A: 

There is a very clear tutorial to connect, retrieve, display, and update Ms Access database here..

manuel