How to DELETE data from a MySQL database using C#

A guide on how to use Prepared Statements in C# to delete data from a table in a MySQL database safely and effectively using multiple parameters.

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

using System;
using MySql.Data.MySqlClient;

namespace MySQLDeleteExample
{
    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;";

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

                    // DELETE statement with Prepared Statement
                    string deleteQuery = "DELETE FROM students WHERE id = @id AND name = @name";

                    using (MySqlCommand cmd = new MySqlCommand(deleteQuery, conn))
                    {
                        // Add parameters to the DELETE statement
                        cmd.Parameters.AddWithValue("@id", 1);
                        cmd.Parameters.AddWithValue("@name", "John Doe");

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

                        // Display the number of records deleted
                        Console.WriteLine($"{rowsAffected} record(s) deleted.");
                    }
                }
                catch (Exception ex)
                {
                    // Handle errors
                    Console.WriteLine($"An error occurred: {ex.Message}");
                }
            }
        }
    }
}

Detailed explanation:

  1. using MySql.Data.MySqlClient;: Imports the MySQL Connector/NET library to enable connections to MySQL from C#.
  2. string connectionString = "Server=localhost;Database=test_db;User ID=root;Password=password;";: Declares the connection string for the MySQL database.
  3. using (MySqlConnection conn = new MySqlConnection(connectionString)): Creates a MySQL connection object.
  4. conn.Open();: Opens the connection to the MySQL database.
  5. string deleteQuery = "DELETE FROM students WHERE id = @id AND name = @name";: Declares the DELETE statement with parameters.
  6. using (MySqlCommand cmd = new MySqlCommand(deleteQuery, conn)): Creates a MySqlCommand object to execute the statement.
  7. cmd.Parameters.AddWithValue("@id", 1); and cmd.Parameters.AddWithValue("@name", "John Doe");: Adds the necessary parameters to the DELETE statement.
  8. int rowsAffected = cmd.ExecuteNonQuery();: Executes the DELETE statement and gets the number of records deleted.
  9. Console.WriteLine($"{rowsAffected} record(s) deleted.");: Displays the number of records that were deleted.

System Requirements:

  • C# .NET Framework or .NET Core
  • Library: MySQL Connector/NET

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

  1. Install MySQL Connector/NET via NuGet:
Install-Package MySql.Data

Tips:

  • Make sure your MySQL server is running before attempting to connect.
  • Double-check your connection details like Server, Database, User ID, and Password to avoid connection errors.
  • Always use Prepared Statements to protect against SQL injection attacks.


Related

Comprehensive guide to concatenating strings in C#

A detailed guide on all the ways to concatenate strings in C#, including the concatenation operator, string methods, and other efficient approaches.
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.
How to automatically log into a website using Selenium with Chrome in C#

A guide on how to use Selenium in C# to automatically log into a website. This article will use the Chrome browser and outline step-by-step how to automate the login process.
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.
Passing Authentication Header Token when Posting Data to API Using C#

A guide on how to pass the Authentication Header Token when making a POST request to an API using C# by utilizing HttpClient and a Bearer Token.
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.
How to convert Unicode characters with diacritics to non-diacritics in C#

A detailed guide on how to convert Unicode characters with Vietnamese diacritics into non-diacritic characters in C#.
Multithreading in C#

A comprehensive guide on how to implement multithreading in C# to make better use of CPU resources and enhance application performance by executing multiple tasks simultaneously.
Send JavaScript code to a website using Selenium in C#

A guide on how to use Selenium in C# to send a JavaScript snippet to a website opened in the Chrome browser. The article will provide sample code and detailed explanations for each step.
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.

main.add_cart_success