Is there a way to update SQLITE database using deltas?

后端 未结 3 1388
执笔经年
执笔经年 2020-12-31 23:45

I would like to know if SQLite proposes a update mechanism based on some delta file, to be clear for example an Oracle database can be synchronized with sql redo logs or sna

3条回答
  •  死守一世寂寞
    2021-01-01 00:07

    We have this exact same requirement and we have met this by writing insert/update/delete statements which when executed against a SQLLite database updates it.

    We have a central SQLLite database which is updated from some source. The updates then are required to be propagated to other SQLLite databases. What we do is we generate SQL Scripts and execute them against the databases which needs to be updated.

    Something similar will help achieve what you are looking for

提交回复
热议问题