Click here to Skip to main content
15,896,453 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
hi every one i want to know how to share the database and runing application with multiple computer

What I have tried:

i know that how to create the application and but i m new to make application in neetworking
Posted
Updated 26-Feb-16 1:31am

1 solution

USe SQL Server or MySql as your database: they are both designed for multiple user access, and all you then need to do is provide a connections string which lets leach client access the same database. (Store this in a config file, so you can change it, and you can also have a separate one for development so you don't mess up production data by accident while testing).
Then all you have to do is deploy your app to each computer, and it should all work.
 
Share this answer
 
Comments
Member 12270370 26-Feb-16 7:36am    
thanks sir

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