| 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 MySQL database?
Viewed 3171 times since Mon, Apr 30, 2012
Do you support SQL Reporting Service (SSRS)?
Viewed 4287 times since Tue, May 1, 2012
How to solve ReportViewer error message: "An error has occurred during report processing. Input string was not in a correct format"
Viewed 8489 times since Tue, Jun 18, 2013
How to Solve the error: "405 - HTTP verb used to access this page is not allowed"?
Viewed 5622 times since Wed, Oct 24, 2018
Do you support MS SQL WebAdmin access?
Viewed 5808 times since Tue, May 1, 2012
Do you support SQL 2014?
Viewed 3644 times since Tue, Feb 3, 2015
I receive this error message: "Unknown file type (binary data)" when trying to deploy my SQL CE database. What did I do wrong?
Viewed 4550 times since Thu, May 3, 2012
Can I have one database user associated to more than 1 MS SQL database?
Viewed 3586 times since Tue, May 1, 2012
I get an error Server.CreateObject Failed when I try to use CDONTs. What can I do?
Viewed 3164 times since Tue, May 1, 2012
How to Restore MSSQL Database by using "Import Dump"?
Viewed 770 times since Sun, Mar 9, 2025
|
