Determining when a new transaction has started in SQLite -
is there way in sqlite determine when new transaction has started, or transaction in progress?
the purpose in trigger logging changes database. far can tell, trigger has no indication whether given operation or part of set of other operations. transaction count allow clear delineation of changes occurred atomically @ same time (e.g. purpose of playback).
sqlite has commit , rollback notification callbacks, called @ end of transaction.
sqlite
No comments:
Post a Comment