SQLite Runtime Status body { margin: auto; font-family: "Verdana" "sans-serif"; padding: 8px 1%; } a { color: #45735f } a:visited { color: #734559 } .logo { position:absolute; margin:3px; } .tagline { float:right; text-align:right; font-style:italic; width:240px; margin:12px; margin-top:58px; } .toolbar { font-variant: small-caps; text-align: center; line-height: 1.6em; margin: 0; padding:1px 8px; } .toolbar a { color: white; text-decoration: none; padding: 6px 12px; } .toolbar a:visited { color: white; } .toolbar a:hover { color: #80a796; background: white; } .content { margin: 5%; } .content dt { font-weight:bold; } .content dd { margin-bottom: 25px; margin-left:20%; } .content ul { padding:0px; padding-left: 15px; margin:0px; } /* rounded corners */ .se { background: url(../images/se.png) 100% 100% no-repeat #80a796} .sw { background: url(../images/sw.png) 0% 100% no-repeat } .ne { background: url(../images/ne.png) 100% 0% no-repeat } .nw { background: url(../images/nw.png) 0% 0% no-repeat } border="0"> Small. Fast. Reliable.Choose any three. About Sitemap Documentation Download License News Developers Support SQLite C InterfaceSQLite Runtime Statusint sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag); Important: This interface is experimental and is subject to change without notice. This interface is used to retrieve runtime status information about the preformance of SQLite, and optionally to reset various highwater marks. The first argument is an integer code for the specific parameter to measure. Recognized integer codes are of the form SQLITE_STATUS_.... The current value of the parameter is returned into *pCurrent. The highest recorded value is returned in *pHighwater. If the resetFlag is true, then the highest record value is reset after *pHighwater is written. Some parameters do not record the highest value. For those parameters nothing is written into *pHighwater and the resetFlag is ignored. Other parameters record only the highwater mark and not the current value. For these latter parameters nothing is written into *pCurrent. This routine returns SQLITE_OK on success and a non-zero error code on failure. This routine is threadsafe but is not atomic. This routine can called while other threads are running the same or different SQLite interfaces. However the values returned in *pCurrent and *pHighwater reflect the status of SQLite at different points in time and it is possible that another thread might change the parameter in between the times when *pCurrent and *pHighwater are written. See also: sqlite3_db_status() See also lists of Objects, Constants, and Functions. This page last modified 2008/12/09 18:44:04 UTC