您好,登錄后才能下訂單哦!
VB.NET中怎么實(shí)現(xiàn)數(shù)據(jù)庫壓縮,針對這個(gè)問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡單易行的方法。
當(dāng)我們往數(shù)據(jù)庫中添加數(shù)據(jù),然后刪除,如此反復(fù),數(shù)據(jù)庫就會(huì)變得很大,這樣就需要對其進(jìn)行壓縮
下面的函數(shù)可以實(shí)現(xiàn)VB.NET數(shù)據(jù)庫壓縮
''' < summary>
''' 壓縮數(shù)據(jù)庫
''' < /summary>
''' < remarks>< /remarks>
Private Sub CompactDatabase
(ByVal pFilePath As String)
Dim pFileName As String
pFileName = GetFileName(pFilePath)
'檢查數(shù)據(jù)庫文件是否存在
If Len(Dir(pFilePath)) Then
' 如果需要備份就執(zhí)行備份
If MessageBox.Show("是否備份?",
"測試", MessageBoxButtons.YesNo,
MessageBoxIcon.Question) =
Windows.Forms.DialogResult.Yes Then
wsManageGlobalParam.g_ManageFile
Control.SaveFileDialogFile.Title =
"選擇保存目錄"
wsManageGlobalParam.g_ManageFile
Control.SaveFileDialogFile.FileName
= pFileName
Dim pFilter As String =
GetFileExtName(pFileName)
wsManageGlobalParam.g_ManageFile
Control.SaveFileDialogFile.Filter =
"文件(*." & pFilter & ")|*." & pFilter
wsManageGlobalParam.g_ManageFileControl.
SaveFileDialogFile.ShowDialog()
Dim r As DialogResult = wsManage
GlobalParam.g_ManageFileControl.
SaveFileDialogFile.ShowDialog()
If r = Windows.Forms.DialogResult.
Cancel Then
Exit Sub
End If
FileCopy(pFilePath, wsManageGlobalParam.
g_ManageFileControl.SaveFileDialog
File.FileName)
End If
wsDataSet.SetNothing()
Dim jro As JRO.JetEngine
Dim pTempPath As String = GetTempPath()
jro = New JRO.JetEngine()
jro.CompactDatabase(wsManageGlobalParam.
g_Connection & pFilePath, wsManage
GlobalParam.g_Connection & pTempPath
& "\" & pFileName)
Kill(pFilePath)
FileCopy(pTempPath & "\" & pFileName,
pFilePath)
Kill(pTempPath & "\" & pFileName)
End If
關(guān)于VB.NET中怎么實(shí)現(xiàn)數(shù)據(jù)庫壓縮問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識(shí)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。