Copy table from remote sqlite database?

前端 未结 1 1972
野趣味
野趣味 2021-01-29 02:54

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

1条回答
  •  不要未来只要你来
    2021-01-29 03:16

    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;
    

    0 讨论(0)
提交回复
热议问题