Hello I have Desktop application and i want to convert into Client Server That Many User Can insert, Delete and update simultaneously, I have made project in the C# .Net, so please suggest me what should i do.??
Thanks in advance
Hello I have Desktop application and i want to convert into Client Server That Many User Can insert, Delete and update simultaneously, I have made project in the C# .Net, so please suggest me what should i do.??
Thanks in advance
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
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/