Lines Matching full:dbstat
211230 /************** Begin file dbstat.c ******************************************/
211243 ** This file contains an implementation of the "dbstat" virtual table.
211245 ** The dbstat virtual table is used to extract low-level storage
211250 ** Additional information is available on the "dbstat.html" page of the
211347 /* The cursor for scanning the dbstat virtual table */
211372 /* An instance of the DBSTAT virtual table */
211384 ** Connect to or create a new DBSTAT virtual table.
211427 ** Disconnect from or destroy the DBSTAT virtual table.
211458 /* Force DBSTAT table should always be the right-most table in a join */
211515 ** Open a new DBSTAT cursor.
211583 ** Close a DBSTAT cursor.
211793 ** Move a DBSTAT cursor to the next entry. Normally, the next
212097 ** Invoke this routine to register the "dbstat" virtual table module
212126 return sqlite3_create_module(db, "dbstat", &dbstat_module, 0);
212132 /************** End of dbstat.c **********************************************/