| 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.
|
HTTP Error 502.5 - Process Failure error message when publishing an ASP.NET Core Website
Viewed 11434 times since Mon, Mar 27, 2017
Can I have one database user associated to more than 1 MS SQL database?
Viewed 3945 times since Tue, May 1, 2012
Can i login to my MySQL database via my own mySQL tool?
Viewed 3699 times since Mon, May 7, 2012
Do you support Remote MSSQL connection?
Viewed 4443 times since Mon, Apr 30, 2012
About Azure Key Vault
Viewed 2461 times since Mon, Nov 2, 2020
How do I query MySQL Database in PHP ?
Viewed 3928 times since Tue, May 1, 2012
Do you support MS SQL Profiler?
Viewed 3805 times since Wed, May 23, 2012
Why do I suddenly receive the error message: "Compiler Error Message: The compiler failed with error code XXXXXXXXX"?
Viewed 18361 times since Wed, Feb 17, 2016
How To Solve Problem with Connection String on EF (Entity Framework) 4 or above
Viewed 33027 times since Mon, Apr 1, 2013
Can you grant SELECT PRIVILEGE to the system table mysql.proc
Viewed 6732 times since Mon, Jun 18, 2012
|
