using app.config file

  • Thread starter Thread starter c_shah
  • Start date Start date
C

c_shah

Why do you want to store database connection string inside application
configration file app.config in case of windows forms application?
Someone told me that it can be changed easily changed once application
is deployed. Can anyone explain? Thanks!
 
Config files make updating settings etc. a very easy thing to do as the
config files are just text files. Anyone can in theory alter these who has
permissions to the directory in which it resides. There are however ways to
encrypt the strings, so you can secure your credentials and they are not
easily reusable.

http://www.developer.com/net/vb/article.php/3500906
 
Back
Top