導航:首頁 > 編程大全 > 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資料庫語句相關的資料

熱點內容
ipad怎麼清除應用數據恢復 瀏覽:822
怎麼查資料庫表裡有多少數據 瀏覽:219
javascript判斷郵箱 瀏覽:337
設置共享文件刪除密碼是什麼 瀏覽:205
如何將文件掃描為pdf文件 瀏覽:550
flex讀取配置文件 瀏覽:642
8位搶答器c語言程序 瀏覽:581
手機顯示空間已滿卻找不到大文件 瀏覽:554
mct找不到轉儲文件 瀏覽:642
瑪酷機器人編程使用什麼 瀏覽:331
匿名賬戶用戶名密碼 瀏覽:147
ibm期權數據在哪裡找 瀏覽:828
如何壓縮pdf和excel文件 瀏覽:483
qq瀏覽器文件怎麼找不到 瀏覽:23
手機查看未知文件類型 瀏覽:467
共享文件夾英文 瀏覽:577
ps中怎麼把刪掉的文件找回來 瀏覽:129
inwentor2014教程 瀏覽:117
2016微信男生個性簽名 瀏覽:72
qq瀏覽器在哪個文件夾 瀏覽:922

友情鏈接