Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to create Microsoft Access Database Programmatically?

How-to

How to create Microsoft Access Database Programmatically?

by  PankajBanga  Posted    (Edited  )

Neither ADO.NET nor ActiveX Data Object (ADO) provides the means to create Microsoft Access Database. However, we can create Access databases by using the Microsoft Jet OLE DB Provider and Microsoft ADO Ext. 2.7 for DDL and Security (ADOX) with the COM Interop layer.

1. Open a new Visual Basic .NET Windows application.
2. In Solution Explorer, right click the References node, and then click Add References.
3. In the Add References dialog box, click COM tab, click Microsoft ADO Ext. 2.7 for DDL and Security, click Select to add it to the Selected Components section, and then click OK.
4. Make sure to add reference to ADOX class library namespace (Imports ADOX).
5. Change the path to the new .mdb file as appropriate.
6. Make sure the folder provided in the path exists. If path name is not specified, the database will be created in your application folder.
7. Create a Button control named btnCreateDatabase on the form and copy the following code in the click event of the button:

Imports ADOX

Private Sub onCreateDatabaseClick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCreateDatabase.Click
Dim cat As New Catalog()

Try
'Create NewDB Database.
'Change the path to the new .mdb file as appropriate. Make sure the folder
'provided in the path exists. If you path name is not specified, the
'database will be created in your application folder.
cat.Create("Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=C:\NewDB.mdb")

MessageBox.Show("Database Created.", "Message", MessageBoxButtons.OK, MessageBoxIcon.Information)

Catch Excep As System.Runtime.InteropServices.COMException
MessageBox.Show(Excep.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)

Finally
cat = Nothing
End Try
End Sub
Register to rate this FAQ  : BAD 1 2 3 4 5 6 7 8 9 10 GOOD
Please Note: 1 is Bad, 10 is Good :-)

Part and Inventory Search

Back
Top