Is there a way to update SQLITE database using deltas?

吃可爱长大的小学妹 提交于 2019-12-03 13:21:56

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

DenNukem

The subject is now covered in another SO questions: How can I diff 2 SQLite files?

In short, there's now a built-in tool to diff two sqlite databases.

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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!