Nabend zusammen,
ich habe ein kleines Problem mit PreparedStatements.
Code ist wie folgt:
und die Fehlermeldung ist: java.sql.SQLException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '?' at line 1
Verwirrt mich, da das 1:1 aus Java ist auch eine Insel genommen ist.
Danke im Voraus,
Chris
ich habe ein kleines Problem mit PreparedStatements.
Code ist wie folgt:
Code:
Class.forName("com.mysql.jdbc.Driver").newInstance();
Connection connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/", "root", "jd78kf");
PreparedStatement preparedStatement = connection.prepareStatement("CREATE DATABASE ?");
preparedStatement.setString(1, string_databaseName);
preparedStatement.executeUpdate();
preparedStatement.
preparedStatement.close();
connection.close();
und die Fehlermeldung ist: java.sql.SQLException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '?' at line 1
Verwirrt mich, da das 1:1 aus Java ist auch eine Insel genommen ist.
Danke im Voraus,
Chris