Home » Categories » Multiple Categories |
How do I query MySQL database in ASP.NET? |
Article Number: 84 | Rating: Unrated | Last Updated: Tue, May 1, 2012 at 11:15 PM
|
In order to query your mySQL Database with ASP.NET script, you need to organize an ODBC connection with us first. The following the snippet of the code: <%@ Page Language="VB" %>
<%@ import Namespace="System.Data.Odbc" %>
<script runat="server">
Public Sub Page_Load()
Dim mySelectQuery As String = "SELECT * FROM tblTest"
Dim myConnection As New OdbcConnection("DSN=<username>_mysqlConn")
Dim myCommand As New OdbcCommand(mySelectQuery, myConnection)
myConnection.Open()
Dim myReader As OdbcDataReader = myCommand.ExecuteReader()
Try
While myReader.Read()
Response.Write (myReader("name") & "<br>")
End While
Finally
//always call Close when done reading.
myReader.Close()
//always call Close when done with connection.
myConnection.Close()
End Try
End Sub
</script>
|
Attachments
![]()
There are no attachments for this article.
|
Sample Code to Send email using ASP.NET1.1
Viewed 4673 times since Tue, May 1, 2012
I cannot login to my MS SQL database remotely. What did I do wrong?
Viewed 5776 times since Mon, May 7, 2012
How can I backup my MS SQL database?
Viewed 4352 times since Tue, May 1, 2012
How can I change my SQL Server collation name?
Viewed 2900 times since Mon, May 21, 2012
Do you support SQL 2014?
Viewed 2895 times since Tue, Feb 3, 2015
Can you grant SELECT PRIVILEGE to the system table mysql.proc
Viewed 5595 times since Mon, Jun 18, 2012
I cannot find a way to enable ASP.NET 4.5 on my Control Panel
Viewed 10395 times since Tue, Sep 11, 2012
Can I have more than one MySQL database on my hosting account?
Viewed 7911 times since Tue, May 1, 2012
Do you support SQL 2012?
Viewed 2851 times since Fri, May 4, 2012
I receive this error message: "Unknown file type (binary data)" when trying to deploy my SQL CE database. What did I do wrong?
Viewed 3760 times since Thu, May 3, 2012
|