The access database is a file database. When creating it, you need to specify the file it wants to use as follows:
Copy the code code as follows:
Set Catalog_object= Server.CreateObject(ADOX.Catalog)
Catalog_object.Create(Provider=Microsoft.Jet.OLEDB.4.0;Data Source= & Server.MapPath(/vevb.com.mdb))
You can create an access database in two simple sentences. In the create function, you only need to provide the path to the database file.
The access database just created is an empty database with no tables in it.