Expand description
The database_info tool: returns metadata about the SQLite database
including file size, page metrics, journal mode, WAL status, version, and
object counts.
Structs§
- Database
Info Input - The input parameters for the
database_infotool. - Database
Info Output - The result of querying database metadata.
- Database
Info Tool - Return metadata about the database: SQLite version, page size, page count, journal mode, WAL checkpoint status, total size in bytes, freelist (unused) page count, and the number of tables and indexes. Useful for monitoring database health and understanding storage characteristics.
- WalCheckpoint
Info - Information from a passive WAL checkpoint, as returned by
PRAGMA wal_checkpoint(PASSIVE).
Enums§
- Database
Info Error - Errors specific to the
database_infotool.