Lines Matching full:dbstat
219942 /************** Begin file dbstat.c ******************************************/
219955 ** This file contains an implementation of the "dbstat" virtual table.
219957 ** The dbstat virtual table is used to extract low-level storage
219962 ** Additional information is available on the "dbstat.html" page of the
220059 /* The cursor for scanning the dbstat virtual table */
220084 /* An instance of the DBSTAT virtual table */
220096 ** Connect to or create a new DBSTAT virtual table.
220140 ** Disconnect from or destroy the DBSTAT virtual table.
220172 /* Force DBSTAT table should always be the right-most table in a join */
220229 ** Open a new DBSTAT cursor.
220297 ** Close a DBSTAT cursor.
220507 ** Move a DBSTAT cursor to the next entry. Normally, the next
220813 ** Invoke this routine to register the "dbstat" virtual table module
220843 return sqlite3_create_module(db, "dbstat", &dbstat_module, 0);
220849 /************** End of dbstat.c **********************************************/