In this article I will explain with an example, how to update data into MySQL database with Stored Procedure using Dapper library in Windows Forms (WinForms) Application using C# and VB.Net.
 
 

Installing Dapper package using Nuget

In order to install Dapper library using Nuget, please refer my article Install Dapper from Nuget in Visual Studio.
 
 

Database

I have made use of the following table Customers with the schema as follows.
Update with Stored Procedure using Dapper from MySql Database in C# and VB.Net
 
I have already inserted few records in the table.
Update with Stored Procedure using Dapper from MySql Database in C# and VB.Net
 
Note: You can download the database table SQL by clicking the download link below.
          Download SQL file
 
 

Stored Procedure

The following Stored Procedure will be used to Update data into the MySQL database table.
This Stored Procedure accepts CustomerIdName and Country parameters, which are used to UPDATE the records in Customers Table.
DELIMITER //
CREATE PROCEDURE Customers_UpdateCustomer(
    IN CustomerId INT,
    IN Name VARCHAR(100) ,
    IN Country VARCHAR(50)
)
BEGIN
    UPDATE Customers
    SET Name = Name,
        Country = Country
    WHERE Customers.CustomerId = CustomerId;
END//
DELIMITER ;
 
 

Form Design

The Form consists of following contols:
Label – For labeling the controls.
TextBox – For capturing the values of CustomerId, Name and Country.
Button – For updating record.
The Button has been assigned with a Click event handler.
Update with Stored Procedure using Dapper from MySql Database in C# and VB.Net
 
 

Namespaces

You will need to import the following namespaces.
C#
using Dapper;
using System.Data;
using System.Configuration;
using MySql.Data.MySqlClient;
 
VB.Net
Imports Dapper
Imports System.Data
Imports System.Configuration
Imports MySql.Data.MySqlClient
 
 

Updating the record with Stored Procedure into MySql Database using Dapper in C# and VB.Net

When Update button is clicked, first the connection is read from App.Config file.
Note: For more details on how to read connection string from App.Config file, please refer my article .Net 4.5: Read (Get) Connection String from App.Config file using C# and VB.Net.
 
Then, the name of the Stored Procedure and an object with CustomerId, Name and Country values are passed to the Execute method of the Dapper library which then updates the record in the Customers Table.
Note: For more details on Execute method, please refer my article Understanding Dapper Execute with MySQL in C# and VB.Net.
 
Finally, based on whether record is updated or not, an appropriate message is displayed using MessageBox class and TextBoxes are set as empty.
C#
private void OnUpdate(object sender, EventArgs e)
{
    string spName = "Customers_UpdateCustomer";
    string constr = ConfigurationManager.ConnectionStrings["constr"].ConnectionString;
    using (MySqlConnection con = new MySqlConnection(constr))
    {
        int customerId = int.Parse(txtId.Text);
        string name = txtName.Text;
        string country = txtCountry.Text;
        int i = con.Execute(spName, new { customerId, name, country }, commandType: CommandType.StoredProcedure);
        if (i > 0)
        {
            MessageBox.Show("Customer record updated.");
        }
        else
        {
            MessageBox.Show("Customer not found.");
        }
 
        txtId.Text = string.Empty;
        txtName.Text = string.Empty;
        txtCountry.Text = string.Empty;
    }
}
 
VB.Net
Private Sub OnUpdate(sender As Object, e As EventArgs) Handles btnUpdate.Click
    Dim spName As String = "Customers_UpdateCustomer"
    Dim constr As String = ConfigurationManager.ConnectionStrings("constr").ConnectionString
    Using con As MySqlConnection = New MySqlConnection(constr)
        Dim customerId As Integer = Integer.Parse(txtId.Text)
        Dim name As String = txtName.Text
        Dim country As String = txtCountry.Text
        Dim i As Integer = con.Execute(spName, New With {customerId, name, country}, commandType:=CommandType.StoredProcedure)
        If i > 0 Then
            MessageBox.Show("Customer record updated.")
        Else
            MessageBox.Show("Customer not found.")
        End If
 
        txtId.Text = String.Empty
        txtName.Text = String.Empty
        txtCountry.Text = String.Empty
    End Using
End Sub
 
 

Screenshot

Update with Stored Procedure using Dapper from MySql Database in C# and VB.Net
 
 

Downloads