萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> asp編程 >> ASP程序直接連接MYSQL數據庫

ASP程序直接連接MYSQL數據庫

在網上查找大量資料,經過自己的不懈努力,終於測試成功了。原來要在服務器上安裝mysql odbc 3.51 ,還有數據庫用戶名及密碼,用下面的密碼就可以了。

以下為引用的內容:
<%
strconnection="driver={mysql odbc 3.51 driver};database=weste_net;server=localhost;uid=root;password="
set conn = server.createobject("adodb.connection")
conn.open strconnection

strquery = "select * from News"
set rs = conn.execute(strquery)
if not rs.bof then
%>

<table>
<tr>
<td<b>序列號</b></td>
<td><b>標題</b></td>
</tr>
<%
do while not rs.eof
%>
<tr>
<td><%=rs("id")%></td>
<td><%=rs("NTitle")%></td>
</tr>
<%
rs.movenext
loop
%>
</table>
<%
else
response.write("無暫時沒有.")
end if
rs.close
conn.close
set conn = nothing
set rsdata = nothing
%>

copyright © 萬盛學電腦網 all rights reserved