ASP串連資料庫的全能代碼_應用技巧
來源:互聯網
上載者:User
ASP串連資料庫的全能代碼
'解決了ACCESS資料庫路徑的問題!
'採用DBType=0或DBType=1來區分AC庫還是MSSQL庫
'具體採用AC庫時應注意的事項,請看程式說明
--------------------------------------------------------------------------------
Dim DBType,Conn,StrConn
DBType=0 '0為Access資料庫,1為MSSQL資料庫
If(DBType=0) Then
'********************************ACCESS資料庫*************************************
Dim DbFolderName,DbFolder_Path,SiteFolder
DbFolderName="ArticleData" '資料庫所在檔案夾名稱
DbFolder_Path = Server.MapPath(DbFolderName) '資料庫所在路徑
SiteFolder="Article" '系統所在根目錄名稱
If Session("RootDir") = "" Then
Session("RootDir") = Mid(DbFolder_Path, 1, InStr(1,DbFolder_Path,SiteFolder,1) -1) & SiteFolder
End if
Set Conn = Server.CreateObject("Adodb.Connection")
StrConn = "Driver={Microsoft Access Driver (*.mdb)};DBQ=" & Session("RootDir") & "\"& DbFolderName & "\Data.mdb" '串連到資料庫
Conn.Open StrConn
'**********************************************************************************
ElseIf(DBType=1) Then
'*****************************MSSQL SERVER資料庫*************************************
Dim DBUserID,DBPassWord,DBName,DBIP
'修改以下資訊以適合你的網站
DBUserID="sa" '資料庫登陸名
DBPassWord="" '資料庫密碼
DBName="dbname" '資料庫名稱
DBIP="local" '資料庫所在地址,如果是本機資料庫則為:(local)
Set Conn=Server.CreateObject("Adodb.Connection")
StrConn = "PROVIDER=SQLOLEDB.1;Data Source="&DBIP&";Initial Catalog="&DBName&";Persist Security Info=True;User ID="&DBUserID&";Password="&DBPassWord&";Connect Timeout=30"
Conn.Open StrConn
'**********************************************************************************
Else
'***********************資料庫設定錯誤*************************************************
Response.Write"資料庫設定錯誤,請聯絡管理員!"
Response.End
End If
'Response.Write StrConn