ASP connection MySQL Database tutorial example

Source: Internet
Author: User
Tags odbc mysql mysql database

ASP connection MySQL Database

The first thing to do is install MySQL ODBC 3.51 on the server, as well as the database username and password, as shown in the following code.

The following is the source code:
<%
strconnection= "Driver={mysql ODBC 3.51 driver};d atabase=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> Serial Number </b></td>
<td><b> title </b></td>
</tr>
<%
Do as not rs.eof
%>
<tr>
&LT;TD&GT;&LT;%=RS ("id")%></td>
<td><%=rs ("Ntitle")%></td>
</tr>
<%
Rs.movenext
Loop
%>
</table>
<%
Else
Response.Write ("No temporary No.")
End If
Rs.close
Conn.close
Set conn = Nothing
Set rsdata = Nothing
%>



Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.