I have a fairly complex winforms application and I m contemplating storing my config data in a sqllite db file rather than the ususal regular app.config/ xml files.
The reasons being -
- Data in a db is more resilient to accidental changes by administrators.
- I can easily conjure up a data entry form to manage configuration.
- The same db can be used to store user settings.
Does this make sense. Is there something that I am overlooking? Are there other better options out there? Has anyone tried to use object databases to do this?
-ilias