| 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.
|
Do you allow custom COM components?
Viewed 3063 times since Tue, May 1, 2012
Sample Code to Send email using ASP.NET1.1
Viewed 5629 times since Tue, May 1, 2012
Do you support SQL 2012?
Viewed 3544 times since Fri, May 4, 2012
How to solve ReportViewer error message: "An error has occurred during report processing. Input string was not in a correct format"
Viewed 8435 times since Tue, Jun 18, 2013
My website session times out earlier than expected. Why?
Viewed 5149 times since Tue, May 1, 2012
Do you support Remote mySQL connection?
Viewed 3690 times since Mon, Apr 30, 2012
How do I query MySQL Database in PHP ?
Viewed 3571 times since Tue, May 1, 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 4491 times since Thu, May 3, 2012
What is my MS SQL Connection String on the web.config?
Viewed 45687 times since Tue, May 1, 2012
Do you support SQL Server Integration Service?
Viewed 3083 times since Tue, May 1, 2012
|
