Is there a way to update SQLITE database using deltas?

后端 未结 3 1396
执笔经年
执笔经年 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:15

    You need a custom solution. there is nothing built-in to SQLite to do this automatically.

    Note that you can write a query that spans multiple databases. Using this you can update one database from data in another entirely within SQLite. You still need to put the logic in yourself though.

    http://www.sqlite.org/lang_attach.html

提交回复
热议问题