Create,Compact/Compress and Convert MDB database using ASP/VBScript
There are two ways to create MDB database using VBScript. 1. Create MDB by ADO (ADOX): The following code is for creating a new Access2000 database by ADO and for the code to execute MDAC2.0 is required to be installed in the machine. const jet4x = 5 DoCreateNewMDB “F:\MyAccessDB2000.MDB”, Jet4x Sub DoCreateNewMDB(FileName, Format) Dim Catalog […]