数据库无法连接,紧急救助,在线等!
网站在空间运行是正常的,可是我下载到本地以后运行出现的问题是:Error occured:
Error: VIVI_HY_ADMIN\DataBase\%32#HYBTXda#%#ta.mdb DataBase is not exist !
发现是程序中这段的问题:
DBTruePath =DBPathStr
With Response
' 判断ACCRESS的数据库路径
If Lcase(DBSort)="accesss" and IsDebug = True Then
OKTemp=False
If IsFile(DBTruePath) = True Then
DBTruePath=DBTruePath
OKTemp=True
end if
If IsFile(AdminPathStr1&DBPathStr) = True Then
DBTruePath=AdminPathStr1&DBPathStr
OKTemp=True
end if
If IsFile(AdminPathStr2&DBPathStr) = True Then
DBTruePath=AdminPathStr2&DBPathStr
OKTemp=True
end if
If OKTemp = False Then
ShowError("<Li>Error: "&DBTruePath&"DataBase is not exist !</Li>")
Response.end
End If
End if
DBTruePath = Request.ServerVariables("APPL_PHYSICAL_PATH")&DBTruePath '取得物理路径
明明数据库是存在的,而且我可以直接打开的,不知道这段程序起什么作用,为什么在空间上是好的,而到了本机却会出问题呢?麻烦帮助一下,谢谢!