Исключение Oracle с ADO.Net - PullRequest
       19

Исключение Oracle с ADO.Net

0 голосов
/ 14 октября 2010

Когда я пытаюсь выполнить следующий блок SQL, я получил следующее исключение

ORA-06550: line 1, column 6:
PLS-00103: Encountered the symbol "" when expecting one of the following:

   begin case declare exit for goto if loop mod null pragma
   raise return select update while with <an identifier>
   <a double-quoted delimited-identifier> <a bind variable> <<
   close current delete fetch lock insert open rollback
   savepoint set sql execute commit forall merge pipe
The symbol "" was ignored.
ORA-06550: line 2, column 47:
PLS-00103: Encountered the symbol "" when expecting one of t

Запрос:

begin
insert into test (a, b) values (:p1, :p2);
commit;
end;

Примечание: я добавил два параметра (p1, p2) со строковыми значениями

1 Ответ

0 голосов
/ 14 октября 2010

Удалить трейлинг ;

...