Hallo,
ich versuche etwas in meiner Datenbank zu aktualisieren:
Ich bekomme da immer eine Exception. Was läuft da bloß falsch. Habe leider bei Google keine Beispiele gefunden, die meinen Fehler hätten aufdecken können :::
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: 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 'AufgabenID = 18' at line 1
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
ich versuche etwas in meiner Datenbank zu aktualisieren:
Java:
String sql = "update test_27 set " +
"Loesung = 18"+
"where AufgabenID = 18";
Connection con = null;
Statement s = null;
con = DriverManager.getConnection(url,user,password);
s = con.createStatement();
s.executeUpdate(sql);
s.close();
con.close();
Ich bekomme da immer eine Exception. Was läuft da bloß falsch. Habe leider bei Google keine Beispiele gefunden, die meinen Fehler hätten aufdecken können :::
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: 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 'AufgabenID = 18' at line 1
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)