How to DELETE data from a MySQL database using Java

A guide on how to use Prepared Statements in Java to delete data from a table in a MySQL database safely and effectively.

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

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.SQLException;

public class DeleteData {
    public static void main(String[] args) {
        String url = "jdbc:mysql://localhost:3306/test_db";
        String user = "root";
        String password = "password";

        String deleteQuery = "DELETE FROM students WHERE id = ? AND name = ?";

        try (Connection conn = DriverManager.getConnection(url, user, password);
             PreparedStatement pstmt = conn.prepareStatement(deleteQuery)) {
             
            // Set parameters
            pstmt.setInt(1, 1);
            pstmt.setString(2, "John Doe");

            // Execute the DELETE statement
            int rowsAffected = pstmt.executeUpdate();

            // Print the number of records deleted
            System.out.println(rowsAffected + " record(s) deleted.");
        } catch (SQLException e) {
            e.printStackTrace();
        }
    }
}

Detailed explanation:

  1. import java.sql.*: Imports the necessary classes to work with JDBC.
  2. String url = "jdbc:mysql://localhost:3306/test_db";: Defines the connection URL to the MySQL database.
  3. String user = "root"; and String password = "password";: Defines the login credentials to connect to the database.
  4. String deleteQuery = "DELETE FROM students WHERE id = ? AND name = ?";: Defines the DELETE statement with parameters.
  5. try (Connection conn = DriverManager.getConnection(url, user, password); PreparedStatement pstmt = conn.prepareStatement(deleteQuery)): Connects to the database and creates a PreparedStatement object.
  6. pstmt.setInt(1, 1); and pstmt.setString(2, "John Doe");: Sets the parameters for the DELETE statement.
  7. int rowsAffected = pstmt.executeUpdate();: Executes the DELETE statement and retrieves the number of records deleted.
  8. System.out.println(rowsAffected + " record(s) deleted.");: Prints the number of records that were deleted.
  9. catch (SQLException e) { e.printStackTrace(); }: Catches and handles any SQL exceptions that may occur.

System Requirements:

  • Java 8 or higher
  • JDBC MySQL Connector library

How to install the libraries needed to run the Java code above:

Download the JDBC MySQL Connector library from the official website and add it to your Java project.

Tips:

  • Make sure your MySQL server is running before attempting to connect.
  • Double-check your connection details like url, user, and password to avoid connection errors.
  • Use Prepared Statements to protect against SQL injection attacks.


Related

Guide to creating a multi-image upload form in Java

A step-by-step guide on how to create a multi-image upload form using Java with Spring Boot and the `Commons FileUpload` library. This tutorial covers setup and code examples.
How to Get JSON Data from API Using Java

This guide will show you how to use Java to send a GET request to an API and read the returned JSON data using HttpURLConnection.
How to pass an Authentication Header Token when POSTing data to an API in Java

A guide on how to pass an authentication token in the Authorization Header when sending POST requests to an API using Java. The article provides sample Java code and detailed explanations.
How to convert Unicode characters with accents to non-accented in Java

A guide on how to convert accented Unicode characters to non-accented characters in Java using `Normalizer` and regular expressions.
How to SELECT data from a MySQL database using Java

A guide on how to use Prepared Statements in Java to query data from a table in a MySQL database safely and effectively.
Generating Captcha in Java

A comprehensive guide on how to create a Captcha in Java to protect your application from automated activities and enhance security.
Read Excel Content Using Apache POI in Java

A detailed guide on reading Excel file content in Java using the Apache POI library. This article provides sample code, a detailed explanation of each line, and steps for installing the necessary libraries.
How to use Selenium to inject JavaScript code into a website on Chrome

A guide on how to use Selenium in Java to inject JavaScript code into a webpage on the Chrome browser. This article will help you understand how to interact with the DOM via JavaScript.
How to convert a Markdown string to HTML using Java

A detailed guide on how to convert a Markdown string to HTML in Java using the `commonmark` library.
How to INSERT data into a MySQL database using Java

A guide on how to use Prepared Statements in Java to insert data into a table in a MySQL database safely and effectively.

main.add_cart_success