[EMAIL PROTECTED] wrote:
> Hi,
> 
> how can I 'roll-back' some modifications done by some previous sql 
> statements with SQLite?
> 

The ROLLBACK command will undo everything from within a
transaction, assuming you have not already committed the
transaction.  Once a transaction commits, there is no
built-in way to undo it.  You'll have to invent an
application-specific undo mechanism in that case.

--
D. Richard Hipp  <[EMAIL PROTECTED]>


-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------

Reply via email to