- New command:
sqlite-utils analyze-tables my.db
outputs useful information about the table columns in the database, such as the number of distinct values and how many rows are null. See Analyzing tables for documentation. (#207) - New
table.analyze_column(column)
Python method used by theanalyze-tables
command - see Analyzing a column. - The
table.update()
method now correctly handles values that should be stored as JSON. Thanks, Andreas Madsack. (#204)