Create MDB from VB .Net

  • Thread starter Thread starter Vittorio Pavesi
  • Start date Start date
V

Vittorio Pavesi

Hello,
anyone know how to create an access database from vb .net ?
Thanks

Vittorio
 
Hi Vittorio,

A complete empty database, however when you have that you can go on with
ADO.Net

I hope this helps?

Cor

\\\set a reference to COM adox ext 2.x for dll and security
Dim catNewDB As New ADOX.Catalog
catNewDB.Create("Provider=Microsoft.Jet.OLEDB.4.0;" & "Data
Source=C:\db1.mdb")
///
 
Back
Top