Migrating Application Configuration from Windows Registry to SQLite
Posted
by baris_a
on Stack Overflow
See other posts from Stack Overflow
or by baris_a
Published on 2010-04-27T14:53:43Z
Indexed on
2010/04/27
17:43 UTC
Read the original article
Hit count: 129
Currently, I am working on the migration mentioned in the title line. Problem is application configuration that is kept in registry has a tree like structure, for example:
X
|->Y
|->Z
|->SomeKey someValue
W
|->AnotherKey anotherValue
and so on.
How can I model this structure in SQLite (or any other DB)? If you have experience in similar problems, please send posts. Thanks in advance.
© Stack Overflow or respective owner