Copy table from remote sqlite database?

前端 未结 1 1934
野趣味
野趣味 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条回答
  • 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)
提交回复
热议问题