Reputation: 11
I am developing a C# Windows Forms app for event management. There will be 15 gates with RFID readers. These readers will read the UID and query the database to check if it is unique entry for that day.
Now if for some reason, SQL Server is not available, I want the app to store the data in a local database and sync as soon as the connectivity is restored.
Any idea on how should I do it?
Thanks
Upvotes: 0
Views: 180
Reputation: 41799
You could use SQL Server replication, and install SQL Server Express with a local copy of the database on each device.
Upvotes: 1