7 ms·
There really should be a "NoSQLite" or something equivalent to store hierarchical data instead of normalized data.
by CodeCompost 3y ago
There really should be a "NoSQLite" or something equivalent to store hierarchical data instead of normalized data.
- remram 3y agoYou can probably use SQLite for that, with a single key-value table.
- ttyprintk 3y agoThe json* family of tree and table functions are nowadays built in.
- OliverJones 3y agoIt's trivial to implement hierarchical data with recursive common table expressions. https://www.sqlite.org/lang_with.html https://www.sqlite.org/lang_with.html