I develop a small piece of software for a company. Basically, they need to manage a large list of items. Change, delete, etc. Basically, I store INITIALLY data in SQLite locally on my computer. After they are modified elements of the "list", they will need to be synchronized with the SQL Server database on the production server.
What would be the most reliable way to synchronize data between databases? I am also going to store small images for each item. I rate somewhere between 1000 ~ 5000 + items in the first month.
Can I do this through SQL? Or do I need to convert the SQLite database to a different format? Or pull data from a SQLITE database and manually sync it?
source share