在VB中压缩ACCESS数据库
2024-07-21 02:12:24
供稿:网友
如果您在access数据库、access项目中删除数据或对象,可能会产生碎片并导致磁盘空间使用效率的降低。同时,数据库文件的大小并未减小,而是不断的增大,直至您的硬盘没有空间。有没有好的处理方法呢?其实,在access中可以对数据库进行压缩优化以提升access数据库和access项目的性能,这样的压缩处理的实质是复制该文件,并重新组织文件在磁盘上的存储方式。但是,在access项目中进行这样的压缩不会影响到数据库对象(例如表或视图),因为它们是存储在microsoft sql server数据库中而不是在access项目本身中。同样,这样的压缩也不会影响到access项目中的自动编号。在access数据库中,如果已经从表的末尾删除了记录,压缩该数据库是就会重新设置自动编号值。添加的下一个记录的自动编号值将会比表中没有删除的最后记录的自动编号值大一。
下面介绍如何在vb中用一个compactjetdatabase过程实现对access数据库文件的压缩处理,在这个过程中有一个可选参数,就是在压缩前你是否需要把原有的数据库文件备份到临时目录(true或false)。我用此办法使21.6mb的数据库压缩到仅仅300kb。
‘这些代码可放在模块中,在其他窗体也使用
public declare function gettemppath lib "kernel32" alias _
"gettemppatha" (byval nbufferlength as long, byval lpbuffer as string) as long
public const max_path = 260
public sub compactjetdatabase(location as string, optional backuporiginal as boolean = true)
on error goto compacterr
dim strbackupfile as string
dim strtempfile as string
‘检查数据库文件是否存在
if len(dir(location)) then
‘如果需要备份就执行备份
if backuporiginal = true then
strbackupfile = gettemporarypath & "backup.mdb"
if len(dir(strbackupfile)) then kill strbackupfile
filecopy location, strbackupfile
end if
‘创建临时文件名
strtempfile = gettemporarypath & "temp.mdb"
if len(dir(strtempfile)) then kill strtempfile
‘通过dbengine压缩数据库文件
dbengine.compactdatabase location, strtempfile
‘删除原来的数据库文件
kill location
‘拷贝刚刚压缩过临时数据库文件至原来位置
filecopy strtempfile, location
‘删除临时文件
kill strtempfile
else
end if
compacterr:
exit sub
end sub
public function gettemporarypath()
dim strfolder as string
dim lngresult as long
strfolder = string(max_path, 0)
lngresult = gettemppath(max_path, strfolder)
if lngresult <> 0 then
gettemporarypath = left(strfolder, instr(strfolder, chr(0)) - 1)
else
gettemporarypath = ""
end if
end function
以后您在使用access数据库时可以尝试进行这样的压缩,您应该会发现我说的没有错。