vsql = @"INSERT INTO ALUNOS_ (UF, IDADE, TELEFONE, NOME_PAI, ENDERECO, EMAIL,
NOME, CIDADE, NOME_MAE)
values ('sp', 0,'','','','','','','');";
This SQL when executed in oracle does the insertion but in the implementation of the error
ORA-00933: SQL command not properly terminated;
What can it be?
Solved just by taking the semicolon at the end of sql.
Another question that has now arisen with parameters, #