How to UPDATE data in a MySQL database using Java

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

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

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

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

        String updateQuery = "UPDATE students SET name = ? WHERE id = ?";

        try (Connection conn = DriverManager.getConnection(url, user, password);
             PreparedStatement pstmt = conn.prepareStatement(updateQuery)) {

            // Set values for parameters
            pstmt.setString(1, "Jane Doe");
            pstmt.setInt(2, 1);

            // Execute the UPDATE statement
            int rowsAffected = pstmt.executeUpdate();
            System.out.println(rowsAffected + " record(s) updated.");

        } catch (SQLException e) {
            e.printStackTrace();
        }
    }
}

Detailed explanation:

  1. import java.sql.Connection;, import java.sql.DriverManager;, import java.sql.PreparedStatement;, import java.sql.SQLException;: Imports the necessary libraries for database connection and SQL queries.
  2. String url = "jdbc:mysql://localhost:3306/test_db";: Defines the URL for connecting to the MySQL database.
  3. String user = "root"; and String password = "password";: Defines the login credentials.
  4. String updateQuery = "UPDATE students SET name = ? WHERE id = ?";: Defines the UPDATE statement with specified parameters.
  5. try (Connection conn = DriverManager.getConnection(url, user, password); ...): Establishes a connection to the database and automatically closes it upon completion.
  6. PreparedStatement pstmt = conn.prepareStatement(updateQuery): Creates a Prepared Statement from the defined UPDATE statement.
  7. pstmt.setString(1, "Jane Doe"); and pstmt.setInt(2, 1);: Sets the parameter values for the UPDATE statement.
  8. int rowsAffected = pstmt.executeUpdate();: Executes the UPDATE statement and stores the number of affected records.
  9. System.out.println(rowsAffected + " record(s) updated.");: Prints the number of records that were updated.
  10. catch (SQLException e): Catches any SQL exceptions and prints the error message if one occurs.

System Requirements:

  • JDK 8 or higher
  • MySQL Connector/J library

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

  1. Download the MySQL Connector/J library from the official website.
  2. Add the library to your Java project's classpath.

Tips:

  • Ensure 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

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.
JSON Web Token (JWT) Authentication in Java

This guide demonstrates how to use JSON Web Token (JWT) to authenticate users in a Java application. Specifically, we'll use JWT to secure APIs in a Spring Boot application, covering token generation, validation, and securing endpoints.
How to automatically login to a website using Selenium with Chrome in Java

This article explains how to use Selenium with Chrome to automatically log into a website using Java. It covers how to interact with web elements to perform login actions on the user interface.
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 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.
Multithreading in Java

A detailed guide on multithreading in Java, covering how to create and manage threads using `Thread` and `Runnable`, as well as how to synchronize data between threads.
Writing data to an Excel file using Java

A guide on how to write data to an Excel file using Java, leveraging the Apache POI library for effective and simple manipulation of Excel files.
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 Post Data to API Using Java

This article guides you on how to post data to an API using the POST method in Java, utilizing the HttpURLConnection and org.json library to handle JSON data.
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.

main.add_cart_success