views:

32

answers:

2

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

A: 

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

Raj
Terrible idea - this will require giving every client direct access to the database. Instead, you want a server application that accesses the database and controls what users can and can't do.
Nathan Ridley
Well the way his question was phrased I did't feel he has the expertise to go to the full blown server based app hence my suggestion.
Raj
A: 

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/

Christiaan Kruger