• ADADADADAD

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

    mysql数据库 时间:2024-12-03 12:11:56

    作者:文/会员上传

    简介:

    ASP连接MySQL数据库的方法(转)[@more@]<% '测试读取MySql数据库的内容strconnection="driver={mysql odbc 3.51 driver};database=weste_net;server=localhost;uid=root;pass

    以下为本文的正文内容,内容仅供参考!本站为公益性网站,复制本文以及下载DOC文档全部免费。

    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数据库的方法(转).docx

    将本文的Word文档下载到电脑

    推荐度:

    下载
    热门标签: l数据库