Create a New JET Database
Posted by admin - Apr 1, 2008 ADODB, Articles, Dani Vainstein, QTips 0 0 Views : 208 Receive Updates For This Category
Article Tools
- Print this page
- Add Comment
- Send to Friend
- Last Updated on :
Jul 16, 2011
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"


