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")
///
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top