Is there any way to copy data from one remote sqlite database to another? I have file replication done across two servers; however, some changes are recorded in an sqlite databa
If you have access to the other database file, you can ATTACH it:
ATTACH '/some/where/else/other.db' AS remote; INSERT INTO MyTable SELECT * FROM remote.MyTable;