Click here to Skip to main content
15,880,427 members
Articles / Database Development / MySQL

Connecting to MySQL Database using C# and .NET

Rate me:
Please Sign up or sign in to vote.
4.81/5 (16 votes)
7 Apr 2010CPOL2 min read 322.8K   61   5
This article shows you how to connect to MySQL database using MySQL Connector for .NET
Connecting to MySQL database using C# and .Net

Introduction

This article shows you how to connect to MySQL database using MySQL Connector for .NET. I will also show you how you can update mysql database records using C#.

Prerequisites for Running Sample

  • Visual Studio 2005 or Visual Studio 2008
  • MySQL database installed on your local machine or remote host
  • MySQL database admin tool that allows you to create database and run SQL statements. I am using phpMyAdmin which is a web interface.

Getting Started

  • Go to MySQL admin tool, and create a new database, call it inventorydb
  • Download MySQL script from the following link. This is a .sql file. It contains items table structure and data.
    Download MySQL script file

    Open this file with MySQL Admin tool or copy paste SQL syntax from this file into MySQL Admin tool. Run it and it should create items table in inventorydb database.

    Connecting to MySQL database using C# and .Net
  • For Visual Studio, you need to install MySQL Connector for .NET which is basically a .NET library to support MySQL database connectivity in .NET. Go to the following link to download connector and install it.

    http://dev.mysql.com/downloads/connector/net

    When you install connector, make sure that you close Visual Studio before installing.

  • Once MySQL connector is installed successfully on your computer, download the sample from the following link and extract it in some folder.

    Download sample

  • Open sample solution file with Visual Studio.
  • Inside Solution Explorer, open App.Config file and change connection string so that it points to MySQL database that you created before. Change database user name and password in connection string as per your database instance.

    Connection String

  • Run the sample and it should give you a list of items in grid. You can update, insert or delete items from this list.

Source Code Description

The source code of this sample is very straight forward.

  • Initialize mysql connection using the following code:
    C#
    //Initialize mysql connection
    connection = new MySqlConnection(ConnectionString);
    
    //Get all items in datatable
    DTItems = GetAllItems();
  • GetAllItems() function returns all items from database table:
    C#
    //Get all items from database into datatable
      DataTable GetAllItems()
      {
        try
          {
            //prepare query to get all records from items table
            string query = "select * from items";
            //prepare adapter to run query
            adapter = new MySqlDataAdapter(query, connection);
            DataSet DS = new DataSet();
            //get query results in dataset
            adapter.Fill(DS);
    .
    .
    .
            //return datatable with all records
            return DS.Tables[0];
      }
  • After retrieving all items in a datatable, fill grid view using datatable:
    C#
    dataGridView1.DataSource = DTItems;
    
  • When initializing dataset, set update, insert and delete commands with adapter.
    C#
    .
    .
    .
    // Set the UPDATE command and parameters.
    adapter.UpdateCommand = new MySqlCommand(
      "UPDATE items SET ItemName=@ItemName, Price=@Price, _
    	AvailableQuantity=@AvailableQuantity, Updated_Dt=NOW() _
    	WHERE ItemNumber=@ItemNumber;",connection);
    adapter.UpdateCommand.Parameters.Add("@ItemNumber", _
    	MySqlDbType.Int16, 4, "ItemNumber");
    adapter.UpdateCommand.Parameters.Add_
    	("@ItemName", MySqlDbType.VarChar, 100, "ItemName");
    adapter.UpdateCommand.Parameters.Add_
    	("@Price", MySqlDbType.Decimal, 10, "Price");
    adapter.UpdateCommand.Parameters.Add_
    	("@AvailableQuantity", MySqlDbType.Int16, 11, "AvailableQuantity");
    adapter.UpdateCommand.UpdatedRowSource = UpdateRowSource.None;
    
    // Set the INSERT command and parameter.
    adapter.InsertCommand = new MySqlCommand(
        "INSERT INTO items VALUES (@ItemNumber,@ItemName,_
    	@Price,@AvailableQuantity,NOW());",connection);
    adapter.InsertCommand.Parameters.Add("@ItemNumber", _
    	MySqlDbType.Int16, 4, "ItemNumber");
    adapter.InsertCommand.Parameters.Add("@ItemName", _
    	MySqlDbType.VarChar, 100, "ItemName");
    adapter.InsertCommand.Parameters.Add("@Price", _
    	MySqlDbType.Decimal, 10, "Price");
    adapter.InsertCommand.Parameters.Add_
    	("@AvailableQuantity", MySqlDbType.Int16, 11, "AvailableQuantity");
    adapter.InsertCommand.UpdatedRowSource = UpdateRowSource.None;
    
    // Set the DELETE command and parameter.
    adapter.DeleteCommand = new MySqlCommand(
       "DELETE FROM items " + "WHERE ItemNumber=@ItemNumber;", connection);
    adapter.DeleteCommand.Parameters.Add("@ItemNumber", _
    	MySqlDbType.Int16, 4, "ItemNumber");
    adapter.DeleteCommand.UpdatedRowSource = UpdateRowSource.None;
    .
    .
    .
  • When Save button is clicked, we need to update adapter in order to save records. Note that when the adapter is updated, corresponding commands (insert, update or delete) are executed against the database based on operations that you have done on grid.
    C#
    private void btnSave_Click(object sender, EventArgs e)
    {
        try
        {
          //Save records in database using DTItems which is datasource for Grid
          adapter.Update(DTItems);
    .
    .
    .
  • When Delete button is clicked, we need to remove row from datatable. After that, update adapter to save records.
    C#
    private void btnDelete_Click(object sender, EventArgs e)
    {
      if (dataGridView1.SelectedRows.Count > 0)
      {
         //Delete a row from grid first.
         dataGridView1.Rows.Remove(dataGridView1.SelectedRows[0]);
    
         //Save records again. This will delete record from database.
         adapter.Update(DTItems);
    .
    .
    .

History

  • 7th April, 2010: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions

 
QuestionCRUD in C# using MySQL for newbies Pin
Ehtesham Astute15-Feb-16 17:45
Ehtesham Astute15-Feb-16 17:45 
SuggestionA few security issues and warnings Pin
DelphiCoder2-Jan-13 8:10
DelphiCoder2-Jan-13 8:10 
QuestionHow to add Referene MySql.Data Pin
Sami Ciit31-Jul-12 3:29
Sami Ciit31-Jul-12 3:29 
Questionconnection string Pin
Sany Ahmed4-Jan-12 15:00
Sany Ahmed4-Jan-12 15:00 
AnswerRe: connection string Pin
Rob Lynch25-Jul-17 6:27
Rob Lynch25-Jul-17 6:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.