Click here to Skip to main content
15,913,941 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how can I make an application build in c# installed on various systems and they will share one database at one system
Posted

For that you would need a dedicated server with a database installed on it. Then in your application, you would have a connection string to that database. Any machine running the application will be able to connect to the database.
 
Share this answer
 
Hello,
what you need is a database server like MySql, MS-Sql or Oracle. Installed on one of the machine & then use ADO.NET to perform the required CRUD operations from C# client, which ofcourse will be installed on the client machine.
The major requirement though is the presence of network.
In case if you are using access like database, then you can achieve it using web services installed on the same machine. On which this database is. Installed. Then you can access these services from C# client using webclient API.

Regards
 
Share this answer
 
Thanks buddy for your response I actually want the A , B , C , client system to be using one database resided on system E ... So I should just make the connection string to the name of d database on d E system right because I'm still little confused on how to go about it family thanks in advance buddy .
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900