1. 程式人生 > >通過asp程式來建立access資料庫

通過asp程式來建立access資料庫

access資料庫屬於“檔案型資料庫”,建立時需要指定它要使用的檔案,如下所示:

Set Catalog_object= Server.CreateObject("ADOX.Catalog")
Catalog_object.Create("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath("/資料庫.mdb"))

簡單的兩句話就可以創建出access資料庫,在create函式中你只需要提供“資料庫檔案的路徑”。

剛建立的access資料庫是個“空庫”,其中沒有任何表