asp链接mysql数据库
asp链接mysql数据库怎么老是链接不上?数据库是 mysql5.0的。
数据库和网站空间都是在网上购买的!
是否要配置调整什么的呢?忙了好长时间了还是连不上!
以下是我链接代码
<%
'测试读取MySql数据库的内容
strconnection="driver={mysql odbc 3.51 driver};database=weste_net;server=localhost;uid=root;password=123456"
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
%>
------解决方案--------------------参见
http://blog.csdn.net/zrjdds/article/details/5831177
------解决方案--------------------如果你有权限则进入空间自己安装,否则叫空间商帮你装。