Steven Van Ingelgem wrote:
Hi,

I do the following (SQLite 308 from C++ source in windows):

BEGIN DEFERRED TRANSACTION;DELETE FROM Inbox;INSERT...;COMMIT TRANSACTION; END TRANSACTION;

Now, nothing is done? Nothing inserted, nothing deleted from Inbox...


Probably you are encountering an error which is causing the transaction to roll back. Check your return codes.

COMMIT ends the transaction.  The END is redundant.


-- D. Richard Hipp -- [EMAIL PROTECTED] -- 704.948.4565



Reply via email to