设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

返回列表 发新帖
查看: 2114|回复: 5
打印 上一主题 下一主题

[与其它组件] 关闭时压缩数据库!的重大问题

[复制链接]
jingyingjingyin 该用户已被删除
跳转到指定楼层
1#
发表于 2005-7-12 22:08:00 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
提示: 作者被禁止或删除 内容自动屏蔽
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 分享淘帖 订阅订阅
jingyingjingyin 该用户已被删除
2#
发表于 2005-7-12 22:55:00 | 只看该作者
提示: 作者被禁止或删除 内容自动屏蔽
3#
发表于 2005-7-15 01:29:00 | 只看该作者
以下是 DVBBS 7 后台用自定义函数压缩数据库代码,以供参考'====================压缩数据库 =========================

sub CompressData()If IsSqlDataBase = 1 Then

SQLUserReadme()

Exit Sub

End If

%>

<table border="0"  cellspacing="1" cellpadding="5" height="1" align=center width="95%" class="tableBorder">

<form action="Admin_data.asp?action=CompressData" method="post">

<tr>

<td class="forumrow" height=25><b>注意:</b><br>输入数据库所在相对路径,并且输入数据库名称(正在使用中数据库不能压缩,请选择备份数据库进行压缩操作) </td>

</tr>

<tr>

<td class="forumrow">压缩数据库:<input type="text" name="dbpath" value=Data\dvbbs7.MDB>&nbsp;

<input type="submit" value="开始压缩"></td>

</tr>

<tr>

<td class="forumrow"><input type="checkbox" name="boolIs97" value="True">如果使用 Access 97 数据库请选择

(默认为 Access 2000 数据库)<br><br></td>

</tr>

<form>

</table>

<%

dim dbpath,boolIs97

dbpath = request("dbpath")

boolIs97 = request("boolIs97")If dbpath <> "" Then

dbpath = server.mappath(dbpath)

response.write(CompactDB(dbpath,boolIs97))

End Ifend sub'=====================压缩参数=========================

Function CompactDB(dbPath, boolIs97)

Dim fso, Engine, strDBPath,JET_3X

strDBPath = left(dbPath,instrrev(DBPath,"\"))

Set fso = CreateObject("Scripting.FileSystemObject")If fso.FileExists(dbPath) Then

fso.CopyFile dbpath,strDBPath & "temp.mdb"

Set Engine = CreateObject("JRO.JetEngine") If boolIs97 = "True" Then

  Engine.CompactDatabase "rovider=Microsoft.Jet.OLEDB.4.0;Data Source=" & strDBPath & "temp.mdb", _

  "rovider=Microsoft.Jet.OLEDB.4.0;Data Source=" & strDBPath & "temp1.mdb;" _

  & "Jet OLEDB:Engine Type=" & JET_3X

Else

  Engine.CompactDatabase "rovider=Microsoft.Jet.OLEDB.4.0;Data Source=" & strDBPath & "temp.mdb", _

  "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & strDBPath & "temp1.mdb"

End Iffso.CopyFile strDBPath & "temp1.mdb",dbpath

fso.DeleteFile(strDBPath & "temp.mdb")

fso.DeleteFile(strDBPath & "temp1.mdb")

Set fso = nothing

Set Engine = nothing CompactDB = "你的数据库, " & dbpath & ", 已经压缩成功!" & vbCrLfElse

CompactDB = "数据库名称或路径不正确. 请重试!" & vbCrLf

End IfEnd Function
4#
发表于 2005-7-15 18:12:00 | 只看该作者
[em05][em05]
5#
发表于 2008-11-24 15:17:58 | 只看该作者

学习!!!

学习!!!
6#
发表于 2010-12-25 20:10:49 | 只看该作者
学习下
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|站长邮箱|小黑屋|手机版|Office中国/Access中国 ( 粤ICP备10043721号-1 )  

GMT+8, 2024-11-17 01:52 , Processed in 0.079955 second(s), 28 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表