The way the undo-redo is described in the wiki involves triggers to insert
the information of the change in each table to other table which logs the
changes. This will have a price in performance. It also complicates things
when triggers are already used for other things.

So I wonder if journals might be used to implement undo:
If I understand it correctly, for each transaction there is journal that
keeps the information so the transaction could be rolled back. If the
journals are kept somewhere could they be used to rollback _successful_
transactions?

Ran


On 11/17/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:

...

When your changes are saved to disk immediately, it is important
to have a good undo/redo mechanism.  There is some example code
on the wiki showing how to implement undo/redo using triggers.

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

Reply via email to