導航:首頁 > 編程大全 > asp連接oracle資料庫語句

asp連接oracle資料庫語句

發布時間:2023-12-10 03:10:25

㈠ ASP連接資料庫的連接方法

access的連接字元串
<%
db="資料庫路徑"
connstr="DBQ="+server.mappath(""&db&"")+";DefaultDir=;DRIVER={Microsoft Access Driver (*.mdb)};"
on error resume next
set conn=server.createobject("ADODB.CONNECTION")
conn.open connstr
if err then
response.write err.discription
Err.Clear
conn.close
set conn=nothing
Response.Write "資料庫連接出錯,請檢查連接字元串。"
Response.End
end if
%>
sqlser連接
<%
Sql_Server = "伺服器地址"
Sql_User = "資料庫賬號"
Sql_Pass = "密碼"
Sql_Data = "資料庫名"

dim Conn,connstr
connstr = "PROVIDER=SQLNCLI;DATA SOURCE="&Sql_Server&";UID="&Sql_User&";PWD="&Sql_Pass&";DATABASE="&Sql_Data
set Conn = server.createobject("ADODB.connection")
Conn.open connstr
if err then
response.write err.discription
Err.Clear
conn.close
set conn=nothing
Response.Write "資料庫連接出錯,請檢查連接字元串。"
Response.End
end if
%>

閱讀全文

與asp連接oracle資料庫語句相關的資料

熱點內容
狼蛛鼠找不到配置文件 瀏覽:845
土豪金編程器軟體打不開什麼原因 瀏覽:957
備分數據換SD片是什麼意思 瀏覽:666
jmp數據分析時主要看哪些參數 瀏覽:59
js循環 瀏覽:505
大數據大二學生可以做哪些實習 瀏覽:567
微信上沒有小程序選項 瀏覽:839
電腦桌面的excel文件不顯示圖標 瀏覽:992
ios無法綁定支付寶支付密碼 瀏覽:6
linux文件系統叫什麼 瀏覽:721
在wps中文件找不到了 瀏覽:59
大數據涉及哪些行業 瀏覽:215
系統印象文件找不到也無法刪除 瀏覽:594
ps文件線段不顯示 瀏覽:129
win10主題清華同方 瀏覽:114
文件5weh 瀏覽:296
java標准庫c標准庫 瀏覽:101
90版本天御刺客 瀏覽:719
做系統文件還在嗎 瀏覽:73
elf文件android運行 瀏覽:641

友情鏈接