Instructions on executing SQL queries in Java and preventing SQL injections.
How to execute SQL queries from Java (and prevent SQL injections) appeared first on MariaDB.org
To run SQL queries in Java, you need a Connection object. See the previous post to learn how to get one. With this object, simply build a new PreparedStatement, set the query parameters (NEVER USE STRING CONCATENATION OR THE APP WILL BE VULNERABLE TO SQL INJECTION ATTACKS, sorry for yelling), and run the SQL statement. Depending on whether you are modifying data or not, you call different methods to send the statement to the database.
Reading data:
try (PreparedStatement statement = connection.prepareStatement("""
SELECT column1, column2
FROM table_name
""")) {
ResultSet resultSet = statement.**executeQuery**();
while (resultSet.next()) {
String val1 = resultSet.getString(1); // by column index
int val2 = resultSet.getInt("column2"); // by column name
// ... use val1 and val2 ...
}
}Inserting, updating, or deleting data:
try (PreparedStatement statement = connection.prepareStatement("""
INSERT INTO table_name(column1, column2)
VALUES (?, ?)
""")) {
statement.**setString**(1, someString);
statement.**setInt**(2, someInteger);
int rowsInserted = statement.**executeUpdate**();
}The setString(int, String) and setInt(int, int) methods escape special characters so attackers cannot use a malicious string that contains SQL code to perform an injection attack. There are similar methods for other Java types.
See JDBC Tutorial Part 2: Running SQL Queries, for a more detailed tutorial or watch me coding an example Java application from scratch using JDBC and a MariaDB database:
Enjoyed this post? I can help your team implement similar solutions—contact me to learn more.
| # | Наименование новости | Тональность | Информативность | Дата публикации |
|---|---|---|---|---|
| 1 | How to open and close JDBC connections | 0 | 4.76 | 12-01-2022 |
| 2 | New YouTube channel on programming (mostly Java) | 0 | 4.13 | 04-01-2022 |
| 3 | What is a database connection pool? | 0 | 6.1 | 14-01-2022 |
| 4 | How to start a web server using Java | 0 | 3.76 | 23-03-2022 |
| 5 | What is MariaDB? | 0 | 7.66 | 21-09-2023 |
| 6 | Why do we need databases and SQL? | 0 | 5.63 | 06-03-2024 |
| 7 | New book (coming) – MariaDB for Developers | 0 | 7.06 | 31-12-2023 |
| 8 | Using AI to modernize a Java project | 0 | 4.16 | 20-07-2026 |
| 9 | Why MariaDB instead of MySQL, PostgreSQL, or MongoDB? | 0 | 5.85 | 25-02-2023 |
| 10 | ChatGPT as a MariaDB database | 0 | 4.62 | 12-01-2023 |