ASP在線壓縮ACCESS數據庫原理很簡單:利用JRO.JetEngine的壓縮功能建立一個新的數據庫文件,然后把原來的刪掉、替換!既然這樣,壓縮程序只需幾行就ok了!
把下面的代碼保存為**.asp,數據庫文件(db.md)放在相同目錄下,執行asp搞定!
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<% oldDB = server.mappath( "db.mdb" ) '更改數據庫地址 newDB = server.mappath( "db_new.mdb" ) '生成臨時文件 Set FSO = Server.CreateObject( "Scripting.FileSystemObject" ) Set Engine = Server.CreateObject( "JRO.JetEngine" ) prov = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" Engine.CompactDatabase prov & OldDB, prov & newDB set Engine = nothing FSO.DeleteFile oldDB '刪除臨時文件 FSO.MoveFile newDB, oldDB set FSO = Nothing response.write "OK" %> |
下面是一個ASP在線壓縮ACCESS數據庫的封裝函數
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
Function CompactDB(dbPath, boolIs97) Dim fso, Engine, strDBPath strDBPath = left(dbPath,instrrev(DBPath,"\")) Set fso = CreateObject( "Scripting.FileSystemObject" ) If fso.FileExists(dbPath) Then Set Engine = CreateObject( "JRO.JetEngine" ) On Error Resume Next If boolIs97 = "True" Then Engine.CompactDatabase "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & dbpath, _ "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & strDBPath & "temp.mdb;" _ & "Jet OLEDB:Engine Type=" & JET_3X Else Engine.CompactDatabase "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & dbpath, _ "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & strDBPath & "temp.mdb" End If If Err Then response.write "<script LANGUAGE='javascript'>alert('無法識別數據庫類型.');history.go(-1);</script>" response.end end if fso.CopyFile strDBPath & "temp.mdb" ,dbpath fso.DeleteFile(strDBPath & "temp.mdb" ) Set fso = nothing Set Engine = nothing CompactDB = "<script>alert('壓縮成功!');javascript:history.go(-1);</script>" Else CompactDB = "<script>alert('找不到數據庫!\n請檢查數據庫路徑是否輸入錯誤!');history.back();</script>" End If End Function |
總結
到此這篇關于ASP在線壓縮access數據庫的方法的文章就介紹到這了,更多相關ASP在線壓縮access數據庫內容請搜索服務器之家以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持服務器之家!
原文鏈接:http://www.qdxw.net/xwhtml/664.html