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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top