SQL Injections und Prepared Statements
https://xkcd.com/327
A software tester walks into a bar. Runs into a bar. Crawls into a
bar. Dances into a bar. Flies into a bar. Jumps into a bar.
And orders: A beer. 2 beers. 0 beers. 99999999 beers. A lizard in
a beer glass. -1 beer. "qwertyuiop" beers.
Testing complete. A real customer walks into the bar and asks
where the bathroom is. The bar goes up in flames.
import java.sql.PreparedStatement;
// [...]
PreparedStatement statement = DBConnection.prepareStatement(
"SELECT * FROM benutzer WHERE username = ? AND password = ?"
); // ? als Platzhalter, keine Anführungszeichen
// username und passwd werden vom Benutzer eingegeben
statement.setString(1, username);
statement.setString(2, passwd);
ResultSet result = statement.executeQuery();
// [...]
}