UPDATE/DELETE … WHERE CURRENT OF
Informix®
Informix allows positioned UPDATEs and DELETEs with the "WHERE CURRENT OF cursor" clause, if the cursor has been DECLARED with a SELECT ... FOR UPDATE statement.
SQLite
SQLite does not support the SELECT ... FOR UPDATE and UPDATE/DELETE
WHERE CURRENT OF SQL instruction.
Solution
UPDATE/DELETE ... WHERE CURRENT OF is not supported with SQLite.
As a replacement of WHERE CURRENT OF, if the database
table is defined with a primary key column, use the value fetched from the
SELECT cursor in the [FOR UPDATE]WHERE clause of the UPDATE/DELETE
statement.