I have a C#.net application targeted to .net 3.5 developed in VS2008. The application can support multiple users. Each user will have their own preferences for things like screen sizes, fonts, report formats, and things of that sort.
I am using the "Settings" in the properties for the project to save this stuff, but I will need approximately 200 - 300 things saved before it is all said and done.
It seems to be working fine, but is this the best way to accomplish this?
Thanks for any inputs.
Pete
Loading
AL MUBARAKPosted Jun 21, 2012, 11:18 AM
Peter GeorgePosted Jun 21, 2012, 8:34 AM
I agree that DB operations are faster, but since the users are not required to log in with unique ID's, it would be difficult to save the data on a "per user" basis. If I use the settings, it saves the data to the local machine, so as long as the user logs in from "their pc" (which is normally the case with this application) the local settings are available.
Posted Jun 21, 2012, 12:24 AM
If your file size grown bigger then file reading and writing will take more time,but in database you can increase the permformance by creating indices.
Database Vs Files