On 13 Aug 2015 at 16:20, Simon Slavin <slavins at bigfraud.org> wrote: 

> On 13 Aug 2015, at 4:03pm, sqlite-mail <sqlite-mail at dev.dadbiz.es> wrote:
>
>> With that would be trivial to log the statements that change the database to
>> replicate elsewhere.
>
> As Jean-Christophe wrote, it's not that simple.  There are huge books written
> on the problems involved in synchronising two copies of a database, and none
> of them end with a chapter called "Solution".

Presumably all the OP needs to do (in the future, at any rate) is:

  open first db
  attach second db
  start transaction
  do updates to first db;
  do identical updates to second db
  commit transaction
  close connection

or some facsimile thereof.

--
Cheers  --  Tim

Reply via email to