You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It might be handy to be able to configure SQLiteCpp to compile sqlite with the DBSTAT compile option
The DBSTAT virtual table is a read-only eponymous virtual table that returns information about the amount of disk space used to store the content of an SQLite database. Example use cases for the DBSTAT virtual table include the sqlite3_analyzer.exe utility program and the table size pie-chart in the Fossil-implemented version control system for SQLite.
The DBSTAT virtual table is an eponymous virtual table, meaning that is not necessary to run CREATE VIRTUAL TABLE to create an instance of the dbstat virtual table before using it. The "dbstat" module name can be used as if it were a table name to query the dbstat virtual table directly. For example:
The text was updated successfully, but these errors were encountered:
jcurtis-cc
changed the title
Support building SQLite with with DBSTAT compile option
Support building SQLite with with SQLITE_ENABLE_DBSTAT_VTAB compile option
May 29, 2023
… eponymous virtual table extension when building internal sqlite3 library.
See more here: https://www.sqlite.org/dbstat.htmlFix#426 Support building SQLite with with SQLITE_ENABLE_DBSTAT_VTAB compile option
Disabled by default
It might be handy to be able to configure SQLiteCpp to compile sqlite with the
DBSTAT
compile optionThe text was updated successfully, but these errors were encountered: