I'm trying to find a solution for keeping a SQLite db in sync and have stumbled upon LiteSync as a possible solution. However, I wanted to ask about a particular implementation first.
Specifically, I would like to be able to sync between two SQLite databases on the same device, one of which is always in use by an app (the secondary) and the other (the primary) which is periodically downloaded/updated and only connected to by the app during a syncing event.
My assumption from reading the details page on the site is that this can be easily done by simply changing the connection URL for each open database (using localhost) and signifying one as the primary and the other as a secondary.
Is this correct or is this something that won't work? Thanks for your reply.