Click here to Skip to main content
15,913,100 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to create a simple window based application just to add, store data and view them. How can I store data for it and install application in client computer?
Posted

If your application database is based on local computer then install your database to the client computer and install your software.

you have to set connectionstring for database in your application code to interact with database.

If your application database is based on webserver then install your software on client machine and set the connectionstring of webserver database.

Please put some more details
 
Share this answer
 
Centralized you database and install application on clint machine.
You must need to make connection string according to Remote database and put it in app.config file and then use.
see connection string fromate.

if you want to use MS access then you can put accdb/mdb file on network drive or share folder and use IP address
XML
<add key="con" value="Data Source=192.168.1.1;Initial Catalog=omx;Persist Security Info=True;User ID=sa;Password=s12345%$#@!"/>
 
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