Oracle
 sql >> Base de Dados >  >> RDS >> Oracle

Erro SQL:ORA-00933:comando SQL não finalizado corretamente


Ponto e vírgula ; no final do comando havia causado o mesmo erro em mim.
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.

Espero que ajude.