Home » Categories » Multiple Categories

How do I query MySQL database in ASP.NET?

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 Attachments
There are no attachments for this article.
Related Articles RSS Feed
How often do you backup my website?
Viewed 4479 times since Tue, May 1, 2012
My site is showing 500 Internal Server error message. What is wrong here?
Viewed 3296 times since Thu, May 3, 2012
About Azure Key Vault
Viewed 1239 times since Mon, Nov 2, 2020
Do you support SQL 2014?
Viewed 3133 times since Tue, Feb 3, 2015
What is the connection string for my mariaDB database?
Viewed 1333 times since Fri, Jun 26, 2020
I receive this error message: "Unknown file type (binary data)" when trying to deploy my SQL CE database. What did I do wrong?
Viewed 4042 times since Thu, May 3, 2012
What is my MS SQL Connection String on the web.config?
Viewed 44054 times since Tue, May 1, 2012
Can I have one database user associated to more than 1 MS SQL database?
Viewed 3052 times since Tue, May 1, 2012