Posted on
October 13, 2024
in
sql ·
sqlite
Using SQLite to store, query and modify JSON data with full flexibility. Uson JSON
columns works best, if you need to support a flexible datamodel and during prototyping.
Read More
Posted on
June 8, 2010
in
python ·
sqlite
The sqlite3 module provides sqlite.Row for optimized mapping access by column
name, but you can achieve equivalent, lightweight behavior using collections.namedtuple.
Read More