![]() |
|||
Integrate Ms Access in VB.NET
By: rekha singh | 20 Apr 2010 4:42 pm
If u wanna integrate Ms Access in VB.NET , all what you need it's the ConnectionString :
dim con as new oledbconnection("Provider=Microsoft.Jet.OLEDB.4.0; data source=...")
but before this u should import the Oledb class by :
Imports System.Data.OleDb
and the rest is the same like SQL server.
Ex : Dim cmd As New OleDbCommand("select * from [client]", con) |
