日韩高清在线免费不卡性生活毛片,亚洲av综合第一页,亚洲美女被操,一级无遮挡理论片

綠色資源網(wǎng):您身邊最放心的安全下載站! 最新軟件|熱門排行|軟件分類|軟件專題|廠商大全

綠色資源網(wǎng)

技術(shù)教程
您的位置:首頁數(shù)據(jù)庫類Access → ASP壓縮ACCESS數(shù)據(jù)庫實(shí)例

ASP壓縮ACCESS數(shù)據(jù)庫實(shí)例

我要評論 2009/12/16 23:01:29 來源:綠色資源網(wǎng) 編輯:綠色資源站 [ ] 評論:0 點(diǎn)擊:341次

用ACCESS數(shù)據(jù)庫開發(fā)的網(wǎng)站,當(dāng)隨著網(wǎng)站數(shù)據(jù)量的不斷增長.數(shù)據(jù)庫的容量也是不斷加大.這讓ASP程序速度直線下降.如果才能讓ACCESS數(shù)據(jù)庫容量盡可能小.我們要對它進(jìn)行壓縮處理.

下面是我整理后的源代碼,復(fù)制另存為compact.asp并上傳到數(shù)據(jù)庫所在目錄即可正常使用。

以下為引用的內(nèi)容:

<html>
<head>
<title>ACCESS數(shù)據(jù)庫壓縮程序-網(wǎng)頁制作教程</title>
</head>
<body bgcolor="e0f8ef">
<div>
<div align="center"><font color="#3300FF">
<b><font size="5">通用ACCESS數(shù)據(jù)庫在線壓縮程序</font></b></font><br>
</div>
<div>
<br>

本程序其實(shí)是通過FSO權(quán)限和JET引擎連接,

因此在使用之前請確認(rèn)你的服務(wù)器支持FSO

(filesystemobject)權(quán)限并安裝的ACCESS最新驅(qū)動(dòng)!

從安全出發(fā),請?jiān)趬嚎s之前備份原始數(shù)據(jù)庫!

以下為引用的內(nèi)容:

</div><br>
<div align="center">運(yùn)行環(huán)境:在WIN98SE+PWS、WIN2000+IIS5.0 <br>
<%
Const JET_3X = 4
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")
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
fso.CopyFile strDBPath & "temp.mdb",dbpath
fso.DeleteFile(strDBPath & "temp.mdb")
Set fso = nothing
Set Engine = nothing
CompactDB = "你的數(shù)據(jù)庫, " & dbpath & ", 已經(jīng)被壓縮" & vbCrLf
Else
CompactDB = "你輸入的數(shù)據(jù)庫路徑或名稱未找到,請重試" & vbCrLf
End If
End Function
%>
</div>
</div>
<form name="compact" method="post" action="compact.asp">
<div align="center">
<font size="2"><b><font color="#FF0000">
壓縮選項(xiàng),請仔細(xì)填寫!</font></b><br>
<br>

輸入數(shù)據(jù)庫全稱:

以下為引用的內(nèi)容:

<input type="text" name="dbpath">
(包括擴(kuò)展名,如MDB、ASA、ASP等)<br>
<br>
<input type="checkbox" name="boolIs97" value="True">
檢查是否為ACCESS97數(shù)據(jù)庫<br>
(默認(rèn)為ACCESS2000的數(shù)據(jù)庫)<br>
<br>
<input type="submit" name="submit" value="確認(rèn)壓縮">
</font></div>
</form>
<div align="center"><font size="2">
<%
Dim dbpath,boolIs97
dbpath = request("dbpath")
boolIs97 = request("boolIs97")
If dbparesponse.write(CompactDB(dbpath,boolIs97))
End If
%>
<br>
</font></div></body></html>th <> "" Then
dbpath = server.mappath(dbpath)

注意:由于本例實(shí)用的是FSO操作ACCESS文件,所以要使用本例請確保你的服務(wù)器支持FSO支持.

關(guān)鍵詞:ASP,ACCESS,數(shù)據(jù)庫

閱讀本文后您有什么感想? 已有 人給出評價(jià)!

  • 1 歡迎喜歡
  • 1 白癡
  • 1 拜托
  • 1 哇
  • 1 加油
  • 1 鄙視