How to UPDATE data in a MySQL database using C#

A guide on how to use Prepared Statements in C# to update data in a MySQL table safely and efficiently with multiple parameters.

In this article, you'll learn how to connect to a MySQL database and use C# with Prepared Statements to execute an UPDATE statement, allowing you to update records in the table using multiple parameters.

using System;
using MySql.Data.MySqlClient;

class Program
{
    static void Main(string[] args)
    {
        // Connection string to the MySQL database
        string connectionString = "Server=localhost;Database=test_db;User ID=root;Password=password;";

        // Connect to the database
        using (MySqlConnection conn = new MySqlConnection(connectionString))
        {
            conn.Open();

            // UPDATE statement with Prepared Statement
            string updateQuery = "UPDATE students SET name = @name, age = @age WHERE id = @id";

            using (MySqlCommand cmd = new MySqlCommand(updateQuery, conn))
            {
                // Add parameters
                cmd.Parameters.AddWithValue("@name", "Jane Doe");
                cmd.Parameters.AddWithValue("@age", 22);
                cmd.Parameters.AddWithValue("@id", 1);

                // Execute the UPDATE statement
                int rowsAffected = cmd.ExecuteNonQuery();

                // Print the number of records updated
                Console.WriteLine($"{rowsAffected} record(s) updated.");
            }
        }
    }
}

Detailed explanation:

  1. using MySql.Data.MySqlClient;: Imports the MySql.Data.MySqlClient library to work with MySQL in C#.
  2. string connectionString = "Server=localhost;Database=test_db;User ID=root;Password=password;";: The connection string contains the necessary details to connect to MySQL, such as server, database, user, and password.
  3. using (MySqlConnection conn = new MySqlConnection(connectionString)): Initializes the connection to MySQL.
  4. conn.Open();: Opens the connection to the database.
  5. string updateQuery = "UPDATE students SET name = @name, age = @age WHERE id = @id";: The UPDATE statement with placeholders for parameters.
  6. using (MySqlCommand cmd = new MySqlCommand(updateQuery, conn)): Initializes MySqlCommand with the UPDATE statement and the connection.
  7. cmd.Parameters.AddWithValue("@name", "Jane Doe");: Adds the @name parameter with the value "Jane Doe".
  8. cmd.Parameters.AddWithValue("@age", 22);: Adds the @age parameter with the value 22.
  9. cmd.Parameters.AddWithValue("@id", 1);: Adds the @id parameter with the value 1.
  10. int rowsAffected = cmd.ExecuteNonQuery();: Executes the UPDATE statement and retrieves the number of records updated.
  11. Console.WriteLine($"{rowsAffected} record(s) updated.");: Prints the number of records updated to the console.

System Requirements:

  • .NET Framework or .NET Core
  • MySQL.Data (library for MySQL connectivity)

How to install the library needed to run the above C# code:

Install the MySql.Data library via NuGet:

Install-Package MySql.Data

Tips:

  • Ensure your MySQL server is running before attempting to connect.
  • Double-check your connection details to avoid errors.
  • Use Prepared Statements to protect your application against SQL injection attacks.


Related

Create a Simple Chat Application Using Socket.IO in C#

A detailed guide on how to create a simple chat application using Socket.IO in C#, helping you understand real-time communication and build interactive applications.
How to POST Data to an API using C#

A guide on how to send data to an API using the POST method in C# with the HttpClient class, enabling you to easily interact with APIs.
How to Write Data to Excel File in C#

A detailed guide on how to write data to an Excel file in C# using the EPPlus library, making it easy to store and manage data in Excel spreadsheets.
How to INSERT data into a MySQL database using C#

A guide on how to use Prepared Statements in C# to insert data into a table in a MySQL database safely and effectively.
Convert markdown string to HTML using C#

A guide on how to convert a markdown string into HTML in C# using the MarkdownSharp library.
How to open Notepad using C#

A guide on how to open the Notepad application using C# via the `Process` class in .NET. This tutorial helps C# developers understand how to interact with external applications using simple code.
Hiding a C# Application from Task Manager

A guide on how to hide a C# application from Task Manager using Win32 API to adjust the application's display properties.
How to GET JSON data from an API using C#

A guide on how to retrieve JSON data from an API using C#, leveraging the HttpClient class and Newtonsoft.Json library for processing data.
Common Functions Used with Selenium Chrome in C#

This article lists and describes common functions used when working with Selenium Chrome in C#. These functions help automate tasks in the Chrome browser effectively.
Generating Captcha Code in C#

A guide on how to create a Captcha code using C# to protect web forms and applications from automated access. This tutorial demonstrates how to use the `System.Drawing` library to generate Captcha images.

main.add_cart_success