Using MySQL with .NET

Page 2 of 2
  1. Introduction
  2. Connecting to the Database

Connecting to the Database

Now that the database is created we can move on to creating the application to view it. The first step is to create a new C# Windows Application in Visual Studio. On the main form, place a datagrid control in the middle and call it mysqltable. Next we will want to fill this datagrid with information from our table. To accomplish this we will need to use ADO at load time. Double click on the main form to bring up the code view for the Form1_Load function. The code for the load function should look as follows:

private void Form1_Load(object sender, System.EventArgs e)
{
    //create a connection string, contains the driver, the servername and the database name
    String ConnectionString = “Driver={MySQL ODBC 3.51 Driver};Server=localhost;Database=mysqlsample;option=3”;
    //create a query string
    String myquery = “SELECT * FROM tutorials”;
    //run the connection string and the query and store it in the dataadapter
    OdbcDataAdapter MySQLDataAdapter = new OdbcDataAdapter(myquery,ConnectionString);
    //create a new dataset
    DataSet MySQLDataSet = new DataSet();
    //fill the dataset with data from the dataadapter
    MySQLDataAdapter.Fill(MySQLDataSet,”tutorials”);
    //now set the datasource of our grid to that of the main table of the dataset
    mysqltable.DataSource = MySQLDataSet.Tables[”tutorials”].DefaultView;
}

This code connects to the database using the OdbcDataAdapter and performs our query. We then store the results in a dataset which can be used as the datasource for our grid. Next we add a quit button somewhere on the form to allow the application to exit. The code for quitting is simply:

private void button1_Click(object sender, System.EventArgs e)
{
    //quit the application
    Application.Exit();
}

You might also like...

Comments

Contribute

Why not write for us? Or you could submit an event or a user group in your area. Alternatively just tell us what you think!

Our tools

We've got automatic conversion tools to convert C# to VB.NET, VB.NET to C#. Also you can compress javascript and compress css and generate sql connection strings.

“I invented the term Object-Oriented, and I can tell you I did not have C++ in mind.” - Alan Kay