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 support Remote MSSQL connection?
Viewed 3171 times since Mon, Apr 30, 2012
How can I backup my MS SQL database?
Viewed 4177 times since Tue, May 1, 2012
About Azure Key Vault
Viewed 594 times since Mon, Nov 2, 2020
How to Solve the error: "405 - HTTP verb used to access this page is not allowed"?
Viewed 2591 times since Wed, Oct 24, 2018
How do I send an email from my ASP.NET website by using SMTP Authentication?
Viewed 5702 times since Tue, May 1, 2012
Do you support MySQL WebAdmin Access?
Viewed 2550 times since Tue, May 1, 2012
Sample Code to Send email using ASP.NET 2
Viewed 4960 times since Tue, May 1, 2012
Do you support Remote mySQL connection?
Viewed 2643 times since Mon, Apr 30, 2012
What is the connection string for my mariaDB database?
Viewed 762 times since Fri, Jun 26, 2020
How often do you backup my website?
Viewed 4016 times since Tue, May 1, 2012
|