Search notes:

SQLite: internal schema objects

The names of internal schema objects start with sqlite_.
sqlite_master
sqlite_sequence is used for autoincrement columns.
sqlite_stat1 is created by the (first?) analyze statement.
sqlite_stat3
sqlite_stat4
sqlite_dbdata
dbstat: information about the amount of disk space used (page size and allocation)

Index