Create a New JET Database

Article Tools

The following code demonstrates how to create a new database named New_db.mdb.

Set oConn = CreateObject( "ADOX.Catalog" )

oConn.Create "Provider = Microsoft.Jet.OLEDB.4.0; " & _
        "Data Source = new_db.mdb"
Previous postCreate a Table in a JET Database Next postAdd a New Record to a Table

Related Posts

Post Your Comment

You must be logged in to post a comment.