My current development plan is to write remote apps that each of them will use it's own SQLite database locally. There will be also one central database which should be synchronized from each remote app db. My questions here are:
Is there any library which could make synchronization towards a central database (SQL Server) from remotes (SQLite) databases?
Let's assume for a moment that I decide to insert data to central database manually from all remote databases. Good information is each remote databases are using different data, however once the remote database creates their unique ids in tables which are (records) in relationships with each other by those ids then the problem could be such ids values could be already in use in central database. Therefore it's a problem.
How to overcome this? Hope you get my point.