mtenuta wrote:
Is this possible?  I need to either delete the current row or update a field
in the current row during the callback execution for that row.  I am using
the sqlite3 C API.

You can't insert into, delete, or update rows in a table that you're currently reading from. One workaround is to create a temporary table from the original, read from it and do the changes on the original table.

Reply via email to