Reputation: 2579
I have a desktop application and i want to convert it into client-server where many users can insert, delete and update simultaneously,
I have made project in the C# .Net, so what should i do?
Upvotes: 4
Views: 9876
Reputation: 45
This is a great tutorial: With it I've written numerous Client-Server apps.
http://www.codeguru.com/csharp/csharp/cs_misc/sampleprograms/print.php/c7695/
Upvotes: 2
Reputation: 1770
First migrate your database to something like SQL Server. To manage simultaneous updates use a version column in the tables to detect updates by other uses and take appropriate actions. Or else use the database table locking mechanism to manage simultaneous updates
Upvotes: -1