Lines Matching full:dbstat
211262 /************** Begin file dbstat.c ******************************************/
211275 ** This file contains an implementation of the "dbstat" virtual table.
211277 ** The dbstat virtual table is used to extract low-level storage
211282 ** Additional information is available on the "dbstat.html" page of the
211379 /* The cursor for scanning the dbstat virtual table */
211404 /* An instance of the DBSTAT virtual table */
211416 ** Connect to or create a new DBSTAT virtual table.
211459 ** Disconnect from or destroy the DBSTAT virtual table.
211490 /* Force DBSTAT table should always be the right-most table in a join */
211547 ** Open a new DBSTAT cursor.
211615 ** Close a DBSTAT cursor.
211825 ** Move a DBSTAT cursor to the next entry. Normally, the next
212129 ** Invoke this routine to register the "dbstat" virtual table module
212158 return sqlite3_create_module(db, "dbstat", &dbstat_module, 0);
212164 /************** End of dbstat.c **********************************************/