重庆分公司,新征程启航

为企业提供网站建设、域名注册、服务器等服务

ASP连接MySQL数据库的方法(转)

ASP连接MySQL数据库的方法(转)[@more@]<%
'测试读取MySql数据库的内容

strconnection="driver={mysql odbc 3.51 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
%>

<table>
<tr>
<td<b>序列号</b></td>
<td><b>标题</b></td>
</tr>
<%
do while not rs.eof
%>
<tr>
<td><%=rs("News_id")%></td>
<td><%=rs("News_Title")%></td>
</tr>
<%
rs.movenext
loop
%>
</table>
<%
else
response.write("无数据.")
end if
rs.close
adodataconn.close
set adodataconn = nothing
set rsemaildata = nothing
%>

PS:若想直接使用以上代码,请将全角符号“<>”替换成半角符号“<>”。
分享文章:ASP连接MySQL数据库的方法(转)
路径分享:http://cqcxhl.cn/article/ijhojh.html

其他资讯

在线咨询
服务热线
服务热线:028-86922220
TOP