I'm designing a small piece of software for a company. Basically, they need to manage a large list of items. Edit, delete, and so on. Basically, I'm storing the data INITIALLY in SQLite locally on their computer. Once they get done modifying the "list" items, they will need to be synced over to the SQL Server database on the production server.
What would be the most reliable way to sync data between the databases? I'm also going to be storing small images for each item. I'm estimating anywhere between 1000~5000+ items within the first month.
Can I do this all via SQL? Or do I need to convert the SQLite database to another format? Or pull the data from the SQLITE DB, and manually sync it?