| 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.
|
Can I set up additional logins for my MS SQL database?
Viewed 3584 times since Mon, Apr 30, 2012
My site is showing 500 Internal Server error message. What is wrong here?
Viewed 4298 times since Thu, May 3, 2012
Do you support MySQL WebAdmin Access?
Viewed 3749 times since Tue, May 1, 2012
I receive this error message: "Directory Listing Denied. This Virtual Directory does not allow contents to be listed."
Viewed 11227 times since Mon, Apr 30, 2012
Issue with Storing Session
Viewed 4293 times since Tue, Mar 24, 2015
Do you allow custom COM components?
Viewed 3394 times since Tue, May 1, 2012
How to solve the Let’s Encrypt SSL on ASP.NET Core
Viewed 10264 times since Mon, Jul 17, 2017
What is the connection string for my MySQL database?
Viewed 4726 times since Mon, May 7, 2012
I cannot find a way to enable ASP.NET 4.5 on my Control Panel
Viewed 11517 times since Tue, Sep 11, 2012
How do I query MySQL Database in PHP ?
Viewed 3875 times since Tue, May 1, 2012
|
