Oracle
 sql >> Database >  >> RDS >> Oracle

Errore SQL:ORA-00933:comando SQL non terminato correttamente

Punto e virgola ; alla fine del comando aveva causato lo stesso errore su di me.

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.

Spero che aiuti.