Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Log changes in a database (DBI)

by BrowserUk (Patriarch)
on May 03, 2011 at 11:01 UTC ( [id://902675]=note: print w/replies, xml ) Need Help??


in reply to Log changes in a database (DBI)

Any DB worthy of the name already has (something like) this functionality built in. It is used for rolling back transactions. A similar mechanism (journalling) is also used by most DBMSs for longer term backup & recovery.

Whether either of these is applicable to your requirements might depend upon the time frame between do and undo. If you want to be able undo an action pretty immediately, then wrap it in a transaction and either commit or rollback. For longer term the journalling might work for you.

One question to ask yourself. Do you envisage undoing individual actions, or undoing to a given moment in time?

This is significant, because journalling will only do the latter, because if one action affects a particular piece of data and then another, later action also changes that same piece of data, it becomes impossible to undo the earlier action without affecting the later one.


Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://902675]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (3)
As of 2024-04-18 23:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found