<%
'測試讀取mysql資料庫的內容
strconnection="driver=;database=weste_net;server=localhost;uid=root;password="
'無需配置dsn
set adodataconn = server.createobject("adodb.connection")
adodataconn.open strconnection
strquery = "select * from news"
set rs = adodataconn.execute(strquery)
if not rs.bof then
%>
標題
<%
do while not rs.eof
%>
<%=rs("news_id")%>
<%=rs("news_title")%>
<%
rs.movenext
loop
%>
<%
else
response.write("無資料.")
end if
rs.close
adodataconn.close
set adodataconn = nothing
set rsemaildata = nothing
%>
ASP資料庫連線
一 asp的物件訪問資料庫方法 在asp中,用來訪問資料庫的物件統稱ado active data objects 主要含有三種物件 connection recordset command connection 負責開啟或連線資料 recordset 負責訪問資料表 command 負責對資料庫執...
asp資料庫連線
asp資料庫連線 set conn server.createobject adodb.connection conn.open provider sqloledb work library dbmsso data source 127.0.0.1 initial catalog testdb us...
asp連線sql資料庫,access資料庫字串
asp連線sqlserver資料庫字串 set connsql server.createobject adodb.connection strsql provider sqloledb.1 password y ht1986 persist security info true user id s...