Oracle
 sql >> Datenbank >  >> RDS >> Oracle

SQL-Fehler:ORA-00933:SQL-Befehl wurde nicht ordnungsgemäß beendet

Semikolon ; am Ende des Befehls hatte bei mir den gleichen Fehler verursacht.

cmd.CommandText = "INSERT INTO U_USERS_TABLE (USERNAME, PASSWORD, FIRSTNAME, LASTNAME) VALUES ("
                + "'" + txtUsername.Text + "',"
                + "'" + txtPassword.Text + "',"
                + "'" + txtFirstname.Text + "',"
                + "'" + txtLastname.Text + "');"; <== Semicolon in "" is the cause.
                                                      Removing it will be fine.

Hoffe es hilft.