vote up 0 vote down star

Hello guys,

How can I write a sql query that takes information from a database, and then put in the text in a label? I'm not really sure how to do this so please give me a good explanation! :)

Thanks,

Kevin

flag

30% accept rate
I think that you are going to need to furnish a little more information so that we can help such as table structure and the section of code that you are having an issue with. Have you attempted anything yet? – Buggabill Oct 31 at 18:17
1  
I think I'd have to be even more generic - this is barely just a "programming" question not least because there are quite a few different ways to solve this problem but mostly because there are any number of walkthroughs of the different elements of this question (which is actually two parts 1 - how do I pull data from a MySQL? database and 2 - how do I display data which is hard to address since we don't know at this point if we're looking at web or forms). – Murph Oct 31 at 18:31

2 Answers

vote up 1 vote down

MSDN has lots of examples of getting data via ADO.NET. E.g. http://msdn.microsoft.com/library/dw70f090.

You will need to adjust the connection and command types (and the connection string) to be correct for My SQL. If you have ODBC drivers for My SQL then you can follow the ODBC example with just a change of connection string.

link|flag
vote up 0 vote down

For using MySQL with .NET I'd recommend you this tutorial, and for your problem specially part 6, about reading the data with a MySQLDataReader.

An (almost working) sample by copy&paste from there with some changes:

Private Sub getData()
	  Dim conn As New MySqlConnection
	  Dim myCommand As New MySqlCommand
	  Dim myReader As MySqlDataReader
	  Dim SQL As String

	  SQL = "SELECT LabelContent FROM myTable"

	  conn.ConnectionString = myConnString ' your connection string here'

	  Try
		   conn.Open()

		   Try
				myCommand.Connection = conn
				myCommand.CommandText = SQL

				myReader = myCommand.ExecuteReader

										' loop through all records'
				While myReader.Read
				 Dim myLabelValue as String
				 myLabelValue = myReader.GetString(myReader.GetOrdinal("LabelContent"))

				 ' ... do something with the value, e.g. assign to label '
				End While
		   Catch myerror As MySqlException
				MsgBox("There was an error reading from the database: " & myerror.Message)
		   End Try
	  Catch myerror As MySqlException
			MessageBox.Show("Error connecting to the database: " & myerror.Message)
	  Finally
			If conn.State <> ConnectionState.Closed Then conn.Close()
	  End Try
End Sub
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.