Dear all,
We plan to update several sqlite database files within one transaction.
I was just reading the following on the SQLite homepage:
"Transactions involving multiple attached databases are atomic, assuming that
the main database is not ":memory:".
We do not have memory databases. But I do not understand how atomicity is
achieved.
I understand that the ACID principle can be realized by means of the fsync
command. But how does this work for more than one database file?
Can anyone explain that to me, please.
Best Martin