次の Oracle ステートメント:
DECLARE ID NUMBER;
BEGIN
UPDATE myusername.terrainMap
SET playerID = :playerID,tileLayout = :tileLayout
WHERE ID = :ID
END;
次のエラーが表示されます。
ORA-06550: line 6, column 15:
PL/SQL: ORA-00933: SQL command not properly ended
ORA-06550: line 3, column 19:
PL/SQL: SQL Statement ignored
ORA-06550: line 6, column 18:
PLS-00103: Encountered the symbol "end-of-file" when expecting one of the following:
( begin case declare end exception exit for goto if loop mod
null pragma raise return select update while with
<an identifier> <a double-quoted>
私はかなり途方に暮れています。これはかなり単純なステートメントのようです。少しでも役立つ場合は、以前は機能していた INSERT を実行する同様のステートメントがありましたが、今日は同じメッセージが表示されています。