在ASP中连接MySQL数据库的方法,最好的通过ODBC方(2)


set conn = server.createobject("adodb.connection")
conn.open strconnection
sql = "select * from test" 'SQL查询语句
set rs = conn.execute(sql)
if not rs.bof then
%>
<table width=600 border=1>
 <tr>
  <td width=""><b>name</b></td>
  <td width=""><b>sex</b></td>
 </tr>
<%
 do while not rs.eof
%>
 <tr>
  <td><%=rs("name")%></td> <!-- name字段 -->
  <td><%=rs("sex")%></td> <!-- sex字段 -->
 </tr>
<%
  rs.movenext
 loop
%>
</table>
<%
 rs.close
else
 response.write("对不起,没有找到数据。")
end if
set rs = nothing
conn.close
set conn = nothing
%>
</body>
</html>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/3266.html