diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 14:07:11 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 14:07:11 +0000 |
commit | 63847496f14c813a5d80efd5b7de0f1294ffe1e3 (patch) | |
tree | 01c7571c7c762ceee70638549a99834fdd7c411b /www/doc_backlink_crossref.html | |
parent | Initial commit. (diff) | |
download | sqlite3-63847496f14c813a5d80efd5b7de0f1294ffe1e3.tar.xz sqlite3-63847496f14c813a5d80efd5b7de0f1294ffe1e3.zip |
Adding upstream version 3.45.1.upstream/3.45.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'www/doc_backlink_crossref.html')
-rw-r--r-- | www/doc_backlink_crossref.html | 17346 |
1 files changed, 17346 insertions, 0 deletions
diff --git a/www/doc_backlink_crossref.html b/www/doc_backlink_crossref.html new file mode 100644 index 0000000..ab6e15c --- /dev/null +++ b/www/doc_backlink_crossref.html @@ -0,0 +1,17346 @@ +<!DOCTYPE html> +<html><head> +<meta name="viewport" content="width=device-width, initial-scale=1.0"> +<meta http-equiv="content-type" content="text/html; charset=UTF-8"> +<link href="sqlite.css" rel="stylesheet"> +<title>Backlink Crossreference</title> +<!-- path= --> +</head> +<body> +<div class=nosearch> +<a href="index.html"> +<img class="logo" src="images/sqlite370_banner.gif" alt="SQLite" border="0"> +</a> +<div><!-- IE hack to prevent disappearing logo --></div> +<div class="tagline desktoponly"> +Small. Fast. Reliable.<br>Choose any three. +</div> +<div class="menu mainmenu"> +<ul> +<li><a href="index.html">Home</a> +<li class='mobileonly'><a href="javascript:void(0)" onclick='toggle_div("submenu")'>Menu</a> +<li class='wideonly'><a href='about.html'>About</a> +<li class='desktoponly'><a href="docs.html">Documentation</a> +<li class='desktoponly'><a href="download.html">Download</a> +<li class='wideonly'><a href='copyright.html'>License</a> +<li class='desktoponly'><a href="support.html">Support</a> +<li class='desktoponly'><a href="prosupport.html">Purchase</a> +<li class='search' id='search_menubutton'> +<a href="javascript:void(0)" onclick='toggle_search()'>Search</a> +</ul> +</div> +<div class="menu submenu" id="submenu"> +<ul> +<li><a href='about.html'>About</a> +<li><a href='docs.html'>Documentation</a> +<li><a href='download.html'>Download</a> +<li><a href='support.html'>Support</a> +<li><a href='prosupport.html'>Purchase</a> +</ul> +</div> +<div class="searchmenu" id="searchmenu"> +<form method="GET" action="search"> +<select name="s" id="searchtype"> +<option value="d">Search Documentation</option> +<option value="c">Search Changelog</option> +</select> +<input type="text" name="q" id="searchbox" value=""> +<input type="submit" value="Go"> +</form> +</div> +</div> +<script> +function toggle_div(nm) { +var w = document.getElementById(nm); +if( w.style.display=="block" ){ +w.style.display = "none"; +}else{ +w.style.display = "block"; +} +} +function toggle_search() { +var w = document.getElementById("searchmenu"); +if( w.style.display=="block" ){ +w.style.display = "none"; +} else { +w.style.display = "block"; +setTimeout(function(){ +document.getElementById("searchbox").focus() +}, 30); +} +} +function div_off(nm){document.getElementById(nm).style.display="none";} +window.onbeforeunload = function(e){div_off("submenu");} +/* Disable the Search feature if we are not operating from CGI, since */ +/* Search is accomplished using CGI and will not work without it. */ +if( !location.origin || !location.origin.match || !location.origin.match(/http/) ){ +document.getElementById("search_menubutton").style.display = "none"; +} +/* Used by the Hide/Show button beside syntax diagrams, to toggle the */ +function hideorshow(btn,obj){ +var x = document.getElementById(obj); +var b = document.getElementById(btn); +if( x.style.display!='none' ){ +x.style.display = 'none'; +b.innerHTML='show'; +}else{ +x.style.display = ''; +b.innerHTML='hide'; +} +return false; +} +var antiRobot = 0; +function antiRobotGo(){ +if( antiRobot!=3 ) return; +antiRobot = 7; +var j = document.getElementById("mtimelink"); +if(j && j.hasAttribute("data-href")) j.href=j.getAttribute("data-href"); +} +function antiRobotDefense(){ +document.body.onmousedown=function(){ +antiRobot |= 2; +antiRobotGo(); +document.body.onmousedown=null; +} +document.body.onmousemove=function(){ +antiRobot |= 2; +antiRobotGo(); +document.body.onmousemove=null; +} +setTimeout(function(){ +antiRobot |= 1; +antiRobotGo(); +}, 100) +antiRobotGo(); +} +antiRobotDefense(); +</script> +<ul><li>--safe command-line option → <a href="changes.html#version_3_37_0">changes.html#version_3_37_0</a> + <a href="releaselog/3_37_0.html">releaselog/3_37_0.html</a> + <a href="releaselog/3_37_1.html">releaselog/3_37_1.html</a> + <a href="releaselog/3_37_2.html">releaselog/3_37_2.html</a> +<li>--update option → <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> +<li>-DSQLITE_DEBUG → <a href="debugging.html">debugging.html</a> +<li>-DSQLITE_DEFAULT_FOREIGN_KEYS → <a href="quirks.html">quirks.html</a> +<li>-DSQLITE_DIRECT_OVERFLOW_READ → <a href="fasterthanfs.html">fasterthanfs.html</a> +<li>-DSQLITE_DQS → <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfigdqsddl">c3ref/c_dbconfig_defensive.html#sqlitedbconfigdqsddl</a> + <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfigdqsdml">c3ref/c_dbconfig_defensive.html#sqlitedbconfigdqsdml</a> + <a href="capi3ref.html#sqlitedbconfigdqsddl">capi3ref.html#sqlitedbconfigdqsddl</a> + <a href="capi3ref.html#sqlitedbconfigdqsdml">capi3ref.html#sqlitedbconfigdqsdml</a> + <a href="changes.html#version_3_29_0">changes.html#version_3_29_0</a> + <a href="news.html">news.html</a> + <a href="quirks.html#dblquote">quirks.html#dblquote</a> + <a href="releaselog/3_29_0.html">releaselog/3_29_0.html</a> +<li>-DSQLITE_ENABLE_BYTECODE_VTAB → <a href="bytecodevtab.html">bytecodevtab.html</a> +<li>-DSQLITE_ENABLE_DBPAGE_VTAB → <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="cli.html#compiling">cli.html#compiling</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> +<li>-DSQLITE_ENABLE_DBSTAT_VTAB → <a href="amalgamation.html">amalgamation.html</a> + <a href="cli.html#compiling">cli.html#compiling</a> + <a href="howtocompile.html#cli">howtocompile.html#cli</a> +<li>-DSQLITE_ENABLE_EXPLAIN_COMMENTS → <a href="changes.html#version_3_14_2">changes.html#version_3_14_2</a> + <a href="cli.html#compiling">cli.html#compiling</a> + <a href="debugging.html">debugging.html</a> + <a href="howtocompile.html#cli">howtocompile.html#cli</a> + <a href="opcode.html#subprog">opcode.html#subprog</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> +<li>-DSQLITE_ENABLE_FTS3 → <a href="amalgamation.html">amalgamation.html</a> +<li>-DSQLITE_ENABLE_FTS4 → <a href="cli.html#compiling">cli.html#compiling</a> + <a href="howtocompile.html#cli">howtocompile.html#cli</a> +<li>-DSQLITE_ENABLE_FTS5 → <a href="amalgamation.html">amalgamation.html</a> + <a href="cli.html#compiling">cli.html#compiling</a> + <a href="howtocompile.html#cli">howtocompile.html#cli</a> +<li>-DSQLITE_ENABLE_GEOPOLY → <a href="geopoly.html">geopoly.html</a> +<li>-DSQLITE_ENABLE_ICU → <a href="quirks.html">quirks.html</a> +<li>-DSQLITE_ENABLE_JSON1 → <a href="changes.html#version_3_38_0">changes.html#version_3_38_0</a> + <a href="cli.html#compiling">cli.html#compiling</a> + <a href="releaselog/3_38_0.html">releaselog/3_38_0.html</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> +<li>-DSQLITE_ENABLE_MATH_FUNCTIONS → <a href="changes.html#version_3_35_0">changes.html#version_3_35_0</a> + <a href="howtocompile.html#cli">howtocompile.html#cli</a> + <a href="lang_mathfunc.html">lang_mathfunc.html</a> + <a href="releaselog/3_35_0.html">releaselog/3_35_0.html</a> + <a href="releaselog/3_35_1.html">releaselog/3_35_1.html</a> + <a href="releaselog/3_35_2.html">releaselog/3_35_2.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> +<li>-DSQLITE_ENABLE_MEMSYS5 → <a href="security.html">security.html</a> +<li>-DSQLITE_ENABLE_OFFSET_SQL_FUNC → <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="cli.html#compiling">cli.html#compiling</a> + <a href="lang_corefunc.html#sqlite_offset">lang_corefunc.html#sqlite_offset</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> +<li>-DSQLITE_ENABLE_RBU → <a href="amalgamation.html">amalgamation.html</a> +<li>-DSQLITE_ENABLE_RTREE → <a href="amalgamation.html">amalgamation.html</a> + <a href="cli.html#compiling">cli.html#compiling</a> + <a href="howtocompile.html#cli">howtocompile.html#cli</a> +<li>-DSQLITE_ENABLE_SESSION → <a href="amalgamation.html">amalgamation.html</a> + <a href="cves.html#cvetab">cves.html#cvetab</a> +<li>-DSQLITE_ENABLE_SNAPSHOT → <a href="rescode.html#error_snapshot">rescode.html#error_snapshot</a> +<li>-DSQLITE_ENABLE_STMTVTAB → <a href="cli.html#compiling">cli.html#compiling</a> +<li>-DSQLITE_ENABLE_UNKNOWN_SQL_FUNCTION → <a href="cli.html#compiling">cli.html#compiling</a> +<li>-DSQLITE_HAVE_ZLIB → <a href="cli.html#compiling">cli.html#compiling</a> +<li>-DSQLITE_INTROSPECTION_PRAGMAS → <a href="cli.html#compiling">cli.html#compiling</a> +<li>-DSQLITE_OMIT_DESERIALIZE → <a href="changes.html#version_3_36_0">changes.html#version_3_36_0</a> + <a href="releaselog/3_36_0.html">releaselog/3_36_0.html</a> +<li>-DSQLITE_OMIT_INTROSPECTION_PRAGMAS → <a href="changes.html#version_3_30_0">changes.html#version_3_30_0</a> + <a href="releaselog/3_30_0.html">releaselog/3_30_0.html</a> + <a href="releaselog/3_30_1.html">releaselog/3_30_1.html</a> +<li>-DSQLITE_OMIT_JSON → <a href="changes.html#version_3_38_0">changes.html#version_3_38_0</a> + <a href="compile.html#enable_json1">compile.html#enable_json1</a> + <a href="releaselog/3_38_0.html">releaselog/3_38_0.html</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> +<li>-DSQLITE_OMIT_SHARED_CACHE → <a href="c3ref/enable_shared_cache.html">c3ref/enable_shared_cache.html</a> + <a href="capi3ref.html#sqlite3_enable_shared_cache">capi3ref.html#sqlite3_enable_shared_cache</a> + <a href="sharedcache.html#dontuse">sharedcache.html#dontuse</a> +<li>-DSQLITE_OMIT_VACUUM → <a href="c3ref/keyword_check.html">c3ref/keyword_check.html</a> + <a href="capi3ref.html#sqlite3_keyword_check">capi3ref.html#sqlite3_keyword_check</a> +<li>-DSQLITE_PRINTF_PRECISION_LIMIT → <a href="security.html">security.html</a> +<li>-DSQLITE_STRICT_SUBTYPE → <a href="changes.html#version_3_45_0">changes.html#version_3_45_0</a> + <a href="releaselog/3_45_0.html">releaselog/3_45_0.html</a> + <a href="releaselog/3_45_1.html">releaselog/3_45_1.html</a> +<li>-DSQLITE_TEMP_STORE → <a href="howtocorrupt.html#svptbug">howtocorrupt.html#svptbug</a> + <a href="news.html">news.html</a> +<li>-DSQLITE_THREADSAFE → <a href="cli.html#compiling">cli.html#compiling</a> + <a href="fasterthanfs.html">fasterthanfs.html</a> +<li>-DSQLITE_TRUSTED_SCHEMA → <a href="appfunc.html#sec">appfunc.html#sec</a> + <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="pragma.html#pragma_trusted_schema">pragma.html#pragma_trusted_schema</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> + <a href="security.html#baddb">security.html#baddb</a> +<li>-DSQLITE_USE_URI → <a href="lang_vacuum.html#vacuuminto">lang_vacuum.html#vacuuminto</a> +<li>.archive command → <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="cli.html#compiling">cli.html#compiling</a> + <a href="cli.html#safemode">cli.html#safemode</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> + <a href="sqlar.html#cltools">sqlar.html#cltools</a> + <a href="vtablist.html">vtablist.html</a> + <a href="whentouse.html#container">whentouse.html#container</a> +<li>.connection → <a href="changes.html#version_3_37_0">changes.html#version_3_37_0</a> + <a href="releaselog/3_37_0.html">releaselog/3_37_0.html</a> + <a href="releaselog/3_37_1.html">releaselog/3_37_1.html</a> + <a href="releaselog/3_37_2.html">releaselog/3_37_2.html</a> +<li>.databases → <a href="changes.html#version_3_34_0">changes.html#version_3_34_0</a> + <a href="releaselog/3_34_0.html">releaselog/3_34_0.html</a> + <a href="releaselog/3_34_1.html">releaselog/3_34_1.html</a> +<li>.dump → <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="changes.html#version_3_32_0">changes.html#version_3_32_0</a> + <a href="changes.html#version_3_34_0">changes.html#version_3_34_0</a> + <a href="changes.html#version_3_35_1">changes.html#version_3_35_1</a> + <a href="nulinstr.html">nulinstr.html</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> + <a href="releaselog/3_32_0.html">releaselog/3_32_0.html</a> + <a href="releaselog/3_32_1.html">releaselog/3_32_1.html</a> + <a href="releaselog/3_32_2.html">releaselog/3_32_2.html</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> + <a href="releaselog/3_34_0.html">releaselog/3_34_0.html</a> + <a href="releaselog/3_34_1.html">releaselog/3_34_1.html</a> + <a href="releaselog/3_35_1.html">releaselog/3_35_1.html</a> + <a href="releaselog/3_35_2.html">releaselog/3_35_2.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> + <a href="stricttables.html">stricttables.html</a> + <a href="vtab.html#xshadowname">vtab.html#xshadowname</a> +<li>.excel → <a href="changes.html#version_3_32_0">changes.html#version_3_32_0</a> + <a href="releaselog/3_32_0.html">releaselog/3_32_0.html</a> + <a href="releaselog/3_32_1.html">releaselog/3_32_1.html</a> + <a href="releaselog/3_32_2.html">releaselog/3_32_2.html</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> +<li>.expert command → <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="cves.html#cvetab">cves.html#cvetab</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> +<li>.fullschema → <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> +<li>.import → <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="changes.html#version_3_32_0">changes.html#version_3_32_0</a> + <a href="changes.html#version_3_34_0">changes.html#version_3_34_0</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> + <a href="releaselog/3_32_0.html">releaselog/3_32_0.html</a> + <a href="releaselog/3_32_1.html">releaselog/3_32_1.html</a> + <a href="releaselog/3_32_2.html">releaselog/3_32_2.html</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> + <a href="releaselog/3_34_0.html">releaselog/3_34_0.html</a> + <a href="releaselog/3_34_1.html">releaselog/3_34_1.html</a> +<li>.import command → <a href="changes.html#version_3_38_0">changes.html#version_3_38_0</a> + <a href="cli.html#safemode">cli.html#safemode</a> + <a href="releaselog/3_38_0.html">releaselog/3_38_0.html</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> +<li>.imposter dot-command → <a href="changes.html#version_3_16_0">changes.html#version_3_16_0</a> + <a href="releaselog/3_16_0.html">releaselog/3_16_0.html</a> + <a href="releaselog/3_16_1.html">releaselog/3_16_1.html</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> +<li>.load command → <a href="cli.html#safemode">cli.html#safemode</a> +<li>.mode → <a href="changes.html#version_3_33_0">changes.html#version_3_33_0</a> + <a href="changes.html#version_3_34_0">changes.html#version_3_34_0</a> + <a href="changes.html#version_3_35_3">changes.html#version_3_35_3</a> + <a href="releaselog/3_33_0.html">releaselog/3_33_0.html</a> + <a href="releaselog/3_34_0.html">releaselog/3_34_0.html</a> + <a href="releaselog/3_34_1.html">releaselog/3_34_1.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> +<li>.mode quote → <a href="nulinstr.html">nulinstr.html</a> +<li>.once → <a href="changes.html#version_3_32_0">changes.html#version_3_32_0</a> + <a href="releaselog/3_32_0.html">releaselog/3_32_0.html</a> + <a href="releaselog/3_32_1.html">releaselog/3_32_1.html</a> + <a href="releaselog/3_32_2.html">releaselog/3_32_2.html</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> +<li>.open → <a href="cli.html#dotconn">cli.html#dotconn</a> +<li>.open command → <a href="cli.html#safemode">cli.html#safemode</a> +<li>.output → <a href="changes.html#version_3_32_0">changes.html#version_3_32_0</a> + <a href="releaselog/3_32_0.html">releaselog/3_32_0.html</a> + <a href="releaselog/3_32_1.html">releaselog/3_32_1.html</a> + <a href="releaselog/3_32_2.html">releaselog/3_32_2.html</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> +<li>.parameter command → <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> +<li>.read → <a href="changes.html#version_3_34_0">changes.html#version_3_34_0</a> + <a href="releaselog/3_34_0.html">releaselog/3_34_0.html</a> + <a href="releaselog/3_34_1.html">releaselog/3_34_1.html</a> +<li>.recover dot-command → <a href="changes.html#version_3_30_0">changes.html#version_3_30_0</a> + <a href="releaselog/3_30_0.html">releaselog/3_30_0.html</a> + <a href="releaselog/3_30_1.html">releaselog/3_30_1.html</a> +<li>.schema → <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="changes.html#version_3_34_0">changes.html#version_3_34_0</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> + <a href="releaselog/3_34_0.html">releaselog/3_34_0.html</a> + <a href="releaselog/3_34_1.html">releaselog/3_34_1.html</a> +<li>.selftest dot-command → <a href="changes.html#version_3_18_0">changes.html#version_3_18_0</a> + <a href="releaselog/3_18_0.html">releaselog/3_18_0.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> +<li>.sha3sum dot-command → <a href="changes.html#version_3_18_0">changes.html#version_3_18_0</a> + <a href="releaselog/3_18_0.html">releaselog/3_18_0.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> +<li>.tables → <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> +<li>34to35 → <a href="35to36.html">35to36.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>35 Faster Than The Filesystem → <a href="whyc.html">whyc.html</a> +<li>35to36 → <a href="changes.html#version_3_6_1">changes.html#version_3_6_1</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_6_0.html">releaselog/3_6_0.html</a> +<li>about 200 SQL statements per webpage → <a href="whentouse.html#website">whentouse.html#website</a> +<li>abs → <a href="arch.html">arch.html</a> + <a href="c3ref/c_deterministic.html#sqlitedeterministic">c3ref/c_deterministic.html#sqlitedeterministic</a> + <a href="c3ref/c_deterministic.html#sqliteinnocuous">c3ref/c_deterministic.html#sqliteinnocuous</a> + <a href="capi3ref.html#sqlitedeterministic">capi3ref.html#sqlitedeterministic</a> + <a href="capi3ref.html#sqliteinnocuous">capi3ref.html#sqliteinnocuous</a> + <a href="deterministic.html">deterministic.html</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> +<li>ACID → <a href="useovernet.html">useovernet.html</a> +<li>acos → <a href="lang_mathfunc.html">lang_mathfunc.html</a> +<li>acosh → <a href="lang_mathfunc.html">lang_mathfunc.html</a> +<li>add column → <a href="lang_altertable.html#otheralter">lang_altertable.html#otheralter</a> +<li>advantages of WAL-mode → <a href="wal.html#busy">wal.html#busy</a> +<li>affinities → <a href="optoverview.html#constprop">optoverview.html#constprop</a> +<li>affinity → <a href="faq.html#q3">faq.html#q3</a> + <a href="fileformat2.html##sqltab">fileformat2.html##sqltab</a> + <a href="foreignkeys.html#parentchild">foreignkeys.html#parentchild</a> + <a href="fts3.html#simple_fts_queries">fts3.html#simple_fts_queries</a> + <a href="gencol.html">gencol.html</a> + <a href="lang_createtable.html#rowid">lang_createtable.html#rowid</a> + <a href="lang_createtable.html#tablecoldef">lang_createtable.html#tablecoldef</a> + <a href="lang_select.html#fromclause">lang_select.html#fromclause</a> + <a href="oldnews.html">oldnews.html</a> + <a href="optoverview.html#like_opt">optoverview.html#like_opt</a> + <a href="withoutrowid.html">withoutrowid.html</a> +<li>affshort → <a href="appfileformat.html">appfileformat.html</a> + <a href="famous.html">famous.html</a> + <a href="index.html">index.html</a> +<li>AFL → <a href="testing.html#fuzzcheck">testing.html#fuzzcheck</a> +<li>aggfunc → <a href="lang.html">lang.html</a> + <a href="lang_expr.html#*funcinexpr">lang_expr.html#*funcinexpr</a> + <a href="lang_select.html#bareagg">lang_select.html#bareagg</a> + <a href="windowfunctions.html">windowfunctions.html</a> + <a href="windowfunctions.html#aggwinfunc">windowfunctions.html#aggwinfunc</a> +<li>aggregate functions → <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_with.html#recursivecte">lang_with.html#recursivecte</a> + <a href="windowfunctions.html">windowfunctions.html</a> +<li>Aggregate functions → <a href="changes.html#version_3_44_0">changes.html#version_3_44_0</a> + <a href="releaselog/3_44_0.html">releaselog/3_44_0.html</a> + <a href="releaselog/3_44_1.html">releaselog/3_44_1.html</a> + <a href="releaselog/3_44_2.html">releaselog/3_44_2.html</a> +<li>Aggregate Functions → <a href="fullsql.html">fullsql.html</a> + <a href="json1.html#jgroupobjectb">json1.html#jgroupobjectb</a> + <a href="windowfunctions.html#aggwinfunc">windowfunctions.html#aggwinfunc</a> +<li>aggregate JSON SQL functions → <a href="json1.html#json5">json1.html#json5</a> +<li>aggregate SQL functions → <a href="json1.html">json1.html</a> +<li>aggregate window functions → <a href="c3ref/create_function.html">c3ref/create_function.html</a> + <a href="capi3ref.html#sqlite3_create_function">capi3ref.html#sqlite3_create_function</a> + <a href="windowfunctions.html">windowfunctions.html</a> + <a href="windowfunctions.html#biwinfunc">windowfunctions.html#biwinfunc</a> +<li>aggregate-function-invocation → <a href="lang_aggfunc.html">lang_aggfunc.html</a> + <a href="lang_expr.html#*funcinexpr">lang_expr.html#*funcinexpr</a> +<li>ALTER → <a href="foreignkeys.html">foreignkeys.html</a> +<li>ALTER TABLE → <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="changes.html#version_3_24_0">changes.html#version_3_24_0</a> + <a href="changes.html#version_3_25_0">changes.html#version_3_25_0</a> + <a href="changes.html#version_3_26_0">changes.html#version_3_26_0</a> + <a href="changes.html#version_3_38_0">changes.html#version_3_38_0</a> + <a href="changes.html#version_3_7_9">changes.html#version_3_7_9</a> + <a href="changes.html#version_3_8_7_1">changes.html#version_3_8_7_1</a> + <a href="compile.html#omit_altertable">compile.html#omit_altertable</a> + <a href="fileformat2.html#ffschema">fileformat2.html#ffschema</a> + <a href="fileformat2.html#schemaformat">fileformat2.html#schemaformat</a> + <a href="fileformat2.html#serialtype">fileformat2.html#serialtype</a> + <a href="foreignkeys.html#fk_actions">foreignkeys.html#fk_actions</a> + <a href="lang.html">lang.html</a> + <a href="lang_analyze.html#req">lang_analyze.html#req</a> + <a href="lang_createtable.html#notnullconst">lang_createtable.html#notnullconst</a> + <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_naming.html">lang_naming.html</a> + <a href="news.html">news.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="releaselog/3_24_0.html">releaselog/3_24_0.html</a> + <a href="releaselog/3_25_0.html">releaselog/3_25_0.html</a> + <a href="releaselog/3_25_1.html">releaselog/3_25_1.html</a> + <a href="releaselog/3_25_2.html">releaselog/3_25_2.html</a> + <a href="releaselog/3_25_3.html">releaselog/3_25_3.html</a> + <a href="releaselog/3_26_0.html">releaselog/3_26_0.html</a> + <a href="releaselog/3_38_0.html">releaselog/3_38_0.html</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> + <a href="releaselog/3_7_9.html">releaselog/3_7_9.html</a> + <a href="releaselog/3_8_7_1.html">releaselog/3_8_7_1.html</a> + <a href="schematab.html">schematab.html</a> + <a href="vtab.html">vtab.html</a> +<li>ALTER TABLE ADD COLUMN → <a href="changes.html#version_3_37_0">changes.html#version_3_37_0</a> + <a href="gencol.html">gencol.html</a> + <a href="releaselog/3_37_0.html">releaselog/3_37_0.html</a> + <a href="releaselog/3_37_1.html">releaselog/3_37_1.html</a> + <a href="releaselog/3_37_2.html">releaselog/3_37_2.html</a> +<li>ALTER TABLE DROP COLUMN → <a href="changes.html#version_3_35_0">changes.html#version_3_35_0</a> + <a href="releaselog/3_35_0.html">releaselog/3_35_0.html</a> + <a href="releaselog/3_35_1.html">releaselog/3_35_1.html</a> + <a href="releaselog/3_35_2.html">releaselog/3_35_2.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> +<li>ALTER TABLE RENAME → <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfiglegacyaltertable">c3ref/c_dbconfig_defensive.html#sqlitedbconfiglegacyaltertable</a> + <a href="capi3ref.html#sqlitedbconfiglegacyaltertable">capi3ref.html#sqlitedbconfiglegacyaltertable</a> + <a href="changes.html#version_3_39_1">changes.html#version_3_39_1</a> + <a href="pragma.html#pragma_legacy_alter_table">pragma.html#pragma_legacy_alter_table</a> + <a href="releaselog/3_39_1.html">releaselog/3_39_1.html</a> + <a href="releaselog/3_39_2.html">releaselog/3_39_2.html</a> + <a href="releaselog/3_39_3.html">releaselog/3_39_3.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> +<li>ALTER TABLE RENAME COLUMN → <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> +<li>ALTER TABLE RENAME documentation → <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfiglegacyaltertable">c3ref/c_dbconfig_defensive.html#sqlitedbconfiglegacyaltertable</a> + <a href="capi3ref.html#sqlitedbconfiglegacyaltertable">capi3ref.html#sqlitedbconfiglegacyaltertable</a> +<li>alter-table-stmt → <a href="lang_altertable.html">lang_altertable.html</a> +<li>amalgamation → <a href="appfileformat.html">appfileformat.html</a> + <a href="changes.html#version_3_17_0">changes.html#version_3_17_0</a> + <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="changes.html#version_3_41_0">changes.html#version_3_41_0</a> + <a href="changes.html#version_3_9_0">changes.html#version_3_9_0</a> + <a href="cksumvfs.html">cksumvfs.html</a> + <a href="cli.html#compiling">cli.html#compiling</a> + <a href="compile.html#enable_fts3">compile.html#enable_fts3</a> + <a href="compile.html#enable_fts4">compile.html#enable_fts4</a> + <a href="compile.html#enable_fts5">compile.html#enable_fts5</a> + <a href="compile.html#enable_geopoly">compile.html#enable_geopoly</a> + <a href="compile.html#enable_hidden_columns">compile.html#enable_hidden_columns</a> + <a href="compile.html#enable_update_delete_limit">compile.html#enable_update_delete_limit</a> + <a href="compile.html#omitfeatures">compile.html#omitfeatures</a> + <a href="cpu.html">cpu.html</a> + <a href="cves.html#cvetab">cves.html#cvetab</a> + <a href="dbpage.html">dbpage.html</a> + <a href="download.html#srctree">download.html#srctree</a> + <a href="faq.html#q23">faq.html#q23</a> + <a href="fasterthanfs.html">fasterthanfs.html</a> + <a href="floatingpoint.html#decext">floatingpoint.html#decext</a> + <a href="floatingpoint.html#ieee754ext">floatingpoint.html#ieee754ext</a> + <a href="fts5.html#compiling_and_using_fts5">fts5.html#compiling_and_using_fts5</a> + <a href="geopoly.html">geopoly.html</a> + <a href="getthecode.html">getthecode.html</a> + <a href="howtocompile.html">howtocompile.html</a> + <a href="lemon.html">lemon.html</a> + <a href="malloc.html#memsysx">malloc.html#memsysx</a> + <a href="privatebranch.html">privatebranch.html</a> + <a href="prosupport.html">prosupport.html</a> + <a href="qmplan.html">qmplan.html</a> + <a href="rbu.html">rbu.html</a> + <a href="releaselog/3_17_0.html">releaselog/3_17_0.html</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> + <a href="releaselog/3_41_0.html">releaselog/3_41_0.html</a> + <a href="releaselog/3_41_1.html">releaselog/3_41_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> + <a href="releaselog/3_9_0.html">releaselog/3_9_0.html</a> + <a href="releaselog/3_9_1.html">releaselog/3_9_1.html</a> + <a href="releaselog/3_9_2.html">releaselog/3_9_2.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> + <a href="rtree.html">rtree.html</a> + <a href="selfcontained.html">selfcontained.html</a> + <a href="sessionintro.html">sessionintro.html</a> + <a href="spellfix1.html">spellfix1.html</a> + <a href="stmt.html">stmt.html</a> +<li>amalgamation tarball → <a href="changes.html#version_3_11_0">changes.html#version_3_11_0</a> + <a href="howtocompile.html#cli">howtocompile.html#cli</a> + <a href="releaselog/3_11_0.html">releaselog/3_11_0.html</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> +<li>American Fuzzy Lop fuzzer → <a href="changes.html#version_3_8_10">changes.html#version_3_8_10</a> + <a href="releaselog/3_8_10.html">releaselog/3_8_10.html</a> + <a href="releaselog/3_8_10_1.html">releaselog/3_8_10_1.html</a> + <a href="releaselog/3_8_10_2.html">releaselog/3_8_10_2.html</a> +<li>analysis_limit → <a href="lang_analyze.html#approx">lang_analyze.html#approx</a> +<li>analysis_limit pragma → <a href="lang_analyze.html#req">lang_analyze.html#req</a> +<li>ANALYZE → <a href="appfileformat.html">appfileformat.html</a> + <a href="c3ref/stmt_scanstatus.html">c3ref/stmt_scanstatus.html</a> + <a href="capi3ref.html#sqlite3_stmt_scanstatus">capi3ref.html#sqlite3_stmt_scanstatus</a> + <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="changes.html#version_3_45_0">changes.html#version_3_45_0</a> + <a href="changes.html#version_3_6_18">changes.html#version_3_6_18</a> + <a href="changes.html#version_3_7_3">changes.html#version_3_7_3</a> + <a href="changes.html#version_3_7_6">changes.html#version_3_7_6</a> + <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="cli.html#expert">cli.html#expert</a> + <a href="compile.html#enable_stat2">compile.html#enable_stat2</a> + <a href="compile.html#enable_stat3">compile.html#enable_stat3</a> + <a href="compile.html#enable_stat4">compile.html#enable_stat4</a> + <a href="compile.html#omit_analyze">compile.html#omit_analyze</a> + <a href="dbhash.html">dbhash.html</a> + <a href="fileformat2.html#intschema">fileformat2.html#intschema</a> + <a href="fileformat2.html#stat1tab">fileformat2.html#stat1tab</a> + <a href="fileformat2.html#stat3tab">fileformat2.html#stat3tab</a> + <a href="fileformat2.html#stat4tab">fileformat2.html#stat4tab</a> + <a href="isolation.html">isolation.html</a> + <a href="lang.html">lang.html</a> + <a href="news.html">news.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="optoverview.html#autoindex">optoverview.html#autoindex</a> + <a href="optoverview.html#manctrl">optoverview.html#manctrl</a> + <a href="optoverview.html#multi_index">optoverview.html#multi_index</a> + <a href="optoverview.html#option2">optoverview.html#option2</a> + <a href="optoverview.html#rangequery">optoverview.html#rangequery</a> + <a href="optoverview.html#skipscan">optoverview.html#skipscan</a> + <a href="optoverview.html#table_order">optoverview.html#table_order</a> + <a href="pragma.html#pragma_analysis_limit">pragma.html#pragma_analysis_limit</a> + <a href="pragma.html#pragma_optimize">pragma.html#pragma_optimize</a> + <a href="queryplanner-ng.html#fossilcasestudy">queryplanner-ng.html#fossilcasestudy</a> + <a href="queryplanner-ng.html#hazards">queryplanner-ng.html#hazards</a> + <a href="queryplanner-ng.html#howtofix">queryplanner-ng.html#howtofix</a> + <a href="queryplanner-ng.html#qpstab">queryplanner-ng.html#qpstab</a> + <a href="queryplanner.html#searching">queryplanner.html#searching</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> + <a href="releaselog/3_45_0.html">releaselog/3_45_0.html</a> + <a href="releaselog/3_45_1.html">releaselog/3_45_1.html</a> + <a href="releaselog/3_6_18.html">releaselog/3_6_18.html</a> + <a href="releaselog/3_7_3.html">releaselog/3_7_3.html</a> + <a href="releaselog/3_7_6.html">releaselog/3_7_6.html</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> +<li>analyze-stmt → <a href="lang_analyze.html">lang_analyze.html</a> +<li>appformat → <a href="index.html">index.html</a> +<li>application file format → <a href="cintro.html">cintro.html</a> + <a href="features.html">features.html</a> + <a href="flextypegood.html">flextypegood.html</a> + <a href="sessionintro.html">sessionintro.html</a> + <a href="undoredo.html">undoredo.html</a> +<li>Application File Format → <a href="about.html">about.html</a> + <a href="affcase1.html#smaller">affcase1.html#smaller</a> + <a href="onefile.html">onefile.html</a> +<li>application file-format → <a href="aff_short.html">aff_short.html</a> + <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="features.html">features.html</a> + <a href="fileformat2.html#appid">fileformat2.html#appid</a> + <a href="pragma.html#pragma_application_id">pragma.html#pragma_application_id</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> + <a href="wal.html#advantages">wal.html#advantages</a> + <a href="whentouse.html#appfileformat">whentouse.html#appfileformat</a> +<li>Application ID → <a href="appfileformat.html">appfileformat.html</a> + <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> +<li>application-defined SQL function → <a href="c3ref/c_deterministic.html#sqlitedirectonly">c3ref/c_deterministic.html#sqlitedirectonly</a> + <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> + <a href="c3ref/result_subtype.html">c3ref/result_subtype.html</a> + <a href="c3ref/value_subtype.html">c3ref/value_subtype.html</a> + <a href="capi3ref.html#sqlite3_result_blob">capi3ref.html#sqlite3_result_blob</a> + <a href="capi3ref.html#sqlite3_result_subtype">capi3ref.html#sqlite3_result_subtype</a> + <a href="capi3ref.html#sqlite3_value_subtype">capi3ref.html#sqlite3_value_subtype</a> + <a href="capi3ref.html#sqlitedirectonly">capi3ref.html#sqlitedirectonly</a> + <a href="fts5.html#custom_auxiliary_functions">fts5.html#custom_auxiliary_functions</a> + <a href="lang_expr.html#regexp">lang_expr.html#regexp</a> + <a href="swarmvtab.html#the_missing_callback">swarmvtab.html#the_missing_callback</a> + <a href="swarmvtab.html#the_openclose_callback">swarmvtab.html#the_openclose_callback</a> +<li>application-defined SQL functions → <a href="c3ref/c_deterministic.html#sqlitedirectonly">c3ref/c_deterministic.html#sqlitedirectonly</a> + <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/context.html">c3ref/context.html</a> + <a href="c3ref/stmt_readonly.html">c3ref/stmt_readonly.html</a> + <a href="c3ref/value.html">c3ref/value.html</a> + <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_context">capi3ref.html#sqlite3_context</a> + <a href="capi3ref.html#sqlite3_stmt_readonly">capi3ref.html#sqlite3_stmt_readonly</a> + <a href="capi3ref.html#sqlite3_value">capi3ref.html#sqlite3_value</a> + <a href="capi3ref.html#sqlite3_value_blob">capi3ref.html#sqlite3_value_blob</a> + <a href="capi3ref.html#sqlitedirectonly">capi3ref.html#sqlitedirectonly</a> + <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="changes.html#version_3_30_0">changes.html#version_3_30_0</a> + <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="changes.html#version_3_42_0">changes.html#version_3_42_0</a> + <a href="changes.html#version_3_45_0">changes.html#version_3_45_0</a> + <a href="changes.html#version_3_8_0">changes.html#version_3_8_0</a> + <a href="cli.html#dotload">cli.html#dotload</a> + <a href="cli.html#fileio">cli.html#fileio</a> + <a href="compile.html#strict_subtype">compile.html#strict_subtype</a> + <a href="compile.html#trusted_schema">compile.html#trusted_schema</a> + <a href="deterministic.html#dtexception">deterministic.html#dtexception</a> + <a href="expridx.html">expridx.html</a> + <a href="fullsql.html">fullsql.html</a> + <a href="loadext.html">loadext.html</a> + <a href="loadext.html#write">loadext.html#write</a> + <a href="news.html">news.html</a> + <a href="optoverview.html#leftjoinreduction">optoverview.html#leftjoinreduction</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> + <a href="releaselog/3_30_0.html">releaselog/3_30_0.html</a> + <a href="releaselog/3_30_1.html">releaselog/3_30_1.html</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> + <a href="releaselog/3_42_0.html">releaselog/3_42_0.html</a> + <a href="releaselog/3_45_0.html">releaselog/3_45_0.html</a> + <a href="releaselog/3_45_1.html">releaselog/3_45_1.html</a> + <a href="releaselog/3_8_0.html">releaselog/3_8_0.html</a> + <a href="releaselog/3_8_0_1.html">releaselog/3_8_0_1.html</a> + <a href="releaselog/3_8_0_2.html">releaselog/3_8_0_2.html</a> + <a href="rescode.html#internal">rescode.html#internal</a> +<li>application-defined window functions → <a href="appfunc.html">appfunc.html</a> +<li>application_id pragma → <a href="aff_short.html">aff_short.html</a> + <a href="pragma.html#pragma_schema_version">pragma.html#pragma_schema_version</a> + <a href="pragma.html#pragma_user_version">pragma.html#pragma_user_version</a> +<li>appreciate the freedom → <a href="stricttables.html">stricttables.html</a> +<li>Appropriate Uses For SQLite → <a href="quirks.html">quirks.html</a> +<li>approximate ANALYZE → <a href="changes.html#version_3_32_0">changes.html#version_3_32_0</a> + <a href="news.html">news.html</a> + <a href="pragma.html#pragma_analysis_limit">pragma.html#pragma_analysis_limit</a> + <a href="releaselog/3_32_0.html">releaselog/3_32_0.html</a> + <a href="releaselog/3_32_1.html">releaselog/3_32_1.html</a> + <a href="releaselog/3_32_2.html">releaselog/3_32_2.html</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> +<li>asin → <a href="lang_mathfunc.html">lang_mathfunc.html</a> +<li>asinh → <a href="lang_mathfunc.html">lang_mathfunc.html</a> +<li>asynchronous I/O backend → <a href="oldnews.html">oldnews.html</a> +<li>asynchronous VFS → <a href="changes.html#version_3_6_14">changes.html#version_3_6_14</a> + <a href="releaselog/3_6_14.html">releaselog/3_6_14.html</a> +<li>atan → <a href="lang_mathfunc.html">lang_mathfunc.html</a> +<li>atan2 → <a href="lang_mathfunc.html">lang_mathfunc.html</a> +<li>atanh → <a href="lang_mathfunc.html">lang_mathfunc.html</a> +<li>Atomic Commit → <a href="howitworks.html">howitworks.html</a> + <a href="lockingv3.html#how_to_corrupt">lockingv3.html#how_to_corrupt</a> +<li>atomic commit → <a href="affcase1.html#smaller">affcase1.html#smaller</a> + <a href="appfileformat.html">appfileformat.html</a> + <a href="wal.html">wal.html</a> +<li>ATTACH → <a href="bytecodevtab.html">bytecodevtab.html</a> + <a href="c3ref/backup_finish.html#sqlite3backupinit">c3ref/backup_finish.html#sqlite3backupinit</a> + <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfiguri">c3ref/c_config_covering_index_scan.html#sqliteconfiguri</a> + <a href="c3ref/c_dbstatus_options.html#sqlitedbstatusschemaused">c3ref/c_dbstatus_options.html#sqlitedbstatusschemaused</a> + <a href="c3ref/c_limit_attached.html#sqlitelimitattached">c3ref/c_limit_attached.html#sqlitelimitattached</a> + <a href="c3ref/db_name.html">c3ref/db_name.html</a> + <a href="c3ref/file_control.html">c3ref/file_control.html</a> + <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> + <a href="c3ref/stmt_readonly.html">c3ref/stmt_readonly.html</a> + <a href="c3ref/wal_hook.html">c3ref/wal_hook.html</a> + <a href="capi3ref.html#sqlite3_blob_open">capi3ref.html#sqlite3_blob_open</a> + <a href="capi3ref.html#sqlite3_db_name">capi3ref.html#sqlite3_db_name</a> + <a href="capi3ref.html#sqlite3_file_control">capi3ref.html#sqlite3_file_control</a> + <a href="capi3ref.html#sqlite3_preupdate_blobwrite">capi3ref.html#sqlite3_preupdate_blobwrite</a> + <a href="capi3ref.html#sqlite3_stmt_readonly">capi3ref.html#sqlite3_stmt_readonly</a> + <a href="capi3ref.html#sqlite3_wal_hook">capi3ref.html#sqlite3_wal_hook</a> + <a href="capi3ref.html#sqlite3backupinit">capi3ref.html#sqlite3backupinit</a> + <a href="capi3ref.html#sqliteconfiguri">capi3ref.html#sqliteconfiguri</a> + <a href="capi3ref.html#sqlitedbstatusschemaused">capi3ref.html#sqlitedbstatusschemaused</a> + <a href="capi3ref.html#sqlitelimitattached">capi3ref.html#sqlitelimitattached</a> + <a href="changes.html#version_3_15_0">changes.html#version_3_15_0</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="changes.html#version_3_5_6">changes.html#version_3_5_6</a> + <a href="changes.html#version_3_8_3">changes.html#version_3_8_3</a> + <a href="cintro.html">cintro.html</a> + <a href="cli.html#safemode">cli.html#safemode</a> + <a href="compile.html#omit_attach">compile.html#omit_attach</a> + <a href="dbpage.html">dbpage.html</a> + <a href="fts3.html#_external_content_fts4_tables_">fts3.html#_external_content_fts4_tables_</a> + <a href="inmemorydb.html">inmemorydb.html</a> + <a href="inmemorydb.html#temp_db">inmemorydb.html#temp_db</a> + <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_detach.html">lang_detach.html</a> + <a href="lang_naming.html">lang_naming.html</a> + <a href="lang_vacuum.html">lang_vacuum.html</a> + <a href="lockingv3.html#rollback">lockingv3.html#rollback</a> + <a href="pragma.html#pragfunc">pragma.html#pragfunc</a> + <a href="pragma.html#pragma_encoding">pragma.html#pragma_encoding</a> + <a href="pragma.html#pragma_locking_mode">pragma.html#pragma_locking_mode</a> + <a href="pragma.html#pragma_mmap_size">pragma.html#pragma_mmap_size</a> + <a href="pragma.html#pragma_secure_delete">pragma.html#pragma_secure_delete</a> + <a href="pragma.html#syntax">pragma.html#syntax</a> + <a href="releaselog/3_15_0.html">releaselog/3_15_0.html</a> + <a href="releaselog/3_15_1.html">releaselog/3_15_1.html</a> + <a href="releaselog/3_15_2.html">releaselog/3_15_2.html</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> + <a href="releaselog/3_5_6.html">releaselog/3_5_6.html</a> + <a href="releaselog/3_8_3.html">releaselog/3_8_3.html</a> + <a href="sharedcache.html#dontuse">sharedcache.html#dontuse</a> + <a href="shortnames.html">shortnames.html</a> + <a href="tclsqlite.html#backup">tclsqlite.html#backup</a> + <a href="tclsqlite.html#restore">tclsqlite.html#restore</a> + <a href="tempfiles.html#superjrnl">tempfiles.html#superjrnl</a> + <a href="tempfiles.html#tempdb">tempfiles.html#tempdb</a> + <a href="unionvtab.html">unionvtab.html</a> + <a href="uri.html">uri.html</a> + <a href="vfs.html">vfs.html</a> + <a href="vtab.html#xcreate">vtab.html#xcreate</a> + <a href="wal.html#advantages">wal.html#advantages</a> +<li>ATTACH DATABASE → <a href="fullsql.html">fullsql.html</a> + <a href="lang.html">lang.html</a> + <a href="lang_createtable.html">lang_createtable.html</a> +<li>attach-stmt → <a href="lang_attach.html">lang_attach.html</a> +<li>attached → <a href="bytecodevtab.html">bytecodevtab.html</a> + <a href="c3ref/db_cacheflush.html">c3ref/db_cacheflush.html</a> + <a href="c3ref/wal_checkpoint_v2.html">c3ref/wal_checkpoint_v2.html</a> + <a href="capi3ref.html#sqlite3_db_cacheflush">capi3ref.html#sqlite3_db_cacheflush</a> + <a href="capi3ref.html#sqlite3_wal_checkpoint_v2">capi3ref.html#sqlite3_wal_checkpoint_v2</a> + <a href="cli.html#dschema">cli.html#dschema</a> + <a href="cli.html#dtables">cli.html#dtables</a> +<li>authorizer callback → <a href="changes.html#version_3_19_0">changes.html#version_3_19_0</a> + <a href="lang_explain.html">lang_explain.html</a> + <a href="releaselog/3_19_0.html">releaselog/3_19_0.html</a> + <a href="releaselog/3_19_1.html">releaselog/3_19_1.html</a> + <a href="releaselog/3_19_2.html">releaselog/3_19_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> +<li>auto modifier → <a href="changes.html#version_3_38_0">changes.html#version_3_38_0</a> + <a href="releaselog/3_38_0.html">releaselog/3_38_0.html</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> +<li>auto_vacuum → <a href="changes.html#version_3_18_1">changes.html#version_3_18_1</a> + <a href="changes.html#version_3_19_3">changes.html#version_3_19_3</a> + <a href="compile.html#default_autovacuum">compile.html#default_autovacuum</a> + <a href="compile.html#omit_autovacuum">compile.html#omit_autovacuum</a> + <a href="fileformat2.html#ovflpgs">fileformat2.html#ovflpgs</a> + <a href="fileformat2.html#schemaformat">fileformat2.html#schemaformat</a> + <a href="lang_vacuum.html">lang_vacuum.html</a> + <a href="lang_vacuum.html#howvacuumworks">lang_vacuum.html#howvacuumworks</a> + <a href="mmap.html">mmap.html</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> +<li>autocommit mode → <a href="c3ref/snapshot_get.html">c3ref/snapshot_get.html</a> + <a href="c3ref/snapshot_open.html">c3ref/snapshot_open.html</a> + <a href="capi3ref.html#sqlite3_snapshot_get">capi3ref.html#sqlite3_snapshot_get</a> + <a href="capi3ref.html#sqlite3_snapshot_open">capi3ref.html#sqlite3_snapshot_open</a> + <a href="foreignkeys.html#fk_enable">foreignkeys.html#fk_enable</a> +<li>AUTOINCREMENT → <a href="c3ref/table_column_metadata.html">c3ref/table_column_metadata.html</a> + <a href="capi3ref.html#sqlite3_table_column_metadata">capi3ref.html#sqlite3_table_column_metadata</a> + <a href="changes.html#version_3_15_0">changes.html#version_3_15_0</a> + <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="changes.html#version_3_24_0">changes.html#version_3_24_0</a> + <a href="compile.html#omit_autoincrement">compile.html#omit_autoincrement</a> + <a href="faq.html#q1">faq.html#q1</a> + <a href="fileformat2.html#intschema">fileformat2.html#intschema</a> + <a href="fileformat2.html#seqtab">fileformat2.html#seqtab</a> + <a href="quirks.html#dblquote">quirks.html#dblquote</a> + <a href="releaselog/3_15_0.html">releaselog/3_15_0.html</a> + <a href="releaselog/3_15_1.html">releaselog/3_15_1.html</a> + <a href="releaselog/3_15_2.html">releaselog/3_15_2.html</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> + <a href="releaselog/3_24_0.html">releaselog/3_24_0.html</a> + <a href="rescode.html#corrupt_sequence">rescode.html#corrupt_sequence</a> + <a href="stricttables.html">stricttables.html</a> + <a href="withoutrowid.html">withoutrowid.html</a> +<li>automated undo/redo stack → <a href="aff_short.html">aff_short.html</a> + <a href="affcase1.html#smaller">affcase1.html#smaller</a> + <a href="appfileformat.html">appfileformat.html</a> +<li>automatic indexes → <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="changes.html#version_3_24_0">changes.html#version_3_24_0</a> + <a href="profile.html">profile.html</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> + <a href="releaselog/3_24_0.html">releaselog/3_24_0.html</a> + <a href="stmt.html">stmt.html</a> +<li>Automatic indexing → <a href="pragma.html#pragma_automatic_index">pragma.html#pragma_automatic_index</a> +<li>automatic indexing → <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="changes.html#version_3_9_2">changes.html#version_3_9_2</a> + <a href="compile.html#omit_automatic_index">compile.html#omit_automatic_index</a> + <a href="eqp.html">eqp.html</a> + <a href="pragma.html#pragma_automatic_index">pragma.html#pragma_automatic_index</a> + <a href="queryplanner-ng.html#qpstab">queryplanner-ng.html#qpstab</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> + <a href="releaselog/3_9_2.html">releaselog/3_9_2.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> + <a href="rescode.html#warning_autoindex">rescode.html#warning_autoindex</a> +<li>automatic_index pragma → <a href="optoverview.html#autoindex">optoverview.html#autoindex</a> +<li>automerge command → <a href="changes.html#version_3_8_5">changes.html#version_3_8_5</a> + <a href="releaselog/3_8_5.html">releaselog/3_8_5.html</a> +<li>auxiliary columns → <a href="rtree.html#xshadow">rtree.html#xshadow</a> +<li>auxiliary columns in r-tree tables → <a href="changes.html#version_3_24_0">changes.html#version_3_24_0</a> + <a href="releaselog/3_24_0.html">releaselog/3_24_0.html</a> +<li>auxiliary function mapping → <a href="fts5.html#the_rank_configuration_option">fts5.html#the_rank_configuration_option</a> +<li>avg → <a href="changes.html#version_3_43_1">changes.html#version_3_43_1</a> + <a href="lang_aggfunc.html#aggfunclist">lang_aggfunc.html#aggfunclist</a> + <a href="releaselog/3_43_1.html">releaselog/3_43_1.html</a> + <a href="releaselog/3_43_2.html">releaselog/3_43_2.html</a> +<li>B-tree → <a href="imposter.html">imposter.html</a> + <a href="pragma.html#pragma_secure_delete">pragma.html#pragma_secure_delete</a> + <a href="rowidtable.html">rowidtable.html</a> + <a href="vtablist.html">vtablist.html</a> +<li>B-Trees → <a href="withoutrowid.html#wtu">withoutrowid.html#wtu</a> +<li>backup API → <a href="aff_short.html">aff_short.html</a> + <a href="changes.html#version_3_7_15">changes.html#version_3_7_15</a> + <a href="dbhash.html">dbhash.html</a> + <a href="howtocorrupt.html#stalefd">howtocorrupt.html#stalefd</a> + <a href="lang_vacuum.html#vacuuminto">lang_vacuum.html#vacuuminto</a> + <a href="releaselog/3_7_15.html">releaselog/3_7_15.html</a> + <a href="wal.html#advantages">wal.html#advantages</a> + <a href="whentouse.html#appfileformat">whentouse.html#appfileformat</a> +<li>bcvtab → <a href="vtablist.html">vtablist.html</a> +<li>BEGIN → <a href="asyncvfs.html">asyncvfs.html</a> + <a href="c3ref/get_autocommit.html">c3ref/get_autocommit.html</a> + <a href="c3ref/stmt_readonly.html">c3ref/stmt_readonly.html</a> + <a href="capi3ref.html#sqlite3_get_autocommit">capi3ref.html#sqlite3_get_autocommit</a> + <a href="capi3ref.html#sqlite3_stmt_readonly">capi3ref.html#sqlite3_stmt_readonly</a> + <a href="faq.html#q19">faq.html#q19</a> + <a href="foreignkeys.html#fk_enable">foreignkeys.html#fk_enable</a> + <a href="fts3.html#*fts4mergecmd">fts3.html#*fts4mergecmd</a> + <a href="fullsql.html">fullsql.html</a> + <a href="isolation.html">isolation.html</a> + <a href="lang_savepoint.html">lang_savepoint.html</a> + <a href="pragma.html#pragma_foreign_keys">pragma.html#pragma_foreign_keys</a> + <a href="rescode.html#busy">rescode.html#busy</a> +<li>BEGIN EXCLUSIVE → <a href="changes.html#version_3_34_0">changes.html#version_3_34_0</a> + <a href="releaselog/3_34_0.html">releaselog/3_34_0.html</a> + <a href="releaselog/3_34_1.html">releaselog/3_34_1.html</a> +<li>BEGIN IMMEDIATE → <a href="changes.html#version_3_34_0">changes.html#version_3_34_0</a> + <a href="isolation.html">isolation.html</a> + <a href="releaselog/3_34_0.html">releaselog/3_34_0.html</a> + <a href="releaselog/3_34_1.html">releaselog/3_34_1.html</a> + <a href="rescode.html#busy">rescode.html#busy</a> +<li>begin-stmt → <a href="lang_transaction.html">lang_transaction.html</a> +<li>BETWEEN → <a href="optoverview.html#like_opt">optoverview.html#like_opt</a> +<li>BINARY → <a href="lang_corefunc.html#replace">lang_corefunc.html#replace</a> + <a href="lang_createtable.html#collateclause">lang_createtable.html#collateclause</a> + <a href="lang_select.html#nullslast">lang_select.html#nullslast</a> + <a href="rbu.html#fts4_tables">rbu.html#fts4_tables</a> +<li>bind_fallback method → <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> +<li>BLOB handle → <a href="c3ref/blob_bytes.html">c3ref/blob_bytes.html</a> + <a href="c3ref/blob_close.html">c3ref/blob_close.html</a> + <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> + <a href="c3ref/blob_read.html">c3ref/blob_read.html</a> + <a href="c3ref/blob_reopen.html">c3ref/blob_reopen.html</a> + <a href="c3ref/blob_write.html">c3ref/blob_write.html</a> + <a href="capi3ref.html#sqlite3_blob_bytes">capi3ref.html#sqlite3_blob_bytes</a> + <a href="capi3ref.html#sqlite3_blob_close">capi3ref.html#sqlite3_blob_close</a> + <a href="capi3ref.html#sqlite3_blob_open">capi3ref.html#sqlite3_blob_open</a> + <a href="capi3ref.html#sqlite3_blob_read">capi3ref.html#sqlite3_blob_read</a> + <a href="capi3ref.html#sqlite3_blob_reopen">capi3ref.html#sqlite3_blob_reopen</a> + <a href="capi3ref.html#sqlite3_blob_write">capi3ref.html#sqlite3_blob_write</a> +<li>BLOB handles → <a href="c3ref/close.html">c3ref/close.html</a> + <a href="capi3ref.html#sqlite3_close">capi3ref.html#sqlite3_close</a> +<li>BLOB I/O performance → <a href="affcase1.html#smaller">affcase1.html#smaller</a> +<li>block sorting → <a href="changes.html#version_3_10_1">changes.html#version_3_10_1</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> +<li>books about SQLite → <a href="doclist.html">doclist.html</a> + <a href="keyword_index.html">keyword_index.html</a> + <a href="sitemap.html">sitemap.html</a> +<li>boolean expression → <a href="lang_delete.html">lang_delete.html</a> + <a href="lang_select.html#fromclause">lang_select.html#fromclause</a> + <a href="lang_select.html#resultset">lang_select.html#resultset</a> + <a href="lang_select.html#whereclause">lang_select.html#whereclause</a> + <a href="lang_update.html">lang_update.html</a> +<li>bound parameter → <a href="c3ref/profile.html">c3ref/profile.html</a> + <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> + <a href="capi3ref.html#sqlite3_profile">capi3ref.html#sqlite3_profile</a> + <a href="capi3ref.html#sqlite3_value_blob">capi3ref.html#sqlite3_value_blob</a> + <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> +<li>bound parameters → <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfigenableqpsg">c3ref/c_dbconfig_defensive.html#sqlitedbconfigenableqpsg</a> + <a href="c3ref/c_stmtstatus_counter.html#sqlitestmtstatusreprepare">c3ref/c_stmtstatus_counter.html#sqlitestmtstatusreprepare</a> + <a href="c3ref/expanded_sql.html">c3ref/expanded_sql.html</a> + <a href="capi3ref.html#sqlite3_expanded_sql">capi3ref.html#sqlite3_expanded_sql</a> + <a href="capi3ref.html#sqlitedbconfigenableqpsg">capi3ref.html#sqlitedbconfigenableqpsg</a> + <a href="capi3ref.html#sqlitestmtstatusreprepare">capi3ref.html#sqlitestmtstatusreprepare</a> + <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="changes.html#version_3_6_21">changes.html#version_3_6_21</a> + <a href="cli.html#param">cli.html#param</a> + <a href="fts3.html#f3tknzr">fts3.html#f3tknzr</a> + <a href="lang_createtable.html#dfltval">lang_createtable.html#dfltval</a> + <a href="partialindex.html">partialindex.html</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> + <a href="releaselog/3_6_21.html">releaselog/3_6_21.html</a> +<li>building the amalgamation → <a href="howtocompile.html">howtocompile.html</a> +<li>built-in memory allocators → <a href="c3ref/mem_methods.html">c3ref/mem_methods.html</a> + <a href="capi3ref.html#sqlite3_mem_methods">capi3ref.html#sqlite3_mem_methods</a> +<li>built-in printf → <a href="arch.html">arch.html</a> + <a href="c3ref/mprintf.html">c3ref/mprintf.html</a> + <a href="c3ref/str_append.html">c3ref/str_append.html</a> + <a href="capi3ref.html#sqlite3_mprintf">capi3ref.html#sqlite3_mprintf</a> + <a href="capi3ref.html#sqlite3_str_append">capi3ref.html#sqlite3_str_append</a> + <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="changes.html#version_3_42_0">changes.html#version_3_42_0</a> + <a href="compile.html#printf_precision_limit">compile.html#printf_precision_limit</a> + <a href="lang_corefunc.html#format">lang_corefunc.html#format</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> + <a href="releaselog/3_42_0.html">releaselog/3_42_0.html</a> +<li>built-in SQL math functions → <a href="changes.html#version_3_35_0">changes.html#version_3_35_0</a> + <a href="compile.html#enable_math_functions">compile.html#enable_math_functions</a> + <a href="releaselog/3_35_0.html">releaselog/3_35_0.html</a> + <a href="releaselog/3_35_1.html">releaselog/3_35_1.html</a> + <a href="releaselog/3_35_2.html">releaselog/3_35_2.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> +<li>built-in window functions → <a href="windowfunctions.html">windowfunctions.html</a> +<li>busy-handler callback → <a href="c3ref/wal_checkpoint_v2.html">c3ref/wal_checkpoint_v2.html</a> + <a href="capi3ref.html#sqlite3_wal_checkpoint_v2">capi3ref.html#sqlite3_wal_checkpoint_v2</a> +<li>busy_timeout pragma → <a href="changes.html#version_3_7_15">changes.html#version_3_7_15</a> + <a href="releaselog/3_7_15.html">releaselog/3_7_15.html</a> + <a href="rescode.html#busy">rescode.html#busy</a> +<li>byte-order determination rules → <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> + <a href="capi3ref.html#sqlite3_result_blob">capi3ref.html#sqlite3_result_blob</a> +<li>bytecode → <a href="arch.html">arch.html</a> + <a href="bytecodevtab.html">bytecodevtab.html</a> + <a href="c3ref/vtab_distinct.html">c3ref/vtab_distinct.html</a> + <a href="c3ref/vtab_in.html">c3ref/vtab_in.html</a> + <a href="capi3ref.html#sqlite3_vtab_distinct">capi3ref.html#sqlite3_vtab_distinct</a> + <a href="capi3ref.html#sqlite3_vtab_in">capi3ref.html#sqlite3_vtab_in</a> + <a href="changes.html#version_3_37_2">changes.html#version_3_37_2</a> + <a href="debugging.html">debugging.html</a> + <a href="lang_corefunc.html#iif">lang_corefunc.html#iif</a> + <a href="releaselog/3_37_2.html">releaselog/3_37_2.html</a> + <a href="rowvalue.html#rvinop">rowvalue.html#rvinop</a> + <a href="vtab.html#colUsed">vtab.html#colUsed</a> +<li>bytecode and tables_used virtual tables → <a href="compile.html#enable_bytecode_vtab">compile.html#enable_bytecode_vtab</a> +<li>bytecode engine → <a href="changes.html#version_3_35_3">changes.html#version_3_35_3</a> + <a href="changes.html#version_3_45_1">changes.html#version_3_45_1</a> + <a href="compile.html#rcmd">compile.html#rcmd</a> + <a href="howitworks.html">howitworks.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> + <a href="releaselog/3_45_1.html">releaselog/3_45_1.html</a> + <a href="stmt.html">stmt.html</a> +<li>bytecode virtual table → <a href="changes.html#version_3_32_0">changes.html#version_3_32_0</a> + <a href="releaselog/3_32_0.html">releaselog/3_32_0.html</a> + <a href="releaselog/3_32_1.html">releaselog/3_32_1.html</a> + <a href="releaselog/3_32_2.html">releaselog/3_32_2.html</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> +<li>C-language Interface → <a href="arch.html">arch.html</a> + <a href="rescode.html">rescode.html</a> +<li>cache_size → <a href="changes.html#version_3_11_0">changes.html#version_3_11_0</a> + <a href="changes.html#version_3_7_6_3">changes.html#version_3_7_6_3</a> + <a href="compile.html#sorter_pmasz">compile.html#sorter_pmasz</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pgszchng2016.html">pgszchng2016.html</a> + <a href="pragma.html#pragma_default_cache_size">pragma.html#pragma_default_cache_size</a> + <a href="releaselog/3_11_0.html">releaselog/3_11_0.html</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> + <a href="releaselog/3_7_6_3.html">releaselog/3_7_6_3.html</a> +<li>cache_size pragma → <a href="malloc.html#nofrag">malloc.html#nofrag</a> + <a href="pgszchng2016.html">pgszchng2016.html</a> +<li>cache_spill pragma → <a href="changes.html#version_3_8_0">changes.html#version_3_8_0</a> + <a href="releaselog/3_8_0.html">releaselog/3_8_0.html</a> + <a href="releaselog/3_8_0_1.html">releaselog/3_8_0_1.html</a> + <a href="releaselog/3_8_0_2.html">releaselog/3_8_0_2.html</a> +<li>canonical source code → <a href="changes.html#version_3_43_0">changes.html#version_3_43_0</a> + <a href="releaselog/3_43_0.html">releaselog/3_43_0.html</a> + <a href="releaselog/3_43_1.html">releaselog/3_43_1.html</a> + <a href="releaselog/3_43_2.html">releaselog/3_43_2.html</a> +<li>capi3ref → <a href="cintro.html">cintro.html</a> + <a href="quickstart.html">quickstart.html</a> +<li>capi3ref_funclist → <a href="cintro.html">cintro.html</a> +<li>carray → <a href="bindptr.html">bindptr.html</a> + <a href="bindptr.html#ptrtyp">bindptr.html#ptrtyp</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> + <a href="vtablist.html">vtablist.html</a> +<li>carray table-valued function → <a href="bindptr.html#ptrtyp">bindptr.html#ptrtyp</a> + <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="changes.html#version_3_34_0">changes.html#version_3_34_0</a> + <a href="changes.html#version_3_41_0">changes.html#version_3_41_0</a> + <a href="loadext.html#write">loadext.html#write</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="releaselog/3_34_0.html">releaselog/3_34_0.html</a> + <a href="releaselog/3_34_1.html">releaselog/3_34_1.html</a> + <a href="releaselog/3_41_0.html">releaselog/3_41_0.html</a> + <a href="releaselog/3_41_1.html">releaselog/3_41_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> +<li>CASE expression → <a href="lang_corefunc.html#iif">lang_corefunc.html#iif</a> +<li>case_sensitive_like → <a href="optoverview.html#like_opt">optoverview.html#like_opt</a> +<li>case_sensitive_like pragma → <a href="compile.html#case_sensitive_like">compile.html#case_sensitive_like</a> + <a href="lang_expr.html#like">lang_expr.html#like</a> +<li>CAST → <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="changes.html#version_3_8_7">changes.html#version_3_8_7</a> + <a href="datatype3.html#compaff">datatype3.html#compaff</a> + <a href="nulinstr.html">nulinstr.html</a> + <a href="releaselog/3_8_7.html">releaselog/3_8_7.html</a> +<li>cast → <a href="lang_expr.html#collateop">lang_expr.html#collateop</a> + <a href="oldnews.html">oldnews.html</a> +<li>CAST expression → <a href="changes.html#version_3_7_16_1">changes.html#version_3_7_16_1</a> + <a href="changes.html#version_3_8_2">changes.html#version_3_8_2</a> + <a href="datatype3.html#affinity">datatype3.html#affinity</a> + <a href="lang_createtable.html#ckconst">lang_createtable.html#ckconst</a> + <a href="lang_expr.html#booleanexpr">lang_expr.html#booleanexpr</a> + <a href="lang_expr.html#hexint">lang_expr.html#hexint</a> + <a href="releaselog/3_7_16_1.html">releaselog/3_7_16_1.html</a> + <a href="releaselog/3_7_16_2.html">releaselog/3_7_16_2.html</a> + <a href="releaselog/3_8_2.html">releaselog/3_8_2.html</a> +<li>categorical listing of SQLite documents → <a href="doclist.html">doclist.html</a> + <a href="keyword_index.html">keyword_index.html</a> + <a href="sitemap.html">sitemap.html</a> +<li>ceil → <a href="lang_mathfunc.html">lang_mathfunc.html</a> +<li>ceiling → <a href="lang_mathfunc.html#trunc">lang_mathfunc.html#trunc</a> +<li>cfgerrors → <a href="pragma.html#pragma_journal_mode">pragma.html#pragma_journal_mode</a> + <a href="pragma.html#pragma_schema_version">pragma.html#pragma_schema_version</a> + <a href="pragma.html#pragma_synchronous">pragma.html#pragma_synchronous</a> + <a href="pragma.html#pragma_writable_schema">pragma.html#pragma_writable_schema</a> + <a href="schematab.html">schematab.html</a> +<li>change counter → <a href="fileformat2.html#filesize">fileformat2.html#filesize</a> + <a href="fileformat2.html#validfor">fileformat2.html#validfor</a> +<li>changes → <a href="deterministic.html">deterministic.html</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> +<li>changes SQL function → <a href="c3ref/changes.html">c3ref/changes.html</a> + <a href="c3ref/total_changes.html">c3ref/total_changes.html</a> + <a href="capi3ref.html#sqlite3_changes">capi3ref.html#sqlite3_changes</a> + <a href="capi3ref.html#sqlite3_total_changes">capi3ref.html#sqlite3_total_changes</a> +<li>changeset → <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="cves.html#cvetab">cves.html#cvetab</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> + <a href="session.html#sqlite3_changeset_iter">session.html#sqlite3_changeset_iter</a> + <a href="session/changeset_iter.html">session/changeset_iter.html</a> +<li>changesets → <a href="session.html#sqlite3_changegroup">session.html#sqlite3_changegroup</a> + <a href="session/changegroup.html">session/changegroup.html</a> +<li>char → <a href="changes.html#version_3_19_0">changes.html#version_3_19_0</a> + <a href="changes.html#version_3_7_16">changes.html#version_3_7_16</a> + <a href="changes.html#version_3_8_4">changes.html#version_3_8_4</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="releaselog/3_19_0.html">releaselog/3_19_0.html</a> + <a href="releaselog/3_19_1.html">releaselog/3_19_1.html</a> + <a href="releaselog/3_19_2.html">releaselog/3_19_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> + <a href="releaselog/3_7_16.html">releaselog/3_7_16.html</a> + <a href="releaselog/3_7_16_1.html">releaselog/3_7_16_1.html</a> + <a href="releaselog/3_7_16_2.html">releaselog/3_7_16_2.html</a> + <a href="releaselog/3_8_4.html">releaselog/3_8_4.html</a> + <a href="releaselog/3_8_4_1.html">releaselog/3_8_4_1.html</a> + <a href="releaselog/3_8_4_2.html">releaselog/3_8_4_2.html</a> + <a href="releaselog/3_8_4_3.html">releaselog/3_8_4_3.html</a> +<li>CHECK → <a href="changes.html#version_3_7_12">changes.html#version_3_7_12</a> + <a href="conflict.html">conflict.html</a> + <a href="fullsql.html">fullsql.html</a> + <a href="lang_conflict.html">lang_conflict.html</a> + <a href="releaselog/3_7_12.html">releaselog/3_7_12.html</a> +<li>CHECK constraint → <a href="changes.html#version_3_34_0">changes.html#version_3_34_0</a> + <a href="changes.html#version_3_37_0">changes.html#version_3_37_0</a> + <a href="changes.html#version_3_7_15">changes.html#version_3_7_15</a> + <a href="deterministic.html">deterministic.html</a> + <a href="lang_altertable.html#altertabaddcol">lang_altertable.html#altertabaddcol</a> + <a href="lang_altertable.html#altertabdropcol">lang_altertable.html#altertabdropcol</a> + <a href="lang_conflict.html">lang_conflict.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_case_sensitive_like">pragma.html#pragma_case_sensitive_like</a> + <a href="releaselog/3_34_0.html">releaselog/3_34_0.html</a> + <a href="releaselog/3_34_1.html">releaselog/3_34_1.html</a> + <a href="releaselog/3_37_0.html">releaselog/3_37_0.html</a> + <a href="releaselog/3_37_1.html">releaselog/3_37_1.html</a> + <a href="releaselog/3_37_2.html">releaselog/3_37_2.html</a> + <a href="releaselog/3_7_15.html">releaselog/3_7_15.html</a> + <a href="rescode.html#constraint_check">rescode.html#constraint_check</a> +<li>CHECK constraints → <a href="c3ref/c_deterministic.html#sqlitedirectonly">c3ref/c_deterministic.html#sqlitedirectonly</a> + <a href="c3ref/c_deterministic.html#sqliteinnocuous">c3ref/c_deterministic.html#sqliteinnocuous</a> + <a href="capi3ref.html#sqlitedirectonly">capi3ref.html#sqlitedirectonly</a> + <a href="capi3ref.html#sqliteinnocuous">capi3ref.html#sqliteinnocuous</a> + <a href="changes.html#version_3_11_0">changes.html#version_3_11_0</a> + <a href="changes.html#version_3_18_0">changes.html#version_3_18_0</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="changes.html#version_3_32_0">changes.html#version_3_32_0</a> + <a href="pragma.html#pragma_trusted_schema">pragma.html#pragma_trusted_schema</a> + <a href="releaselog/3_11_0.html">releaselog/3_11_0.html</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> + <a href="releaselog/3_18_0.html">releaselog/3_18_0.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> + <a href="releaselog/3_32_0.html">releaselog/3_32_0.html</a> + <a href="releaselog/3_32_1.html">releaselog/3_32_1.html</a> + <a href="releaselog/3_32_2.html">releaselog/3_32_2.html</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> + <a href="stricttables.html">stricttables.html</a> +<li>checklist → <a href="qmplan.html">qmplan.html</a> +<li>checkpoint → <a href="asyncvfs.html">asyncvfs.html</a> + <a href="c3ref/snapshot_open.html">c3ref/snapshot_open.html</a> + <a href="c3ref/wal_autocheckpoint.html">c3ref/wal_autocheckpoint.html</a> + <a href="c3ref/wal_hook.html">c3ref/wal_hook.html</a> + <a href="capi3ref.html#sqlite3_snapshot_open">capi3ref.html#sqlite3_snapshot_open</a> + <a href="capi3ref.html#sqlite3_wal_autocheckpoint">capi3ref.html#sqlite3_wal_autocheckpoint</a> + <a href="capi3ref.html#sqlite3_wal_hook">capi3ref.html#sqlite3_wal_hook</a> + <a href="changes.html#version_3_16_0">changes.html#version_3_16_0</a> + <a href="fasterthanfs.html">fasterthanfs.html</a> + <a href="fileformat2.html#walcksm">fileformat2.html#walcksm</a> + <a href="howtocorrupt.html#fork">howtocorrupt.html#fork</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_checkpoint_fullfsync">pragma.html#pragma_checkpoint_fullfsync</a> + <a href="pragma.html#pragma_journal_size_limit">pragma.html#pragma_journal_size_limit</a> + <a href="pragma.html#pragma_query_only">pragma.html#pragma_query_only</a> + <a href="pragma.html#pragma_synchronous">pragma.html#pragma_synchronous</a> + <a href="pragma.html#pragma_wal_checkpoint">pragma.html#pragma_wal_checkpoint</a> + <a href="releaselog/3_16_0.html">releaselog/3_16_0.html</a> + <a href="releaselog/3_16_1.html">releaselog/3_16_1.html</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> + <a href="tclsqlite.html#wal_hook">tclsqlite.html#wal_hook</a> + <a href="walformat.html#locks">walformat.html#locks</a> + <a href="walformat.html#shm">walformat.html#shm</a> +<li>checkpoint mode → <a href="c3ref/wal_checkpoint_v2.html">c3ref/wal_checkpoint_v2.html</a> + <a href="capi3ref.html#sqlite3_wal_checkpoint_v2">capi3ref.html#sqlite3_wal_checkpoint_v2</a> +<li>checkpoint_fullfsync → <a href="pragma.html#pragma_fullfsync">pragma.html#pragma_fullfsync</a> + <a href="pragma.html#pragma_synchronous">pragma.html#pragma_synchronous</a> +<li>checkpointing → <a href="c3ref/wal_checkpoint.html">c3ref/wal_checkpoint.html</a> + <a href="capi3ref.html#sqlite3_wal_checkpoint">capi3ref.html#sqlite3_wal_checkpoint</a> + <a href="compile.html#default_wal_autocheckpoint">compile.html#default_wal_autocheckpoint</a> + <a href="pragma.html#pragma_wal_autocheckpoint">pragma.html#pragma_wal_autocheckpoint</a> + <a href="wal.html#advantages">wal.html#advantages</a> +<li>checksum VFS shim → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlcksmfile">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlcksmfile</a> + <a href="capi3ref.html#sqlitefcntlcksmfile">capi3ref.html#sqlitefcntlcksmfile</a> + <a href="changes.html#version_3_32_0">changes.html#version_3_32_0</a> + <a href="releaselog/3_32_0.html">releaselog/3_32_0.html</a> + <a href="releaselog/3_32_1.html">releaselog/3_32_1.html</a> + <a href="releaselog/3_32_2.html">releaselog/3_32_2.html</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> + <a href="rescode.html#ioerr_data">rescode.html#ioerr_data</a> +<li>child key → <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> + <a href="capi3ref.html#sqlite3_blob_open">capi3ref.html#sqlite3_blob_open</a> +<li>chronology → <a href="changes.html">changes.html</a> + <a href="getthecode.html">getthecode.html</a> + <a href="qmplan.html">qmplan.html</a> + <a href="releaselog/3_0_0.html">releaselog/3_0_0.html</a> + <a href="releaselog/3_0_1.html">releaselog/3_0_1.html</a> + <a href="releaselog/3_0_2.html">releaselog/3_0_2.html</a> + <a href="releaselog/3_0_3.html">releaselog/3_0_3.html</a> + <a href="releaselog/3_0_4.html">releaselog/3_0_4.html</a> + <a href="releaselog/3_0_5.html">releaselog/3_0_5.html</a> + <a href="releaselog/3_0_6.html">releaselog/3_0_6.html</a> + <a href="releaselog/3_0_7.html">releaselog/3_0_7.html</a> + <a href="releaselog/3_0_8.html">releaselog/3_0_8.html</a> + <a href="releaselog/3_10_0.html">releaselog/3_10_0.html</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> + <a href="releaselog/3_11_0.html">releaselog/3_11_0.html</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> + <a href="releaselog/3_13_0.html">releaselog/3_13_0.html</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="releaselog/3_15_0.html">releaselog/3_15_0.html</a> + <a href="releaselog/3_15_1.html">releaselog/3_15_1.html</a> + <a href="releaselog/3_15_2.html">releaselog/3_15_2.html</a> + <a href="releaselog/3_16_0.html">releaselog/3_16_0.html</a> + <a href="releaselog/3_16_1.html">releaselog/3_16_1.html</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> + <a href="releaselog/3_17_0.html">releaselog/3_17_0.html</a> + <a href="releaselog/3_18_0.html">releaselog/3_18_0.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> + <a href="releaselog/3_19_0.html">releaselog/3_19_0.html</a> + <a href="releaselog/3_19_1.html">releaselog/3_19_1.html</a> + <a href="releaselog/3_19_2.html">releaselog/3_19_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> + <a href="releaselog/3_1_0.html">releaselog/3_1_0.html</a> + <a href="releaselog/3_1_1.html">releaselog/3_1_1.html</a> + <a href="releaselog/3_1_2.html">releaselog/3_1_2.html</a> + <a href="releaselog/3_1_3.html">releaselog/3_1_3.html</a> + <a href="releaselog/3_1_4.html">releaselog/3_1_4.html</a> + <a href="releaselog/3_1_5.html">releaselog/3_1_5.html</a> + <a href="releaselog/3_1_6.html">releaselog/3_1_6.html</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> + <a href="releaselog/3_24_0.html">releaselog/3_24_0.html</a> + <a href="releaselog/3_25_0.html">releaselog/3_25_0.html</a> + <a href="releaselog/3_25_1.html">releaselog/3_25_1.html</a> + <a href="releaselog/3_25_2.html">releaselog/3_25_2.html</a> + <a href="releaselog/3_25_3.html">releaselog/3_25_3.html</a> + <a href="releaselog/3_26_0.html">releaselog/3_26_0.html</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> + <a href="releaselog/3_29_0.html">releaselog/3_29_0.html</a> + <a href="releaselog/3_2_0.html">releaselog/3_2_0.html</a> + <a href="releaselog/3_2_1.html">releaselog/3_2_1.html</a> + <a href="releaselog/3_2_2.html">releaselog/3_2_2.html</a> + <a href="releaselog/3_2_3.html">releaselog/3_2_3.html</a> + <a href="releaselog/3_2_4.html">releaselog/3_2_4.html</a> + <a href="releaselog/3_2_5.html">releaselog/3_2_5.html</a> + <a href="releaselog/3_2_6.html">releaselog/3_2_6.html</a> + <a href="releaselog/3_2_7.html">releaselog/3_2_7.html</a> + <a href="releaselog/3_2_8.html">releaselog/3_2_8.html</a> + <a href="releaselog/3_30_0.html">releaselog/3_30_0.html</a> + <a href="releaselog/3_30_1.html">releaselog/3_30_1.html</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> + <a href="releaselog/3_32_0.html">releaselog/3_32_0.html</a> + <a href="releaselog/3_32_1.html">releaselog/3_32_1.html</a> + <a href="releaselog/3_32_2.html">releaselog/3_32_2.html</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> + <a href="releaselog/3_33_0.html">releaselog/3_33_0.html</a> + <a href="releaselog/3_34_0.html">releaselog/3_34_0.html</a> + <a href="releaselog/3_34_1.html">releaselog/3_34_1.html</a> + <a href="releaselog/3_35_0.html">releaselog/3_35_0.html</a> + <a href="releaselog/3_35_1.html">releaselog/3_35_1.html</a> + <a href="releaselog/3_35_2.html">releaselog/3_35_2.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> + <a href="releaselog/3_36_0.html">releaselog/3_36_0.html</a> + <a href="releaselog/3_37_0.html">releaselog/3_37_0.html</a> + <a href="releaselog/3_37_1.html">releaselog/3_37_1.html</a> + <a href="releaselog/3_37_2.html">releaselog/3_37_2.html</a> + <a href="releaselog/3_38_0.html">releaselog/3_38_0.html</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> + <a href="releaselog/3_39_0.html">releaselog/3_39_0.html</a> + <a href="releaselog/3_39_1.html">releaselog/3_39_1.html</a> + <a href="releaselog/3_39_2.html">releaselog/3_39_2.html</a> + <a href="releaselog/3_39_3.html">releaselog/3_39_3.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> + <a href="releaselog/3_3_0.html">releaselog/3_3_0.html</a> + <a href="releaselog/3_3_1.html">releaselog/3_3_1.html</a> + <a href="releaselog/3_3_10.html">releaselog/3_3_10.html</a> + <a href="releaselog/3_3_11.html">releaselog/3_3_11.html</a> + <a href="releaselog/3_3_12.html">releaselog/3_3_12.html</a> + <a href="releaselog/3_3_13.html">releaselog/3_3_13.html</a> + <a href="releaselog/3_3_14.html">releaselog/3_3_14.html</a> + <a href="releaselog/3_3_15.html">releaselog/3_3_15.html</a> + <a href="releaselog/3_3_16.html">releaselog/3_3_16.html</a> + <a href="releaselog/3_3_17.html">releaselog/3_3_17.html</a> + <a href="releaselog/3_3_2.html">releaselog/3_3_2.html</a> + <a href="releaselog/3_3_3.html">releaselog/3_3_3.html</a> + <a href="releaselog/3_3_4.html">releaselog/3_3_4.html</a> + <a href="releaselog/3_3_5.html">releaselog/3_3_5.html</a> + <a href="releaselog/3_3_6.html">releaselog/3_3_6.html</a> + <a href="releaselog/3_3_7.html">releaselog/3_3_7.html</a> + <a href="releaselog/3_3_8.html">releaselog/3_3_8.html</a> + <a href="releaselog/3_3_9.html">releaselog/3_3_9.html</a> + <a href="releaselog/3_40_0.html">releaselog/3_40_0.html</a> + <a href="releaselog/3_40_1.html">releaselog/3_40_1.html</a> + <a href="releaselog/3_41_0.html">releaselog/3_41_0.html</a> + <a href="releaselog/3_41_1.html">releaselog/3_41_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> + <a href="releaselog/3_42_0.html">releaselog/3_42_0.html</a> + <a href="releaselog/3_43_0.html">releaselog/3_43_0.html</a> + <a href="releaselog/3_43_1.html">releaselog/3_43_1.html</a> + <a href="releaselog/3_43_2.html">releaselog/3_43_2.html</a> + <a href="releaselog/3_44_0.html">releaselog/3_44_0.html</a> + <a href="releaselog/3_44_1.html">releaselog/3_44_1.html</a> + <a href="releaselog/3_44_2.html">releaselog/3_44_2.html</a> + <a href="releaselog/3_45_0.html">releaselog/3_45_0.html</a> + <a href="releaselog/3_45_1.html">releaselog/3_45_1.html</a> + <a href="releaselog/3_4_0.html">releaselog/3_4_0.html</a> + <a href="releaselog/3_4_1.html">releaselog/3_4_1.html</a> + <a href="releaselog/3_4_2.html">releaselog/3_4_2.html</a> + <a href="releaselog/3_5_0.html">releaselog/3_5_0.html</a> + <a href="releaselog/3_5_1.html">releaselog/3_5_1.html</a> + <a href="releaselog/3_5_2.html">releaselog/3_5_2.html</a> + <a href="releaselog/3_5_3.html">releaselog/3_5_3.html</a> + <a href="releaselog/3_5_4.html">releaselog/3_5_4.html</a> + <a href="releaselog/3_5_5.html">releaselog/3_5_5.html</a> + <a href="releaselog/3_5_6.html">releaselog/3_5_6.html</a> + <a href="releaselog/3_5_7.html">releaselog/3_5_7.html</a> + <a href="releaselog/3_5_8.html">releaselog/3_5_8.html</a> + <a href="releaselog/3_5_9.html">releaselog/3_5_9.html</a> + <a href="releaselog/3_6_0.html">releaselog/3_6_0.html</a> + <a href="releaselog/3_6_1.html">releaselog/3_6_1.html</a> + <a href="releaselog/3_6_10.html">releaselog/3_6_10.html</a> + <a href="releaselog/3_6_11.html">releaselog/3_6_11.html</a> + <a href="releaselog/3_6_12.html">releaselog/3_6_12.html</a> + <a href="releaselog/3_6_13.html">releaselog/3_6_13.html</a> + <a href="releaselog/3_6_14.html">releaselog/3_6_14.html</a> + <a href="releaselog/3_6_14_1.html">releaselog/3_6_14_1.html</a> + <a href="releaselog/3_6_14_2.html">releaselog/3_6_14_2.html</a> + <a href="releaselog/3_6_15.html">releaselog/3_6_15.html</a> + <a href="releaselog/3_6_16.html">releaselog/3_6_16.html</a> + <a href="releaselog/3_6_16_1.html">releaselog/3_6_16_1.html</a> + <a href="releaselog/3_6_17.html">releaselog/3_6_17.html</a> + <a href="releaselog/3_6_18.html">releaselog/3_6_18.html</a> + <a href="releaselog/3_6_19.html">releaselog/3_6_19.html</a> + <a href="releaselog/3_6_2.html">releaselog/3_6_2.html</a> + <a href="releaselog/3_6_20.html">releaselog/3_6_20.html</a> + <a href="releaselog/3_6_21.html">releaselog/3_6_21.html</a> + <a href="releaselog/3_6_22.html">releaselog/3_6_22.html</a> + <a href="releaselog/3_6_23.html">releaselog/3_6_23.html</a> + <a href="releaselog/3_6_23_1.html">releaselog/3_6_23_1.html</a> + <a href="releaselog/3_6_3.html">releaselog/3_6_3.html</a> + <a href="releaselog/3_6_4.html">releaselog/3_6_4.html</a> + <a href="releaselog/3_6_5.html">releaselog/3_6_5.html</a> + <a href="releaselog/3_6_6.html">releaselog/3_6_6.html</a> + <a href="releaselog/3_6_6_1.html">releaselog/3_6_6_1.html</a> + <a href="releaselog/3_6_6_2.html">releaselog/3_6_6_2.html</a> + <a href="releaselog/3_6_7.html">releaselog/3_6_7.html</a> + <a href="releaselog/3_6_8.html">releaselog/3_6_8.html</a> + <a href="releaselog/3_6_9.html">releaselog/3_6_9.html</a> + <a href="releaselog/3_7_0.html">releaselog/3_7_0.html</a> + <a href="releaselog/3_7_0_1.html">releaselog/3_7_0_1.html</a> + <a href="releaselog/3_7_1.html">releaselog/3_7_1.html</a> + <a href="releaselog/3_7_10.html">releaselog/3_7_10.html</a> + <a href="releaselog/3_7_11.html">releaselog/3_7_11.html</a> + <a href="releaselog/3_7_12.html">releaselog/3_7_12.html</a> + <a href="releaselog/3_7_12_1.html">releaselog/3_7_12_1.html</a> + <a href="releaselog/3_7_13.html">releaselog/3_7_13.html</a> + <a href="releaselog/3_7_14.html">releaselog/3_7_14.html</a> + <a href="releaselog/3_7_14_1.html">releaselog/3_7_14_1.html</a> + <a href="releaselog/3_7_15.html">releaselog/3_7_15.html</a> + <a href="releaselog/3_7_15_1.html">releaselog/3_7_15_1.html</a> + <a href="releaselog/3_7_15_2.html">releaselog/3_7_15_2.html</a> + <a href="releaselog/3_7_16.html">releaselog/3_7_16.html</a> + <a href="releaselog/3_7_16_1.html">releaselog/3_7_16_1.html</a> + <a href="releaselog/3_7_16_2.html">releaselog/3_7_16_2.html</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> + <a href="releaselog/3_7_2.html">releaselog/3_7_2.html</a> + <a href="releaselog/3_7_3.html">releaselog/3_7_3.html</a> + <a href="releaselog/3_7_4.html">releaselog/3_7_4.html</a> + <a href="releaselog/3_7_5.html">releaselog/3_7_5.html</a> + <a href="releaselog/3_7_6.html">releaselog/3_7_6.html</a> + <a href="releaselog/3_7_6_1.html">releaselog/3_7_6_1.html</a> + <a href="releaselog/3_7_6_2.html">releaselog/3_7_6_2.html</a> + <a href="releaselog/3_7_6_3.html">releaselog/3_7_6_3.html</a> + <a href="releaselog/3_7_7.html">releaselog/3_7_7.html</a> + <a href="releaselog/3_7_7_1.html">releaselog/3_7_7_1.html</a> + <a href="releaselog/3_7_8.html">releaselog/3_7_8.html</a> + <a href="releaselog/3_7_9.html">releaselog/3_7_9.html</a> + <a href="releaselog/3_8_0.html">releaselog/3_8_0.html</a> + <a href="releaselog/3_8_0_1.html">releaselog/3_8_0_1.html</a> + <a href="releaselog/3_8_0_2.html">releaselog/3_8_0_2.html</a> + <a href="releaselog/3_8_1.html">releaselog/3_8_1.html</a> + <a href="releaselog/3_8_10.html">releaselog/3_8_10.html</a> + <a href="releaselog/3_8_10_1.html">releaselog/3_8_10_1.html</a> + <a href="releaselog/3_8_10_2.html">releaselog/3_8_10_2.html</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> + <a href="releaselog/3_8_2.html">releaselog/3_8_2.html</a> + <a href="releaselog/3_8_3.html">releaselog/3_8_3.html</a> + <a href="releaselog/3_8_3_1.html">releaselog/3_8_3_1.html</a> + <a href="releaselog/3_8_4.html">releaselog/3_8_4.html</a> + <a href="releaselog/3_8_4_1.html">releaselog/3_8_4_1.html</a> + <a href="releaselog/3_8_4_2.html">releaselog/3_8_4_2.html</a> + <a href="releaselog/3_8_4_3.html">releaselog/3_8_4_3.html</a> + <a href="releaselog/3_8_5.html">releaselog/3_8_5.html</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> + <a href="releaselog/3_8_7.html">releaselog/3_8_7.html</a> + <a href="releaselog/3_8_7_1.html">releaselog/3_8_7_1.html</a> + <a href="releaselog/3_8_7_2.html">releaselog/3_8_7_2.html</a> + <a href="releaselog/3_8_7_3.html">releaselog/3_8_7_3.html</a> + <a href="releaselog/3_8_7_4.html">releaselog/3_8_7_4.html</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> + <a href="releaselog/3_8_9.html">releaselog/3_8_9.html</a> + <a href="releaselog/3_9_0.html">releaselog/3_9_0.html</a> + <a href="releaselog/3_9_1.html">releaselog/3_9_1.html</a> + <a href="releaselog/3_9_2.html">releaselog/3_9_2.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> + <a href="versionnumbers.html">versionnumbers.html</a> +<li>cintro → <a href="c3ref/intro.html">c3ref/intro.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="lts.html">lts.html</a> + <a href="quickstart.html">quickstart.html</a> +<li>CLI → <a href="bytecodevtab.html">bytecodevtab.html</a> + <a href="c3ref/c_deterministic.html#sqlitedirectonly">c3ref/c_deterministic.html#sqlitedirectonly</a> + <a href="capi3ref.html#sqlitedirectonly">capi3ref.html#sqlitedirectonly</a> + <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="changes.html#version_3_23_1">changes.html#version_3_23_1</a> + <a href="changes.html#version_3_24_0">changes.html#version_3_24_0</a> + <a href="changes.html#version_3_25_0">changes.html#version_3_25_0</a> + <a href="changes.html#version_3_26_0">changes.html#version_3_26_0</a> + <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="changes.html#version_3_29_0">changes.html#version_3_29_0</a> + <a href="changes.html#version_3_30_0">changes.html#version_3_30_0</a> + <a href="changes.html#version_3_32_0">changes.html#version_3_32_0</a> + <a href="changes.html#version_3_33_0">changes.html#version_3_33_0</a> + <a href="changes.html#version_3_34_0">changes.html#version_3_34_0</a> + <a href="changes.html#version_3_35_0">changes.html#version_3_35_0</a> + <a href="changes.html#version_3_35_1">changes.html#version_3_35_1</a> + <a href="changes.html#version_3_35_3">changes.html#version_3_35_3</a> + <a href="changes.html#version_3_36_0">changes.html#version_3_36_0</a> + <a href="changes.html#version_3_37_0">changes.html#version_3_37_0</a> + <a href="changes.html#version_3_37_1">changes.html#version_3_37_1</a> + <a href="changes.html#version_3_38_0">changes.html#version_3_38_0</a> + <a href="changes.html#version_3_38_5">changes.html#version_3_38_5</a> + <a href="changes.html#version_3_40_1">changes.html#version_3_40_1</a> + <a href="changes.html#version_3_41_0">changes.html#version_3_41_0</a> + <a href="changes.html#version_3_41_2">changes.html#version_3_41_2</a> + <a href="changes.html#version_3_42_0">changes.html#version_3_42_0</a> + <a href="changes.html#version_3_43_2">changes.html#version_3_43_2</a> + <a href="changes.html#version_3_44_0">changes.html#version_3_44_0</a> + <a href="changes.html#version_3_44_1">changes.html#version_3_44_1</a> + <a href="changes.html#version_3_44_2">changes.html#version_3_44_2</a> + <a href="changes.html#version_3_45_0">changes.html#version_3_45_0</a> + <a href="changes.html#version_3_6_11">changes.html#version_3_6_11</a> + <a href="changes.html#version_3_6_12">changes.html#version_3_6_12</a> + <a href="cves.html#cvetab">cves.html#cvetab</a> + <a href="eqp.html">eqp.html</a> + <a href="floatingpoint.html#decext">floatingpoint.html#decext</a> + <a href="floatingpoint.html#ieee754ext">floatingpoint.html#ieee754ext</a> + <a href="howtocompile.html#cli">howtocompile.html#cli</a> + <a href="json1.html#jblobbug">json1.html#jblobbug</a> + <a href="news.html">news.html</a> + <a href="nulinstr.html">nulinstr.html</a> + <a href="qmplan.html">qmplan.html</a> + <a href="quickstart.html">quickstart.html</a> + <a href="quirks.html#dblquote">quirks.html#dblquote</a> + <a href="recovery.html">recovery.html</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> + <a href="releaselog/3_24_0.html">releaselog/3_24_0.html</a> + <a href="releaselog/3_25_0.html">releaselog/3_25_0.html</a> + <a href="releaselog/3_25_1.html">releaselog/3_25_1.html</a> + <a href="releaselog/3_25_2.html">releaselog/3_25_2.html</a> + <a href="releaselog/3_25_3.html">releaselog/3_25_3.html</a> + <a href="releaselog/3_26_0.html">releaselog/3_26_0.html</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> + <a href="releaselog/3_29_0.html">releaselog/3_29_0.html</a> + <a href="releaselog/3_30_0.html">releaselog/3_30_0.html</a> + <a href="releaselog/3_30_1.html">releaselog/3_30_1.html</a> + <a href="releaselog/3_32_0.html">releaselog/3_32_0.html</a> + <a href="releaselog/3_32_1.html">releaselog/3_32_1.html</a> + <a href="releaselog/3_32_2.html">releaselog/3_32_2.html</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> + <a href="releaselog/3_33_0.html">releaselog/3_33_0.html</a> + <a href="releaselog/3_34_0.html">releaselog/3_34_0.html</a> + <a href="releaselog/3_34_1.html">releaselog/3_34_1.html</a> + <a href="releaselog/3_35_0.html">releaselog/3_35_0.html</a> + <a href="releaselog/3_35_1.html">releaselog/3_35_1.html</a> + <a href="releaselog/3_35_2.html">releaselog/3_35_2.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> + <a href="releaselog/3_36_0.html">releaselog/3_36_0.html</a> + <a href="releaselog/3_37_0.html">releaselog/3_37_0.html</a> + <a href="releaselog/3_37_1.html">releaselog/3_37_1.html</a> + <a href="releaselog/3_37_2.html">releaselog/3_37_2.html</a> + <a href="releaselog/3_38_0.html">releaselog/3_38_0.html</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> + <a href="releaselog/3_40_1.html">releaselog/3_40_1.html</a> + <a href="releaselog/3_41_0.html">releaselog/3_41_0.html</a> + <a href="releaselog/3_41_1.html">releaselog/3_41_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> + <a href="releaselog/3_42_0.html">releaselog/3_42_0.html</a> + <a href="releaselog/3_43_2.html">releaselog/3_43_2.html</a> + <a href="releaselog/3_44_0.html">releaselog/3_44_0.html</a> + <a href="releaselog/3_44_1.html">releaselog/3_44_1.html</a> + <a href="releaselog/3_44_2.html">releaselog/3_44_2.html</a> + <a href="releaselog/3_45_0.html">releaselog/3_45_0.html</a> + <a href="releaselog/3_45_1.html">releaselog/3_45_1.html</a> + <a href="releaselog/3_6_11.html">releaselog/3_6_11.html</a> + <a href="releaselog/3_6_12.html">releaselog/3_6_12.html</a> + <a href="sqlar.html#cltools">sqlar.html#cltools</a> + <a href="stricttables.html">stricttables.html</a> + <a href="uintcseq.html">uintcseq.html</a> + <a href="vtab.html#xshadowname">vtab.html#xshadowname</a> + <a href="vtablist.html">vtablist.html</a> +<li>clone the entire repository → <a href="download.html#srctree">download.html#srctree</a> +<li>Clustered indexes → <a href="fullsql.html">fullsql.html</a> +<li>co-routines → <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="changes.html#version_3_41_0">changes.html#version_3_41_0</a> + <a href="profile.html">profile.html</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> + <a href="releaselog/3_41_0.html">releaselog/3_41_0.html</a> + <a href="releaselog/3_41_1.html">releaselog/3_41_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> +<li>coalesce → <a href="arch.html">arch.html</a> + <a href="changes.html#version_3_6_21">changes.html#version_3_6_21</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="lang_corefunc.html#ifnull">lang_corefunc.html#ifnull</a> + <a href="optoverview.html#leftjoinreduction">optoverview.html#leftjoinreduction</a> + <a href="releaselog/3_6_21.html">releaselog/3_6_21.html</a> +<li>Code of Ethics → <a href="codeofconduct.html">codeofconduct.html</a> +<li>COLLATE → <a href="fullsql.html">fullsql.html</a> +<li>COLLATE clause → <a href="c3ref/vtab_collation.html">c3ref/vtab_collation.html</a> + <a href="capi3ref.html#sqlite3_vtab_collation">capi3ref.html#sqlite3_vtab_collation</a> + <a href="gencol.html">gencol.html</a> +<li>COLLATE clauses → <a href="stricttables.html">stricttables.html</a> +<li>COLLATE operator → <a href="c3ref/vtab_collation.html">c3ref/vtab_collation.html</a> + <a href="capi3ref.html#sqlite3_vtab_collation">capi3ref.html#sqlite3_vtab_collation</a> + <a href="changes.html#version_3_7_15">changes.html#version_3_7_15</a> + <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="datatype3.html#colrules">datatype3.html#colrules</a> + <a href="lang_select.html#nullslast">lang_select.html#nullslast</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_7_15.html">releaselog/3_7_15.html</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> +<li>collating function → <a href="fileformat2.html#serialtype">fileformat2.html#serialtype</a> +<li>collating sequence → <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="foreignkeys.html#parentchild">foreignkeys.html#parentchild</a> + <a href="gencol.html">gencol.html</a> + <a href="lang_createtable.html#collateclause">lang_createtable.html#collateclause</a> + <a href="lang_expr.html#collateop">lang_expr.html#collateop</a> + <a href="optoverview.html#like_opt">optoverview.html#like_opt</a> + <a href="pragma.html#pragma_index_xinfo">pragma.html#pragma_index_xinfo</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> + <a href="vtab.html#xbestindex">vtab.html#xbestindex</a> +<li>collating sequences → <a href="changes.html#version_3_19_0">changes.html#version_3_19_0</a> + <a href="cintro.html">cintro.html</a> + <a href="cli.html#dotload">cli.html#dotload</a> + <a href="loadext.html">loadext.html</a> + <a href="releaselog/3_19_0.html">releaselog/3_19_0.html</a> + <a href="releaselog/3_19_1.html">releaselog/3_19_1.html</a> + <a href="releaselog/3_19_2.html">releaselog/3_19_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> + <a href="sqldiff.html">sqldiff.html</a> +<li>collation → <a href="c3ref/create_collation.html">c3ref/create_collation.html</a> + <a href="capi3ref.html#sqlite3_create_collation">capi3ref.html#sqlite3_create_collation</a> + <a href="lang_select.html#fromclause">lang_select.html#fromclause</a> + <a href="lang_select.html#resultset">lang_select.html#resultset</a> +<li>column access functions → <a href="c3ref/step.html">c3ref/step.html</a> + <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> + <a href="capi3ref.html#sqlite3_step">capi3ref.html#sqlite3_step</a> + <a href="capi3ref.html#sqlite3_value_blob">capi3ref.html#sqlite3_value_blob</a> +<li>column affinity → <a href="changes.html#version_3_32_0">changes.html#version_3_32_0</a> + <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="lang_expr.html#castexpr">lang_expr.html#castexpr</a> + <a href="lang_expr.html#hexint">lang_expr.html#hexint</a> + <a href="releaselog/3_32_0.html">releaselog/3_32_0.html</a> + <a href="releaselog/3_32_1.html">releaselog/3_32_1.html</a> + <a href="releaselog/3_32_2.html">releaselog/3_32_2.html</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> +<li>column definition → <a href="datatype3.html#collation">datatype3.html#collation</a> + <a href="fileformat2.html#serialtype">fileformat2.html#serialtype</a> + <a href="lang_expr.html#collateop">lang_expr.html#collateop</a> +<li>column definitions → <a href="lang_createvtab.html">lang_createvtab.html</a> + <a href="vtab.html">vtab.html</a> +<li>column-constraint → <a href="gencol.html">gencol.html</a> + <a href="lang_altertable.html">lang_altertable.html</a> + <a href="lang_createtable.html">lang_createtable.html</a> + <a href="lang_createtable.html#tablecoldef">lang_createtable.html#tablecoldef</a> +<li>column-def → <a href="lang_altertable.html">lang_altertable.html</a> + <a href="lang_altertable.html#altertabaddcol">lang_altertable.html#altertabaddcol</a> + <a href="lang_createtable.html">lang_createtable.html</a> + <a href="lang_createtable.html#tablecoldef">lang_createtable.html#tablecoldef</a> +<li>column-name-list → <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_insert.html">lang_insert.html</a> + <a href="lang_update.html">lang_update.html</a> + <a href="lang_upsert.html">lang_upsert.html</a> +<li>Columnar output modes → <a href="changes.html#version_3_38_0">changes.html#version_3_38_0</a> + <a href="releaselog/3_38_0.html">releaselog/3_38_0.html</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> +<li>columnar output modes → <a href="changes.html#version_3_38_0">changes.html#version_3_38_0</a> + <a href="releaselog/3_38_0.html">releaselog/3_38_0.html</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> +<li>colUsed field → <a href="changes.html#version_3_10_0">changes.html#version_3_10_0</a> + <a href="releaselog/3_10_0.html">releaselog/3_10_0.html</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> +<li>comma option → <a href="changes.html#version_3_42_0">changes.html#version_3_42_0</a> + <a href="releaselog/3_42_0.html">releaselog/3_42_0.html</a> +<li>Command Line Interface → <a href="changes.html#version_3_6_21">changes.html#version_3_6_21</a> + <a href="changes.html#version_3_6_23">changes.html#version_3_6_23</a> + <a href="compile.html#enable_iotrace">compile.html#enable_iotrace</a> + <a href="oldnews.html">oldnews.html</a> + <a href="recovery.html">recovery.html</a> + <a href="releaselog/3_6_21.html">releaselog/3_6_21.html</a> + <a href="releaselog/3_6_23.html">releaselog/3_6_23.html</a> +<li>command-line interface → <a href="features.html">features.html</a> +<li>command-line shell → <a href="changes.html#version_3_10_0">changes.html#version_3_10_0</a> + <a href="changes.html#version_3_11_0">changes.html#version_3_11_0</a> + <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="changes.html#version_3_13_0">changes.html#version_3_13_0</a> + <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="changes.html#version_3_14_2">changes.html#version_3_14_2</a> + <a href="changes.html#version_3_15_0">changes.html#version_3_15_0</a> + <a href="changes.html#version_3_16_0">changes.html#version_3_16_0</a> + <a href="changes.html#version_3_17_0">changes.html#version_3_17_0</a> + <a href="changes.html#version_3_18_0">changes.html#version_3_18_0</a> + <a href="changes.html#version_3_19_0">changes.html#version_3_19_0</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="changes.html#version_3_25_0">changes.html#version_3_25_0</a> + <a href="changes.html#version_3_7_10">changes.html#version_3_7_10</a> + <a href="changes.html#version_3_7_11">changes.html#version_3_7_11</a> + <a href="changes.html#version_3_7_14">changes.html#version_3_7_14</a> + <a href="changes.html#version_3_7_16">changes.html#version_3_7_16</a> + <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="changes.html#version_3_7_5">changes.html#version_3_7_5</a> + <a href="changes.html#version_3_8_0">changes.html#version_3_8_0</a> + <a href="changes.html#version_3_8_10">changes.html#version_3_8_10</a> + <a href="changes.html#version_3_8_10_1">changes.html#version_3_8_10_1</a> + <a href="changes.html#version_3_8_2">changes.html#version_3_8_2</a> + <a href="changes.html#version_3_8_3">changes.html#version_3_8_3</a> + <a href="changes.html#version_3_8_5">changes.html#version_3_8_5</a> + <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="changes.html#version_3_8_7">changes.html#version_3_8_7</a> + <a href="changes.html#version_3_8_8_3">changes.html#version_3_8_8_3</a> + <a href="changes.html#version_3_8_9">changes.html#version_3_8_9</a> + <a href="compile.html#enable_explain_comments">compile.html#enable_explain_comments</a> + <a href="compile.html#enable_unknown_sql_function">compile.html#enable_unknown_sql_function</a> + <a href="compile.html#have_zlib">compile.html#have_zlib</a> + <a href="completion.html">completion.html</a> + <a href="csv.html">csv.html</a> + <a href="cves.html#cvetab">cves.html#cvetab</a> + <a href="dbpage.html">dbpage.html</a> + <a href="debugging.html">debugging.html</a> + <a href="eqp.html">eqp.html</a> + <a href="imposter.html#dotimposter">imposter.html#dotimposter</a> + <a href="lang_with.html#mandelbrot">lang_with.html#mandelbrot</a> + <a href="loadext.html">loadext.html</a> + <a href="news.html">news.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="opcode.html#subprog">opcode.html#subprog</a> + <a href="profile.html">profile.html</a> + <a href="releaselog/3_10_0.html">releaselog/3_10_0.html</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> + <a href="releaselog/3_11_0.html">releaselog/3_11_0.html</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> + <a href="releaselog/3_13_0.html">releaselog/3_13_0.html</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="releaselog/3_15_0.html">releaselog/3_15_0.html</a> + <a href="releaselog/3_15_1.html">releaselog/3_15_1.html</a> + <a href="releaselog/3_15_2.html">releaselog/3_15_2.html</a> + <a href="releaselog/3_16_0.html">releaselog/3_16_0.html</a> + <a href="releaselog/3_16_1.html">releaselog/3_16_1.html</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> + <a href="releaselog/3_17_0.html">releaselog/3_17_0.html</a> + <a href="releaselog/3_18_0.html">releaselog/3_18_0.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> + <a href="releaselog/3_19_0.html">releaselog/3_19_0.html</a> + <a href="releaselog/3_19_1.html">releaselog/3_19_1.html</a> + <a href="releaselog/3_19_2.html">releaselog/3_19_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> + <a href="releaselog/3_25_0.html">releaselog/3_25_0.html</a> + <a href="releaselog/3_25_1.html">releaselog/3_25_1.html</a> + <a href="releaselog/3_25_2.html">releaselog/3_25_2.html</a> + <a href="releaselog/3_25_3.html">releaselog/3_25_3.html</a> + <a href="releaselog/3_7_10.html">releaselog/3_7_10.html</a> + <a href="releaselog/3_7_11.html">releaselog/3_7_11.html</a> + <a href="releaselog/3_7_14.html">releaselog/3_7_14.html</a> + <a href="releaselog/3_7_16.html">releaselog/3_7_16.html</a> + <a href="releaselog/3_7_16_1.html">releaselog/3_7_16_1.html</a> + <a href="releaselog/3_7_16_2.html">releaselog/3_7_16_2.html</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> + <a href="releaselog/3_7_5.html">releaselog/3_7_5.html</a> + <a href="releaselog/3_8_0.html">releaselog/3_8_0.html</a> + <a href="releaselog/3_8_0_1.html">releaselog/3_8_0_1.html</a> + <a href="releaselog/3_8_0_2.html">releaselog/3_8_0_2.html</a> + <a href="releaselog/3_8_10.html">releaselog/3_8_10.html</a> + <a href="releaselog/3_8_10_1.html">releaselog/3_8_10_1.html</a> + <a href="releaselog/3_8_10_2.html">releaselog/3_8_10_2.html</a> + <a href="releaselog/3_8_2.html">releaselog/3_8_2.html</a> + <a href="releaselog/3_8_3.html">releaselog/3_8_3.html</a> + <a href="releaselog/3_8_5.html">releaselog/3_8_5.html</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> + <a href="releaselog/3_8_7.html">releaselog/3_8_7.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> + <a href="releaselog/3_8_9.html">releaselog/3_8_9.html</a> + <a href="series.html">series.html</a> + <a href="sqlanalyze.html">sqlanalyze.html</a> + <a href="stmt.html">stmt.html</a> + <a href="vfs.html#shim">vfs.html#shim</a> + <a href="wal.html#fast">wal.html#fast</a> + <a href="whentouse.html#website">whentouse.html#website</a> + <a href="zipfile.html">zipfile.html</a> +<li>comment → <a href="lang.html">lang.html</a> +<li>comment-syntax → <a href="lang_comment.html">lang_comment.html</a> +<li>COMMIT → <a href="asyncvfs.html">asyncvfs.html</a> + <a href="c3ref/c_txn_none.html#sqlitetxnread">c3ref/c_txn_none.html#sqlitetxnread</a> + <a href="c3ref/c_txn_none.html#sqlitetxnwrite">c3ref/c_txn_none.html#sqlitetxnwrite</a> + <a href="c3ref/commit_hook.html">c3ref/commit_hook.html</a> + <a href="c3ref/get_autocommit.html">c3ref/get_autocommit.html</a> + <a href="c3ref/step.html">c3ref/step.html</a> + <a href="c3ref/stmt_readonly.html">c3ref/stmt_readonly.html</a> + <a href="capi3ref.html#sqlite3_commit_hook">capi3ref.html#sqlite3_commit_hook</a> + <a href="capi3ref.html#sqlite3_get_autocommit">capi3ref.html#sqlite3_get_autocommit</a> + <a href="capi3ref.html#sqlite3_step">capi3ref.html#sqlite3_step</a> + <a href="capi3ref.html#sqlite3_stmt_readonly">capi3ref.html#sqlite3_stmt_readonly</a> + <a href="capi3ref.html#sqlitetxnread">capi3ref.html#sqlitetxnread</a> + <a href="capi3ref.html#sqlitetxnwrite">capi3ref.html#sqlitetxnwrite</a> + <a href="changes.html#version_3_14_1">changes.html#version_3_14_1</a> + <a href="changes.html#version_3_32_2">changes.html#version_3_32_2</a> + <a href="changes.html#version_3_6_5">changes.html#version_3_6_5</a> + <a href="faq.html#q19">faq.html#q19</a> + <a href="foreignkeys.html#fk_enable">foreignkeys.html#fk_enable</a> + <a href="fts3.html#*fts4mergecmd">fts3.html#*fts4mergecmd</a> + <a href="fullsql.html">fullsql.html</a> + <a href="isolation.html">isolation.html</a> + <a href="lang.html">lang.html</a> + <a href="lang_attach.html">lang_attach.html</a> + <a href="lang_savepoint.html">lang_savepoint.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_cache_spill">pragma.html#pragma_cache_spill</a> + <a href="pragma.html#pragma_query_only">pragma.html#pragma_query_only</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="releaselog/3_32_2.html">releaselog/3_32_2.html</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> + <a href="releaselog/3_6_5.html">releaselog/3_6_5.html</a> + <a href="rescode.html#busy">rescode.html#busy</a> + <a href="tempfiles.html#superjrnl">tempfiles.html#superjrnl</a> + <a href="wal.html#advantages">wal.html#advantages</a> + <a href="wal.html#fast">wal.html#fast</a> +<li>commit-stmt → <a href="lang_transaction.html">lang_transaction.html</a> +<li>common table expressions → <a href="changes.html#version_3_10_0">changes.html#version_3_10_0</a> + <a href="changes.html#version_3_35_0">changes.html#version_3_35_0</a> + <a href="changes.html#version_3_35_3">changes.html#version_3_35_3</a> + <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="changes.html#version_3_8_3">changes.html#version_3_8_3</a> + <a href="compile.html#omit_cte">compile.html#omit_cte</a> + <a href="csv.html">csv.html</a> + <a href="features.html">features.html</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_select.html#values">lang_select.html#values</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_10_0.html">releaselog/3_10_0.html</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> + <a href="releaselog/3_35_0.html">releaselog/3_35_0.html</a> + <a href="releaselog/3_35_1.html">releaselog/3_35_1.html</a> + <a href="releaselog/3_35_2.html">releaselog/3_35_2.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> + <a href="releaselog/3_8_3.html">releaselog/3_8_3.html</a> + <a href="versionnumbers.html">versionnumbers.html</a> +<li>common-table-expression → <a href="lang_aggfunc.html">lang_aggfunc.html</a> + <a href="lang_altertable.html">lang_altertable.html</a> + <a href="lang_attach.html">lang_attach.html</a> + <a href="lang_createindex.html">lang_createindex.html</a> + <a href="lang_createtable.html">lang_createtable.html</a> + <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_createview.html">lang_createview.html</a> + <a href="lang_delete.html">lang_delete.html</a> + <a href="lang_expr.html">lang_expr.html</a> + <a href="lang_insert.html">lang_insert.html</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_select.html">lang_select.html</a> + <a href="lang_select.html#compound">lang_select.html#compound</a> + <a href="lang_select.html#simpleselect">lang_select.html#simpleselect</a> + <a href="lang_update.html">lang_update.html</a> + <a href="lang_upsert.html">lang_upsert.html</a> + <a href="lang_with.html">lang_with.html</a> + <a href="partialindex.html">partialindex.html</a> + <a href="windowfunctions.html">windowfunctions.html</a> + <a href="windowfunctions.html#framespec">windowfunctions.html#framespec</a> + <a href="windowfunctions.html#wexcls">windowfunctions.html#wexcls</a> +<li>comparison expressions → <a href="lang_select.html#nullslast">lang_select.html#nullslast</a> +<li>compile fts → <a href="fts3.html#fts4aux">fts3.html#fts4aux</a> + <a href="fts3.html#near">fts3.html#near</a> +<li>compile loadable extensions → <a href="memstat.html">memstat.html</a> + <a href="stmt.html">stmt.html</a> +<li>compile-time options → <a href="amalgamation.html">amalgamation.html</a> + <a href="debugging.html">debugging.html</a> + <a href="howtocompile.html#amal">howtocompile.html#amal</a> + <a href="howtocompile.html#cli">howtocompile.html#cli</a> + <a href="howtocompile.html#dll">howtocompile.html#dll</a> + <a href="lang_keywords.html">lang_keywords.html</a> + <a href="pragma.html#pragma_compile_options">pragma.html#pragma_compile_options</a> + <a href="privatebranch.html">privatebranch.html</a> +<li>compile_options pragma → <a href="c3ref/compileoption_get.html">c3ref/compileoption_get.html</a> + <a href="capi3ref.html#sqlite3_compileoption_get">capi3ref.html#sqlite3_compileoption_get</a> + <a href="changes.html#version_3_6_23">changes.html#version_3_6_23</a> + <a href="compile.html#omit_compileoption_diags">compile.html#omit_compileoption_diags</a> + <a href="lang_corefunc.html#sqlite_compileoption_get">lang_corefunc.html#sqlite_compileoption_get</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_6_23.html">releaselog/3_6_23.html</a> +<li>Compiling Loadable Extensions → <a href="fts5.html#compiling_and_using_fts5">fts5.html#compiling_and_using_fts5</a> +<li>complete list of SQLite releases → <a href="qmplan.html">qmplan.html</a> + <a href="releaselog/3_0_0.html">releaselog/3_0_0.html</a> + <a href="releaselog/3_0_1.html">releaselog/3_0_1.html</a> + <a href="releaselog/3_0_2.html">releaselog/3_0_2.html</a> + <a href="releaselog/3_0_3.html">releaselog/3_0_3.html</a> + <a href="releaselog/3_0_4.html">releaselog/3_0_4.html</a> + <a href="releaselog/3_0_5.html">releaselog/3_0_5.html</a> + <a href="releaselog/3_0_6.html">releaselog/3_0_6.html</a> + <a href="releaselog/3_0_7.html">releaselog/3_0_7.html</a> + <a href="releaselog/3_0_8.html">releaselog/3_0_8.html</a> + <a href="releaselog/3_10_0.html">releaselog/3_10_0.html</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> + <a href="releaselog/3_11_0.html">releaselog/3_11_0.html</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> + <a href="releaselog/3_13_0.html">releaselog/3_13_0.html</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="releaselog/3_15_0.html">releaselog/3_15_0.html</a> + <a href="releaselog/3_15_1.html">releaselog/3_15_1.html</a> + <a href="releaselog/3_15_2.html">releaselog/3_15_2.html</a> + <a href="releaselog/3_16_0.html">releaselog/3_16_0.html</a> + <a href="releaselog/3_16_1.html">releaselog/3_16_1.html</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> + <a href="releaselog/3_17_0.html">releaselog/3_17_0.html</a> + <a href="releaselog/3_18_0.html">releaselog/3_18_0.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> + <a href="releaselog/3_19_0.html">releaselog/3_19_0.html</a> + <a href="releaselog/3_19_1.html">releaselog/3_19_1.html</a> + <a href="releaselog/3_19_2.html">releaselog/3_19_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> + <a href="releaselog/3_1_0.html">releaselog/3_1_0.html</a> + <a href="releaselog/3_1_1.html">releaselog/3_1_1.html</a> + <a href="releaselog/3_1_2.html">releaselog/3_1_2.html</a> + <a href="releaselog/3_1_3.html">releaselog/3_1_3.html</a> + <a href="releaselog/3_1_4.html">releaselog/3_1_4.html</a> + <a href="releaselog/3_1_5.html">releaselog/3_1_5.html</a> + <a href="releaselog/3_1_6.html">releaselog/3_1_6.html</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> + <a href="releaselog/3_24_0.html">releaselog/3_24_0.html</a> + <a href="releaselog/3_25_0.html">releaselog/3_25_0.html</a> + <a href="releaselog/3_25_1.html">releaselog/3_25_1.html</a> + <a href="releaselog/3_25_2.html">releaselog/3_25_2.html</a> + <a href="releaselog/3_25_3.html">releaselog/3_25_3.html</a> + <a href="releaselog/3_26_0.html">releaselog/3_26_0.html</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> + <a href="releaselog/3_29_0.html">releaselog/3_29_0.html</a> + <a href="releaselog/3_2_0.html">releaselog/3_2_0.html</a> + <a href="releaselog/3_2_1.html">releaselog/3_2_1.html</a> + <a href="releaselog/3_2_2.html">releaselog/3_2_2.html</a> + <a href="releaselog/3_2_3.html">releaselog/3_2_3.html</a> + <a href="releaselog/3_2_4.html">releaselog/3_2_4.html</a> + <a href="releaselog/3_2_5.html">releaselog/3_2_5.html</a> + <a href="releaselog/3_2_6.html">releaselog/3_2_6.html</a> + <a href="releaselog/3_2_7.html">releaselog/3_2_7.html</a> + <a href="releaselog/3_2_8.html">releaselog/3_2_8.html</a> + <a href="releaselog/3_30_0.html">releaselog/3_30_0.html</a> + <a href="releaselog/3_30_1.html">releaselog/3_30_1.html</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> + <a href="releaselog/3_32_0.html">releaselog/3_32_0.html</a> + <a href="releaselog/3_32_1.html">releaselog/3_32_1.html</a> + <a href="releaselog/3_32_2.html">releaselog/3_32_2.html</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> + <a href="releaselog/3_33_0.html">releaselog/3_33_0.html</a> + <a href="releaselog/3_34_0.html">releaselog/3_34_0.html</a> + <a href="releaselog/3_34_1.html">releaselog/3_34_1.html</a> + <a href="releaselog/3_35_0.html">releaselog/3_35_0.html</a> + <a href="releaselog/3_35_1.html">releaselog/3_35_1.html</a> + <a href="releaselog/3_35_2.html">releaselog/3_35_2.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> + <a href="releaselog/3_36_0.html">releaselog/3_36_0.html</a> + <a href="releaselog/3_37_0.html">releaselog/3_37_0.html</a> + <a href="releaselog/3_37_1.html">releaselog/3_37_1.html</a> + <a href="releaselog/3_37_2.html">releaselog/3_37_2.html</a> + <a href="releaselog/3_38_0.html">releaselog/3_38_0.html</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> + <a href="releaselog/3_39_0.html">releaselog/3_39_0.html</a> + <a href="releaselog/3_39_1.html">releaselog/3_39_1.html</a> + <a href="releaselog/3_39_2.html">releaselog/3_39_2.html</a> + <a href="releaselog/3_39_3.html">releaselog/3_39_3.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> + <a href="releaselog/3_3_0.html">releaselog/3_3_0.html</a> + <a href="releaselog/3_3_1.html">releaselog/3_3_1.html</a> + <a href="releaselog/3_3_10.html">releaselog/3_3_10.html</a> + <a href="releaselog/3_3_11.html">releaselog/3_3_11.html</a> + <a href="releaselog/3_3_12.html">releaselog/3_3_12.html</a> + <a href="releaselog/3_3_13.html">releaselog/3_3_13.html</a> + <a href="releaselog/3_3_14.html">releaselog/3_3_14.html</a> + <a href="releaselog/3_3_15.html">releaselog/3_3_15.html</a> + <a href="releaselog/3_3_16.html">releaselog/3_3_16.html</a> + <a href="releaselog/3_3_17.html">releaselog/3_3_17.html</a> + <a href="releaselog/3_3_2.html">releaselog/3_3_2.html</a> + <a href="releaselog/3_3_3.html">releaselog/3_3_3.html</a> + <a href="releaselog/3_3_4.html">releaselog/3_3_4.html</a> + <a href="releaselog/3_3_5.html">releaselog/3_3_5.html</a> + <a href="releaselog/3_3_6.html">releaselog/3_3_6.html</a> + <a href="releaselog/3_3_7.html">releaselog/3_3_7.html</a> + <a href="releaselog/3_3_8.html">releaselog/3_3_8.html</a> + <a href="releaselog/3_3_9.html">releaselog/3_3_9.html</a> + <a href="releaselog/3_40_0.html">releaselog/3_40_0.html</a> + <a href="releaselog/3_40_1.html">releaselog/3_40_1.html</a> + <a href="releaselog/3_41_0.html">releaselog/3_41_0.html</a> + <a href="releaselog/3_41_1.html">releaselog/3_41_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> + <a href="releaselog/3_42_0.html">releaselog/3_42_0.html</a> + <a href="releaselog/3_43_0.html">releaselog/3_43_0.html</a> + <a href="releaselog/3_43_1.html">releaselog/3_43_1.html</a> + <a href="releaselog/3_43_2.html">releaselog/3_43_2.html</a> + <a href="releaselog/3_44_0.html">releaselog/3_44_0.html</a> + <a href="releaselog/3_44_1.html">releaselog/3_44_1.html</a> + <a href="releaselog/3_44_2.html">releaselog/3_44_2.html</a> + <a href="releaselog/3_45_0.html">releaselog/3_45_0.html</a> + <a href="releaselog/3_45_1.html">releaselog/3_45_1.html</a> + <a href="releaselog/3_4_0.html">releaselog/3_4_0.html</a> + <a href="releaselog/3_4_1.html">releaselog/3_4_1.html</a> + <a href="releaselog/3_4_2.html">releaselog/3_4_2.html</a> + <a href="releaselog/3_5_0.html">releaselog/3_5_0.html</a> + <a href="releaselog/3_5_1.html">releaselog/3_5_1.html</a> + <a href="releaselog/3_5_2.html">releaselog/3_5_2.html</a> + <a href="releaselog/3_5_3.html">releaselog/3_5_3.html</a> + <a href="releaselog/3_5_4.html">releaselog/3_5_4.html</a> + <a href="releaselog/3_5_5.html">releaselog/3_5_5.html</a> + <a href="releaselog/3_5_6.html">releaselog/3_5_6.html</a> + <a href="releaselog/3_5_7.html">releaselog/3_5_7.html</a> + <a href="releaselog/3_5_8.html">releaselog/3_5_8.html</a> + <a href="releaselog/3_5_9.html">releaselog/3_5_9.html</a> + <a href="releaselog/3_6_0.html">releaselog/3_6_0.html</a> + <a href="releaselog/3_6_1.html">releaselog/3_6_1.html</a> + <a href="releaselog/3_6_10.html">releaselog/3_6_10.html</a> + <a href="releaselog/3_6_11.html">releaselog/3_6_11.html</a> + <a href="releaselog/3_6_12.html">releaselog/3_6_12.html</a> + <a href="releaselog/3_6_13.html">releaselog/3_6_13.html</a> + <a href="releaselog/3_6_14.html">releaselog/3_6_14.html</a> + <a href="releaselog/3_6_14_1.html">releaselog/3_6_14_1.html</a> + <a href="releaselog/3_6_14_2.html">releaselog/3_6_14_2.html</a> + <a href="releaselog/3_6_15.html">releaselog/3_6_15.html</a> + <a href="releaselog/3_6_16.html">releaselog/3_6_16.html</a> + <a href="releaselog/3_6_16_1.html">releaselog/3_6_16_1.html</a> + <a href="releaselog/3_6_17.html">releaselog/3_6_17.html</a> + <a href="releaselog/3_6_18.html">releaselog/3_6_18.html</a> + <a href="releaselog/3_6_19.html">releaselog/3_6_19.html</a> + <a href="releaselog/3_6_2.html">releaselog/3_6_2.html</a> + <a href="releaselog/3_6_20.html">releaselog/3_6_20.html</a> + <a href="releaselog/3_6_21.html">releaselog/3_6_21.html</a> + <a href="releaselog/3_6_22.html">releaselog/3_6_22.html</a> + <a href="releaselog/3_6_23.html">releaselog/3_6_23.html</a> + <a href="releaselog/3_6_23_1.html">releaselog/3_6_23_1.html</a> + <a href="releaselog/3_6_3.html">releaselog/3_6_3.html</a> + <a href="releaselog/3_6_4.html">releaselog/3_6_4.html</a> + <a href="releaselog/3_6_5.html">releaselog/3_6_5.html</a> + <a href="releaselog/3_6_6.html">releaselog/3_6_6.html</a> + <a href="releaselog/3_6_6_1.html">releaselog/3_6_6_1.html</a> + <a href="releaselog/3_6_6_2.html">releaselog/3_6_6_2.html</a> + <a href="releaselog/3_6_7.html">releaselog/3_6_7.html</a> + <a href="releaselog/3_6_8.html">releaselog/3_6_8.html</a> + <a href="releaselog/3_6_9.html">releaselog/3_6_9.html</a> + <a href="releaselog/3_7_0.html">releaselog/3_7_0.html</a> + <a href="releaselog/3_7_0_1.html">releaselog/3_7_0_1.html</a> + <a href="releaselog/3_7_1.html">releaselog/3_7_1.html</a> + <a href="releaselog/3_7_10.html">releaselog/3_7_10.html</a> + <a href="releaselog/3_7_11.html">releaselog/3_7_11.html</a> + <a href="releaselog/3_7_12.html">releaselog/3_7_12.html</a> + <a href="releaselog/3_7_12_1.html">releaselog/3_7_12_1.html</a> + <a href="releaselog/3_7_13.html">releaselog/3_7_13.html</a> + <a href="releaselog/3_7_14.html">releaselog/3_7_14.html</a> + <a href="releaselog/3_7_14_1.html">releaselog/3_7_14_1.html</a> + <a href="releaselog/3_7_15.html">releaselog/3_7_15.html</a> + <a href="releaselog/3_7_15_1.html">releaselog/3_7_15_1.html</a> + <a href="releaselog/3_7_15_2.html">releaselog/3_7_15_2.html</a> + <a href="releaselog/3_7_16.html">releaselog/3_7_16.html</a> + <a href="releaselog/3_7_16_1.html">releaselog/3_7_16_1.html</a> + <a href="releaselog/3_7_16_2.html">releaselog/3_7_16_2.html</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> + <a href="releaselog/3_7_2.html">releaselog/3_7_2.html</a> + <a href="releaselog/3_7_3.html">releaselog/3_7_3.html</a> + <a href="releaselog/3_7_4.html">releaselog/3_7_4.html</a> + <a href="releaselog/3_7_5.html">releaselog/3_7_5.html</a> + <a href="releaselog/3_7_6.html">releaselog/3_7_6.html</a> + <a href="releaselog/3_7_6_1.html">releaselog/3_7_6_1.html</a> + <a href="releaselog/3_7_6_2.html">releaselog/3_7_6_2.html</a> + <a href="releaselog/3_7_6_3.html">releaselog/3_7_6_3.html</a> + <a href="releaselog/3_7_7.html">releaselog/3_7_7.html</a> + <a href="releaselog/3_7_7_1.html">releaselog/3_7_7_1.html</a> + <a href="releaselog/3_7_8.html">releaselog/3_7_8.html</a> + <a href="releaselog/3_7_9.html">releaselog/3_7_9.html</a> + <a href="releaselog/3_8_0.html">releaselog/3_8_0.html</a> + <a href="releaselog/3_8_0_1.html">releaselog/3_8_0_1.html</a> + <a href="releaselog/3_8_0_2.html">releaselog/3_8_0_2.html</a> + <a href="releaselog/3_8_1.html">releaselog/3_8_1.html</a> + <a href="releaselog/3_8_10.html">releaselog/3_8_10.html</a> + <a href="releaselog/3_8_10_1.html">releaselog/3_8_10_1.html</a> + <a href="releaselog/3_8_10_2.html">releaselog/3_8_10_2.html</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> + <a href="releaselog/3_8_2.html">releaselog/3_8_2.html</a> + <a href="releaselog/3_8_3.html">releaselog/3_8_3.html</a> + <a href="releaselog/3_8_3_1.html">releaselog/3_8_3_1.html</a> + <a href="releaselog/3_8_4.html">releaselog/3_8_4.html</a> + <a href="releaselog/3_8_4_1.html">releaselog/3_8_4_1.html</a> + <a href="releaselog/3_8_4_2.html">releaselog/3_8_4_2.html</a> + <a href="releaselog/3_8_4_3.html">releaselog/3_8_4_3.html</a> + <a href="releaselog/3_8_5.html">releaselog/3_8_5.html</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> + <a href="releaselog/3_8_7.html">releaselog/3_8_7.html</a> + <a href="releaselog/3_8_7_1.html">releaselog/3_8_7_1.html</a> + <a href="releaselog/3_8_7_2.html">releaselog/3_8_7_2.html</a> + <a href="releaselog/3_8_7_3.html">releaselog/3_8_7_3.html</a> + <a href="releaselog/3_8_7_4.html">releaselog/3_8_7_4.html</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> + <a href="releaselog/3_8_9.html">releaselog/3_8_9.html</a> + <a href="releaselog/3_9_0.html">releaselog/3_9_0.html</a> + <a href="releaselog/3_9_1.html">releaselog/3_9_1.html</a> + <a href="releaselog/3_9_2.html">releaselog/3_9_2.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> +<li>COMPLETION → <a href="vtablist.html">vtablist.html</a> +<li>COMPLETION extension → <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> +<li>compound query → <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="eqp.html#or-opt">eqp.html#or-opt</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> +<li>compound select → <a href="lang_with.html#mathint">lang_with.html#mathint</a> + <a href="lang_with.html#recursivecte">lang_with.html#recursivecte</a> +<li>compound SELECT → <a href="datatype3.html#affcompoundview">datatype3.html#affcompoundview</a> + <a href="lang_select.html">lang_select.html</a> + <a href="lang_select.html#limitoffset">lang_select.html#limitoffset</a> + <a href="lang_select.html#nullslast">lang_select.html#nullslast</a> + <a href="lang_select.html#orderby">lang_select.html#orderby</a> +<li>compound SELECTs → <a href="lang_insert.html">lang_insert.html</a> +<li>compound-operator → <a href="lang_aggfunc.html">lang_aggfunc.html</a> + <a href="lang_altertable.html">lang_altertable.html</a> + <a href="lang_attach.html">lang_attach.html</a> + <a href="lang_createindex.html">lang_createindex.html</a> + <a href="lang_createtable.html">lang_createtable.html</a> + <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_createview.html">lang_createview.html</a> + <a href="lang_delete.html">lang_delete.html</a> + <a href="lang_expr.html">lang_expr.html</a> + <a href="lang_insert.html">lang_insert.html</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_select.html">lang_select.html</a> + <a href="lang_select.html#compound">lang_select.html#compound</a> + <a href="lang_select.html#simpleselect">lang_select.html#simpleselect</a> + <a href="lang_update.html">lang_update.html</a> + <a href="lang_upsert.html">lang_upsert.html</a> + <a href="lang_with.html">lang_with.html</a> + <a href="partialindex.html">partialindex.html</a> + <a href="windowfunctions.html">windowfunctions.html</a> + <a href="windowfunctions.html#framespec">windowfunctions.html#framespec</a> + <a href="windowfunctions.html#wexcls">windowfunctions.html#wexcls</a> +<li>compound-select-stmt → <a href="lang_select.html#compound">lang_select.html#compound</a> +<li>compressed FTS4 content → <a href="changes.html#version_3_7_6">changes.html#version_3_7_6</a> + <a href="releaselog/3_7_6.html">releaselog/3_7_6.html</a> +<li>compute the Mandelbrot set → <a href="oldnews.html">oldnews.html</a> +<li>concat → <a href="changes.html#version_3_44_0">changes.html#version_3_44_0</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="releaselog/3_44_0.html">releaselog/3_44_0.html</a> + <a href="releaselog/3_44_1.html">releaselog/3_44_1.html</a> + <a href="releaselog/3_44_2.html">releaselog/3_44_2.html</a> +<li>concat_ws → <a href="changes.html#version_3_44_0">changes.html#version_3_44_0</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="releaselog/3_44_0.html">releaselog/3_44_0.html</a> + <a href="releaselog/3_44_1.html">releaselog/3_44_1.html</a> + <a href="releaselog/3_44_2.html">releaselog/3_44_2.html</a> +<li>config method → <a href="changes.html#version_3_30_0">changes.html#version_3_30_0</a> + <a href="releaselog/3_30_0.html">releaselog/3_30_0.html</a> + <a href="releaselog/3_30_1.html">releaselog/3_30_1.html</a> +<li>configuration option → <a href="c3ref/config.html">c3ref/config.html</a> + <a href="capi3ref.html#sqlite3_config">capi3ref.html#sqlite3_config</a> +<li>conflict clause → <a href="lang_createtable.html#notnullconst">lang_createtable.html#notnullconst</a> +<li>conflict resolution algorithm → <a href="lang_upsert.html#parseambig">lang_upsert.html#parseambig</a> +<li>conflict resolution mode → <a href="c3ref/c_deny.html">c3ref/c_deny.html</a> + <a href="capi3ref.html#SQLITE_DENY">capi3ref.html#SQLITE_DENY</a> + <a href="rescode.html#abort">rescode.html#abort</a> +<li>conflict-clause → <a href="lang_altertable.html">lang_altertable.html</a> + <a href="lang_conflict.html">lang_conflict.html</a> + <a href="lang_createtable.html">lang_createtable.html</a> + <a href="lang_createtable.html#notnullconst">lang_createtable.html#notnullconst</a> +<li>constant-propagation optimization → <a href="changes.html#version_3_36_0">changes.html#version_3_36_0</a> + <a href="changes.html#version_3_41_0">changes.html#version_3_41_0</a> + <a href="releaselog/3_36_0.html">releaselog/3_36_0.html</a> + <a href="releaselog/3_41_0.html">releaselog/3_41_0.html</a> + <a href="releaselog/3_41_1.html">releaselog/3_41_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> +<li>contentless fts4 tables → <a href="rbu.html#fts4_tables">rbu.html#fts4_tables</a> +<li>contentless-delete → <a href="changes.html#version_3_43_0">changes.html#version_3_43_0</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_43_0.html">releaselog/3_43_0.html</a> + <a href="releaselog/3_43_1.html">releaselog/3_43_1.html</a> + <a href="releaselog/3_43_2.html">releaselog/3_43_2.html</a> +<li>copyright → <a href="hirely.html">hirely.html</a> +<li>Core Functions → <a href="fullsql.html">fullsql.html</a> +<li>corefunc → <a href="fts5.html">fts5.html</a> + <a href="fts5.html#_auxiliary_functions_">fts5.html#_auxiliary_functions_</a> + <a href="lang.html">lang.html</a> + <a href="lang_datefunc.html">lang_datefunc.html</a> + <a href="lang_expr.html#*funcinexpr">lang_expr.html#*funcinexpr</a> +<li>coreqp → <a href="changes.html#version_3_7_13">changes.html#version_3_7_13</a> + <a href="inmemorydb.html#sharedmemdb">inmemorydb.html#sharedmemdb</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_7_13.html">releaselog/3_7_13.html</a> +<li>correlated subqueries → <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="fullsql.html">fullsql.html</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> +<li>cos → <a href="lang_mathfunc.html">lang_mathfunc.html</a> +<li>cosh → <a href="lang_mathfunc.html">lang_mathfunc.html</a> +<li>count → <a href="arch.html">arch.html</a> + <a href="lang_aggfunc.html#aggfunclist">lang_aggfunc.html#aggfunclist</a> + <a href="lang_aggfunc.html#avg">lang_aggfunc.html#avg</a> +<li>count_changes pragma → <a href="c3ref/changes.html">c3ref/changes.html</a> + <a href="c3ref/total_changes.html">c3ref/total_changes.html</a> + <a href="capi3ref.html#sqlite3_changes">capi3ref.html#sqlite3_changes</a> + <a href="capi3ref.html#sqlite3_total_changes">capi3ref.html#sqlite3_total_changes</a> + <a href="changes.html#version_3_6_5">changes.html#version_3_6_5</a> + <a href="changes.html#version_3_7_9">changes.html#version_3_7_9</a> + <a href="lang_createtrigger.html#instead_of_trigger">lang_createtrigger.html#instead_of_trigger</a> + <a href="lang_delete.html#truncateopt">lang_delete.html#truncateopt</a> + <a href="releaselog/3_6_5.html">releaselog/3_6_5.html</a> + <a href="releaselog/3_7_9.html">releaselog/3_7_9.html</a> +<li>covering index → <a href="changes.html#version_3_11_0">changes.html#version_3_11_0</a> + <a href="changes.html#version_3_41_0">changes.html#version_3_41_0</a> + <a href="changes.html#version_3_7_14">changes.html#version_3_7_14</a> + <a href="eqp.html">eqp.html</a> + <a href="fullsql.html">fullsql.html</a> + <a href="queryplanner.html#srchsortcovidx">queryplanner.html#srchsortcovidx</a> + <a href="releaselog/3_11_0.html">releaselog/3_11_0.html</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> + <a href="releaselog/3_41_0.html">releaselog/3_41_0.html</a> + <a href="releaselog/3_41_1.html">releaselog/3_41_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> + <a href="releaselog/3_7_14.html">releaselog/3_7_14.html</a> +<li>covering indexes → <a href="changes.html#version_3_40_0">changes.html#version_3_40_0</a> + <a href="releaselog/3_40_0.html">releaselog/3_40_0.html</a> + <a href="releaselog/3_40_1.html">releaselog/3_40_1.html</a> +<li>CPU cycles used → <a href="changes.html#version_3_17_0">changes.html#version_3_17_0</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="releaselog/3_17_0.html">releaselog/3_17_0.html</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> +<li>CPU performance measurement → <a href="changes.html#version_3_16_0">changes.html#version_3_16_0</a> + <a href="releaselog/3_16_0.html">releaselog/3_16_0.html</a> + <a href="releaselog/3_16_1.html">releaselog/3_16_1.html</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> +<li>CREATE INDEX → <a href="aff_short.html">aff_short.html</a> + <a href="appfileformat.html">appfileformat.html</a> + <a href="changes.html#version_3_7_8">changes.html#version_3_7_8</a> + <a href="changes.html#version_3_8_10">changes.html#version_3_8_10</a> + <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="expridx.html">expridx.html</a> + <a href="fileformat2.html##sqltab">fileformat2.html##sqltab</a> + <a href="fileformat2.html#ffschema">fileformat2.html#ffschema</a> + <a href="fileformat2.html#serialtype">fileformat2.html#serialtype</a> + <a href="foreignkeys.html#fk_actions">foreignkeys.html#fk_actions</a> + <a href="fullsql.html">fullsql.html</a> + <a href="lang.html">lang.html</a> + <a href="lang_altertable.html#otheralter">lang_altertable.html#otheralter</a> + <a href="lang_dropindex.html">lang_dropindex.html</a> + <a href="limits.html#max_page_count">limits.html#max_page_count</a> + <a href="oldnews.html">oldnews.html</a> + <a href="optoverview.html#where_clause">optoverview.html#where_clause</a> + <a href="partialindex.html">partialindex.html</a> + <a href="pragma.html#pragma_index_info">pragma.html#pragma_index_info</a> + <a href="pragma.html#pragma_index_list">pragma.html#pragma_index_list</a> + <a href="pragma.html#pragma_index_xinfo">pragma.html#pragma_index_xinfo</a> + <a href="pragma.html#pragma_journal_mode">pragma.html#pragma_journal_mode</a> + <a href="pragma.html#pragma_legacy_alter_table">pragma.html#pragma_legacy_alter_table</a> + <a href="releaselog/3_7_8.html">releaselog/3_7_8.html</a> + <a href="releaselog/3_8_10.html">releaselog/3_8_10.html</a> + <a href="releaselog/3_8_10_1.html">releaselog/3_8_10_1.html</a> + <a href="releaselog/3_8_10_2.html">releaselog/3_8_10_2.html</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> + <a href="schematab.html">schematab.html</a> + <a href="vtab.html">vtab.html</a> +<li>CREATE TABLE → <a href="csv.html">csv.html</a> + <a href="eqp.html">eqp.html</a> + <a href="expridx.html">expridx.html</a> + <a href="fileformat2.html#ffschema">fileformat2.html#ffschema</a> + <a href="fileformat2.html#serialtype">fileformat2.html#serialtype</a> + <a href="foreignkeys.html">foreignkeys.html</a> + <a href="foreignkeys.html#fk_actions">foreignkeys.html#fk_actions</a> + <a href="foreignkeys.html#fk_enable">foreignkeys.html#fk_enable</a> + <a href="fullsql.html">fullsql.html</a> + <a href="imposter.html">imposter.html</a> + <a href="lang.html">lang.html</a> + <a href="lang_altertable.html#altertabaddcol">lang_altertable.html#altertabaddcol</a> + <a href="lang_altertable.html#otheralter">lang_altertable.html#otheralter</a> + <a href="lang_createindex.html#collidx">lang_createindex.html#collidx</a> + <a href="lang_createvtab.html">lang_createvtab.html</a> + <a href="lang_droptable.html">lang_droptable.html</a> + <a href="lang_expr.html#in_op">lang_expr.html#in_op</a> + <a href="lang_insert.html">lang_insert.html</a> + <a href="pragma.html#pragma_legacy_alter_table">pragma.html#pragma_legacy_alter_table</a> + <a href="schematab.html">schematab.html</a> + <a href="stricttables.html">stricttables.html</a> + <a href="vtab.html">vtab.html</a> + <a href="vtab.html#xcreate">vtab.html#xcreate</a> + <a href="withoutrowid.html">withoutrowid.html</a> +<li>CREATE TABLE AS → <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> +<li>CREATE TRIGGER → <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfigenabletrigger">c3ref/c_dbconfig_defensive.html#sqlitedbconfigenabletrigger</a> + <a href="c3ref/changes.html">c3ref/changes.html</a> + <a href="capi3ref.html#sqlite3_changes">capi3ref.html#sqlite3_changes</a> + <a href="capi3ref.html#sqlitedbconfigenabletrigger">capi3ref.html#sqlitedbconfigenabletrigger</a> + <a href="changes.html#version_3_16_1">changes.html#version_3_16_1</a> + <a href="changes.html#version_3_25_0">changes.html#version_3_25_0</a> + <a href="changes.html#version_3_39_4">changes.html#version_3_39_4</a> + <a href="compile.html#omit_trigger">compile.html#omit_trigger</a> + <a href="fileformat2.html#ffschema">fileformat2.html#ffschema</a> + <a href="foreignkeys.html#fk_actions">foreignkeys.html#fk_actions</a> + <a href="fullsql.html">fullsql.html</a> + <a href="lang.html">lang.html</a> + <a href="lang_altertable.html#otheralter">lang_altertable.html#otheralter</a> + <a href="lang_conflict.html">lang_conflict.html</a> + <a href="lang_createtable.html">lang_createtable.html</a> + <a href="lang_delete.html">lang_delete.html</a> + <a href="lang_droptrigger.html">lang_droptrigger.html</a> + <a href="lang_insert.html">lang_insert.html</a> + <a href="lang_update.html">lang_update.html</a> + <a href="lang_with.html#mathint">lang_with.html#mathint</a> + <a href="opcode.html#subprog">opcode.html#subprog</a> + <a href="pragma.html#pragma_legacy_alter_table">pragma.html#pragma_legacy_alter_table</a> + <a href="releaselog/3_16_1.html">releaselog/3_16_1.html</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> + <a href="releaselog/3_25_0.html">releaselog/3_25_0.html</a> + <a href="releaselog/3_25_1.html">releaselog/3_25_1.html</a> + <a href="releaselog/3_25_2.html">releaselog/3_25_2.html</a> + <a href="releaselog/3_25_3.html">releaselog/3_25_3.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> + <a href="rescode.html#constraint_trigger">rescode.html#constraint_trigger</a> + <a href="schematab.html">schematab.html</a> + <a href="sqldiff.html">sqldiff.html</a> +<li>CREATE VIEW → <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfigenableview">c3ref/c_dbconfig_defensive.html#sqlitedbconfigenableview</a> + <a href="capi3ref.html#sqlitedbconfigenableview">capi3ref.html#sqlitedbconfigenableview</a> + <a href="changes.html#version_3_8_7_1">changes.html#version_3_8_7_1</a> + <a href="changes.html#version_3_9_0">changes.html#version_3_9_0</a> + <a href="compile.html#omit_view">compile.html#omit_view</a> + <a href="fileformat2.html#ffschema">fileformat2.html#ffschema</a> + <a href="fullsql.html">fullsql.html</a> + <a href="lang.html">lang.html</a> + <a href="lang_altertable.html#otheralter">lang_altertable.html#otheralter</a> + <a href="lang_dropview.html">lang_dropview.html</a> + <a href="releaselog/3_8_7_1.html">releaselog/3_8_7_1.html</a> + <a href="releaselog/3_9_0.html">releaselog/3_9_0.html</a> + <a href="releaselog/3_9_1.html">releaselog/3_9_1.html</a> + <a href="releaselog/3_9_2.html">releaselog/3_9_2.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> + <a href="schematab.html">schematab.html</a> + <a href="sqldiff.html">sqldiff.html</a> +<li>CREATE VIRTUAL TABLE → <a href="changes.html#version_3_7_11">changes.html#version_3_7_11</a> + <a href="cli.html#zipdb">cli.html#zipdb</a> + <a href="dbstat.html">dbstat.html</a> + <a href="fileformat2.html#ffschema">fileformat2.html#ffschema</a> + <a href="fts3.html#fts4">fts3.html#fts4</a> + <a href="lang.html">lang.html</a> + <a href="releaselog/3_7_11.html">releaselog/3_7_11.html</a> + <a href="schematab.html">schematab.html</a> + <a href="vtab.html">vtab.html</a> + <a href="vtab.html#customvtab">vtab.html#customvtab</a> + <a href="vtab.html#epoonlyvtab">vtab.html#epoonlyvtab</a> + <a href="vtab.html#epovtab">vtab.html#epovtab</a> + <a href="vtab.html#xcreate">vtab.html#xcreate</a> + <a href="vtab.html#xshadowname">vtab.html#xshadowname</a> +<li>create-index-stmt → <a href="lang_createindex.html">lang_createindex.html</a> + <a href="partialindex.html">partialindex.html</a> +<li>create-table-stmt → <a href="lang_createtable.html">lang_createtable.html</a> +<li>create-trigger-stmt → <a href="lang_createtrigger.html">lang_createtrigger.html</a> +<li>create-view-stmt → <a href="lang_createview.html">lang_createview.html</a> +<li>create-virtual-table-stmt → <a href="lang_createvtab.html">lang_createvtab.html</a> + <a href="vtab.html">vtab.html</a> +<li>CROSS JOIN → <a href="lang_select.html#crossjoin">lang_select.html#crossjoin</a> + <a href="queryplanner-ng.html#howtofix">queryplanner-ng.html#howtofix</a> +<li>csv → <a href="vtablist.html">vtablist.html</a> +<li>CSV virtual table → <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="changes.html#version_3_24_0">changes.html#version_3_24_0</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> + <a href="releaselog/3_24_0.html">releaselog/3_24_0.html</a> +<li>cte-table-name → <a href="lang_with.html">lang_with.html</a> + <a href="lang_with.html#recursivecte">lang_with.html#recursivecte</a> +<li>custom auxiliary functions → <a href="fts5.html#appendix_a">fts5.html#appendix_a</a> +<li>custom builds → <a href="c3ref/initialize.html">c3ref/initialize.html</a> + <a href="capi3ref.html#sqlite3_initialize">capi3ref.html#sqlite3_initialize</a> +<li>custom r-tree queries → <a href="changes.html#version_3_7_3">changes.html#version_3_7_3</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_7_3.html">releaselog/3_7_3.html</a> +<li>custom SQL functions → <a href="security.html#baddb">security.html#baddb</a> +<li>custom tokenizers → <a href="fts5.html#tokenizers">fts5.html#tokenizers</a> +<li>custom virtual tables → <a href="security.html#baddb">security.html#baddb</a> +<li>Dan Kennedy → <a href="sqlar.html#dbasobj">sqlar.html#dbasobj</a> +<li>data_store_directory pragma → <a href="c3ref/data_directory.html">c3ref/data_directory.html</a> + <a href="capi3ref.html#sqlite3_data_directory">capi3ref.html#sqlite3_data_directory</a> +<li>data_version pragma → <a href="c3ref/changes.html">c3ref/changes.html</a> + <a href="c3ref/total_changes.html">c3ref/total_changes.html</a> + <a href="capi3ref.html#sqlite3_changes">capi3ref.html#sqlite3_changes</a> + <a href="capi3ref.html#sqlite3_total_changes">capi3ref.html#sqlite3_total_changes</a> +<li>database connection → <a href="35to36.html">35to36.html</a> + <a href="appfunc.html">appfunc.html</a> + <a href="appfunc.html#sec">appfunc.html#sec</a> + <a href="backup.html">backup.html</a> + <a href="c3ref/auto_extension.html">c3ref/auto_extension.html</a> + <a href="c3ref/backup_finish.html#sqlite3backupinit">c3ref/backup_finish.html#sqlite3backupinit</a> + <a href="c3ref/backup_finish.html#sqlite3backuppagecount">c3ref/backup_finish.html#sqlite3backuppagecount</a> + <a href="c3ref/backup_finish.html#sqlite3backupstep">c3ref/backup_finish.html#sqlite3backupstep</a> + <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> + <a href="c3ref/blob_write.html">c3ref/blob_write.html</a> + <a href="c3ref/busy_handler.html">c3ref/busy_handler.html</a> + <a href="c3ref/busy_timeout.html">c3ref/busy_timeout.html</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfiglookaside">c3ref/c_config_covering_index_scan.html#sqliteconfiglookaside</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigmultithread">c3ref/c_config_covering_index_scan.html#sqliteconfigmultithread</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigserialized">c3ref/c_config_covering_index_scan.html#sqliteconfigserialized</a> + <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfiglookaside">c3ref/c_dbconfig_defensive.html#sqlitedbconfiglookaside</a> + <a href="c3ref/c_trace.html#sqlitetraceclose">c3ref/c_trace.html#sqlitetraceclose</a> + <a href="c3ref/c_txn_none.html">c3ref/c_txn_none.html</a> + <a href="c3ref/collation_needed.html">c3ref/collation_needed.html</a> + <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/commit_hook.html">c3ref/commit_hook.html</a> + <a href="c3ref/context_db_handle.html">c3ref/context_db_handle.html</a> + <a href="c3ref/create_collation.html">c3ref/create_collation.html</a> + <a href="c3ref/create_function.html">c3ref/create_function.html</a> + <a href="c3ref/create_module.html">c3ref/create_module.html</a> + <a href="c3ref/data_directory.html">c3ref/data_directory.html</a> + <a href="c3ref/db_cacheflush.html">c3ref/db_cacheflush.html</a> + <a href="c3ref/db_config.html">c3ref/db_config.html</a> + <a href="c3ref/db_handle.html">c3ref/db_handle.html</a> + <a href="c3ref/db_mutex.html">c3ref/db_mutex.html</a> + <a href="c3ref/db_status.html">c3ref/db_status.html</a> + <a href="c3ref/deserialize.html">c3ref/deserialize.html</a> + <a href="c3ref/enable_shared_cache.html">c3ref/enable_shared_cache.html</a> + <a href="c3ref/errcode.html">c3ref/errcode.html</a> + <a href="c3ref/exec.html">c3ref/exec.html</a> + <a href="c3ref/get_clientdata.html">c3ref/get_clientdata.html</a> + <a href="c3ref/interrupt.html">c3ref/interrupt.html</a> + <a href="c3ref/limit.html">c3ref/limit.html</a> + <a href="c3ref/module.html">c3ref/module.html</a> + <a href="c3ref/next_stmt.html">c3ref/next_stmt.html</a> + <a href="c3ref/open.html">c3ref/open.html</a> + <a href="c3ref/prepare.html">c3ref/prepare.html</a> + <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> + <a href="c3ref/progress_handler.html">c3ref/progress_handler.html</a> + <a href="c3ref/serialize.html">c3ref/serialize.html</a> + <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> + <a href="c3ref/snapshot.html">c3ref/snapshot.html</a> + <a href="c3ref/snapshot_get.html">c3ref/snapshot_get.html</a> + <a href="c3ref/snapshot_open.html">c3ref/snapshot_open.html</a> + <a href="c3ref/table_column_metadata.html">c3ref/table_column_metadata.html</a> + <a href="c3ref/temp_directory.html">c3ref/temp_directory.html</a> + <a href="c3ref/trace_v2.html">c3ref/trace_v2.html</a> + <a href="c3ref/update_hook.html">c3ref/update_hook.html</a> + <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> + <a href="c3ref/vtab_config.html">c3ref/vtab_config.html</a> + <a href="c3ref/wal_autocheckpoint.html">c3ref/wal_autocheckpoint.html</a> + <a href="c3ref/wal_checkpoint.html">c3ref/wal_checkpoint.html</a> + <a href="c3ref/wal_checkpoint_v2.html">c3ref/wal_checkpoint_v2.html</a> + <a href="capi3ref.html#SQLITE_TXN_NONE">capi3ref.html#SQLITE_TXN_NONE</a> + <a href="capi3ref.html#sqlite3_auto_extension">capi3ref.html#sqlite3_auto_extension</a> + <a href="capi3ref.html#sqlite3_blob_open">capi3ref.html#sqlite3_blob_open</a> + <a href="capi3ref.html#sqlite3_blob_write">capi3ref.html#sqlite3_blob_write</a> + <a href="capi3ref.html#sqlite3_busy_handler">capi3ref.html#sqlite3_busy_handler</a> + <a href="capi3ref.html#sqlite3_busy_timeout">capi3ref.html#sqlite3_busy_timeout</a> + <a href="capi3ref.html#sqlite3_collation_needed">capi3ref.html#sqlite3_collation_needed</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_commit_hook">capi3ref.html#sqlite3_commit_hook</a> + <a href="capi3ref.html#sqlite3_context_db_handle">capi3ref.html#sqlite3_context_db_handle</a> + <a href="capi3ref.html#sqlite3_create_collation">capi3ref.html#sqlite3_create_collation</a> + <a href="capi3ref.html#sqlite3_create_function">capi3ref.html#sqlite3_create_function</a> + <a href="capi3ref.html#sqlite3_create_module">capi3ref.html#sqlite3_create_module</a> + <a href="capi3ref.html#sqlite3_data_directory">capi3ref.html#sqlite3_data_directory</a> + <a href="capi3ref.html#sqlite3_db_cacheflush">capi3ref.html#sqlite3_db_cacheflush</a> + <a href="capi3ref.html#sqlite3_db_config">capi3ref.html#sqlite3_db_config</a> + <a href="capi3ref.html#sqlite3_db_handle">capi3ref.html#sqlite3_db_handle</a> + <a href="capi3ref.html#sqlite3_db_mutex">capi3ref.html#sqlite3_db_mutex</a> + <a href="capi3ref.html#sqlite3_db_status">capi3ref.html#sqlite3_db_status</a> + <a href="capi3ref.html#sqlite3_deserialize">capi3ref.html#sqlite3_deserialize</a> + <a href="capi3ref.html#sqlite3_enable_shared_cache">capi3ref.html#sqlite3_enable_shared_cache</a> + <a href="capi3ref.html#sqlite3_errcode">capi3ref.html#sqlite3_errcode</a> + <a href="capi3ref.html#sqlite3_exec">capi3ref.html#sqlite3_exec</a> + <a href="capi3ref.html#sqlite3_get_clientdata">capi3ref.html#sqlite3_get_clientdata</a> + <a href="capi3ref.html#sqlite3_interrupt">capi3ref.html#sqlite3_interrupt</a> + <a href="capi3ref.html#sqlite3_limit">capi3ref.html#sqlite3_limit</a> + <a href="capi3ref.html#sqlite3_module">capi3ref.html#sqlite3_module</a> + <a href="capi3ref.html#sqlite3_next_stmt">capi3ref.html#sqlite3_next_stmt</a> + <a href="capi3ref.html#sqlite3_open">capi3ref.html#sqlite3_open</a> + <a href="capi3ref.html#sqlite3_prepare">capi3ref.html#sqlite3_prepare</a> + <a href="capi3ref.html#sqlite3_preupdate_blobwrite">capi3ref.html#sqlite3_preupdate_blobwrite</a> + <a href="capi3ref.html#sqlite3_progress_handler">capi3ref.html#sqlite3_progress_handler</a> + <a href="capi3ref.html#sqlite3_serialize">capi3ref.html#sqlite3_serialize</a> + <a href="capi3ref.html#sqlite3_set_authorizer">capi3ref.html#sqlite3_set_authorizer</a> + <a href="capi3ref.html#sqlite3_snapshot">capi3ref.html#sqlite3_snapshot</a> + <a href="capi3ref.html#sqlite3_snapshot_get">capi3ref.html#sqlite3_snapshot_get</a> + <a href="capi3ref.html#sqlite3_snapshot_open">capi3ref.html#sqlite3_snapshot_open</a> + <a href="capi3ref.html#sqlite3_table_column_metadata">capi3ref.html#sqlite3_table_column_metadata</a> + <a href="capi3ref.html#sqlite3_temp_directory">capi3ref.html#sqlite3_temp_directory</a> + <a href="capi3ref.html#sqlite3_trace_v2">capi3ref.html#sqlite3_trace_v2</a> + <a href="capi3ref.html#sqlite3_update_hook">capi3ref.html#sqlite3_update_hook</a> + <a href="capi3ref.html#sqlite3_value_blob">capi3ref.html#sqlite3_value_blob</a> + <a href="capi3ref.html#sqlite3_vtab_config">capi3ref.html#sqlite3_vtab_config</a> + <a href="capi3ref.html#sqlite3_wal_autocheckpoint">capi3ref.html#sqlite3_wal_autocheckpoint</a> + <a href="capi3ref.html#sqlite3_wal_checkpoint">capi3ref.html#sqlite3_wal_checkpoint</a> + <a href="capi3ref.html#sqlite3_wal_checkpoint_v2">capi3ref.html#sqlite3_wal_checkpoint_v2</a> + <a href="capi3ref.html#sqlite3backupinit">capi3ref.html#sqlite3backupinit</a> + <a href="capi3ref.html#sqlite3backuppagecount">capi3ref.html#sqlite3backuppagecount</a> + <a href="capi3ref.html#sqlite3backupstep">capi3ref.html#sqlite3backupstep</a> + <a href="capi3ref.html#sqliteconfiglookaside">capi3ref.html#sqliteconfiglookaside</a> + <a href="capi3ref.html#sqliteconfigmultithread">capi3ref.html#sqliteconfigmultithread</a> + <a href="capi3ref.html#sqliteconfigserialized">capi3ref.html#sqliteconfigserialized</a> + <a href="capi3ref.html#sqlitedbconfiglookaside">capi3ref.html#sqlitedbconfiglookaside</a> + <a href="capi3ref.html#sqlitetraceclose">capi3ref.html#sqlitetraceclose</a> + <a href="changes.html#version_3_5_8">changes.html#version_3_5_8</a> + <a href="changes.html#version_3_6_1">changes.html#version_3_6_1</a> + <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="cintro.html">cintro.html</a> + <a href="compile.html#default_lookaside">compile.html#default_lookaside</a> + <a href="compile.html#enable_fts3_tokenizer">compile.html#enable_fts3_tokenizer</a> + <a href="compile.html#threadsafe">compile.html#threadsafe</a> + <a href="custombuild.html">custombuild.html</a> + <a href="fileformat2.html#ffschema">fileformat2.html#ffschema</a> + <a href="foreignkeys.html#fk_enable">foreignkeys.html#fk_enable</a> + <a href="fullsql.html">fullsql.html</a> + <a href="imposter.html">imposter.html</a> + <a href="lang_analyze.html#autoanalyze">lang_analyze.html#autoanalyze</a> + <a href="lang_attach.html">lang_attach.html</a> + <a href="lang_createview.html">lang_createview.html</a> + <a href="lang_expr.html#varparam">lang_expr.html#varparam</a> + <a href="lang_vacuum.html#vacuuminto">lang_vacuum.html#vacuuminto</a> + <a href="malloc.html">malloc.html</a> + <a href="malloc.html#lookaside">malloc.html#lookaside</a> + <a href="malloc.html#memstatus">malloc.html#memstatus</a> + <a href="malloc.html#nofrag">malloc.html#nofrag</a> + <a href="news.html">news.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_journal_mode">pragma.html#pragma_journal_mode</a> + <a href="pragma.html#pragma_legacy_alter_table">pragma.html#pragma_legacy_alter_table</a> + <a href="pragma.html#pragma_mmap_size">pragma.html#pragma_mmap_size</a> + <a href="pragma.html#pragma_optimize">pragma.html#pragma_optimize</a> + <a href="releaselog/3_5_8.html">releaselog/3_5_8.html</a> + <a href="releaselog/3_6_1.html">releaselog/3_6_1.html</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> + <a href="rescode.html#abort">rescode.html#abort</a> + <a href="rescode.html#busy">rescode.html#busy</a> + <a href="rescode.html#busy_snapshot">rescode.html#busy_snapshot</a> + <a href="rescode.html#locked">rescode.html#locked</a> + <a href="rescode.html#pve">rescode.html#pve</a> + <a href="schematab.html">schematab.html</a> + <a href="security.html#baddb">security.html#baddb</a> + <a href="stmt.html">stmt.html</a> + <a href="tempfiles.html#superjrnl">tempfiles.html#superjrnl</a> + <a href="tempfiles.html#tempdb">tempfiles.html#tempdb</a> + <a href="threadsafe.html">threadsafe.html</a> + <a href="unlock_notify.html">unlock_notify.html</a> + <a href="useovernet.html">useovernet.html</a> + <a href="vtab.html">vtab.html</a> + <a href="vtab.html#epoonlyvtab">vtab.html#epoonlyvtab</a> + <a href="vtab.html#xcreate">vtab.html#xcreate</a> + <a href="vtablist.html">vtablist.html</a> + <a href="wal.html#walfile">wal.html#walfile</a> +<li>database connections → <a href="c3ref/backup_finish.html#sqlite3backupinit">c3ref/backup_finish.html#sqlite3backupinit</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigmultithread">c3ref/c_config_covering_index_scan.html#sqliteconfigmultithread</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigserialized">c3ref/c_config_covering_index_scan.html#sqliteconfigserialized</a> + <a href="c3ref/initialize.html">c3ref/initialize.html</a> + <a href="c3ref/snapshot.html">c3ref/snapshot.html</a> + <a href="capi3ref.html#sqlite3_initialize">capi3ref.html#sqlite3_initialize</a> + <a href="capi3ref.html#sqlite3_snapshot">capi3ref.html#sqlite3_snapshot</a> + <a href="capi3ref.html#sqlite3backupinit">capi3ref.html#sqlite3backupinit</a> + <a href="capi3ref.html#sqliteconfigmultithread">capi3ref.html#sqliteconfigmultithread</a> + <a href="capi3ref.html#sqliteconfigserialized">capi3ref.html#sqliteconfigserialized</a> + <a href="cintro.html">cintro.html</a> + <a href="cli.html#dotconn">cli.html#dotconn</a> + <a href="compile.html#default_automatic_index">compile.html#default_automatic_index</a> + <a href="compile.html#threadsafe">compile.html#threadsafe</a> + <a href="compile.html#yystackdepth">compile.html#yystackdepth</a> + <a href="custombuild.html">custombuild.html</a> + <a href="dbstat.html">dbstat.html</a> + <a href="isolation.html">isolation.html</a> + <a href="malloc.html">malloc.html</a> + <a href="malloc.html#lookaside">malloc.html#lookaside</a> + <a href="malloc.html#nofrag">malloc.html#nofrag</a> + <a href="rescode.html#protocol">rescode.html#protocol</a> + <a href="uri.html#urinolock">uri.html#urinolock</a> + <a href="vfs.html">vfs.html</a> +<li>database corruption caused by inconsistent use of 83 filenames → <a href="howtocorrupt.html#delhotjrnl">howtocorrupt.html#delhotjrnl</a> + <a href="shortnames.html">shortnames.html</a> +<li>database filename aliasing → <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="errlog.html">errlog.html</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> +<li>database header → <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="pragma.html#pragma_application_id">pragma.html#pragma_application_id</a> + <a href="pragma.html#pragma_schema_version">pragma.html#pragma_schema_version</a> + <a href="pragma.html#pragma_user_version">pragma.html#pragma_user_version</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> + <a href="wal.html#bkwrds">wal.html#bkwrds</a> +<li>datatype → <a href="faq.html#q3">faq.html#q3</a> + <a href="faq.html#q4">faq.html#q4</a> + <a href="flextypegood.html">flextypegood.html</a> + <a href="lang_corefunc.html#typeof">lang_corefunc.html#typeof</a> + <a href="lang_expr.html#collateop">lang_expr.html#collateop</a> + <a href="quirks.html">quirks.html</a> + <a href="stricttables.html">stricttables.html</a> +<li>Date And Time Functions → <a href="changes.html#version_3_8_1">changes.html#version_3_8_1</a> + <a href="datatype3.html#datetime">datatype3.html#datetime</a> + <a href="releaselog/3_8_1.html">releaselog/3_8_1.html</a> +<li>date and time functions → <a href="changes.html#version_3_10_0">changes.html#version_3_10_0</a> + <a href="changes.html#version_3_16_0">changes.html#version_3_16_0</a> + <a href="changes.html#version_3_18_0">changes.html#version_3_18_0</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="changes.html#version_3_38_0">changes.html#version_3_38_0</a> + <a href="changes.html#version_3_38_1">changes.html#version_3_38_1</a> + <a href="changes.html#version_3_42_0">changes.html#version_3_42_0</a> + <a href="changes.html#version_3_43_0">changes.html#version_3_43_0</a> + <a href="compile.html#gmtime_r">compile.html#gmtime_r</a> + <a href="compile.html#localtime_r">compile.html#localtime_r</a> + <a href="compile.html#localtime_s">compile.html#localtime_s</a> + <a href="datatype3.html#datetime">datatype3.html#datetime</a> + <a href="deterministic.html#dtexception">deterministic.html#dtexception</a> + <a href="quirks.html">quirks.html</a> + <a href="releaselog/3_10_0.html">releaselog/3_10_0.html</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> + <a href="releaselog/3_16_0.html">releaselog/3_16_0.html</a> + <a href="releaselog/3_16_1.html">releaselog/3_16_1.html</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> + <a href="releaselog/3_18_0.html">releaselog/3_18_0.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> + <a href="releaselog/3_38_0.html">releaselog/3_38_0.html</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> + <a href="releaselog/3_42_0.html">releaselog/3_42_0.html</a> + <a href="releaselog/3_43_0.html">releaselog/3_43_0.html</a> + <a href="releaselog/3_43_1.html">releaselog/3_43_1.html</a> + <a href="releaselog/3_43_2.html">releaselog/3_43_2.html</a> +<li>date/time special case → <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> +<li>datefunc → <a href="lang.html">lang.html</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="lang_expr.html#*funcinexpr">lang_expr.html#*funcinexpr</a> +<li>datetime → <a href="lang_datefunc.html#subsec">lang_datefunc.html#subsec</a> +<li>datetime SQL function → <a href="optoverview.html#leftjoinreduction">optoverview.html#leftjoinreduction</a> +<li>dbhash.exe → <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> +<li>dbsqlfuzz → <a href="testing.html#fuzzcheck">testing.html#fuzzcheck</a> + <a href="testing.html#tension">testing.html#tension</a> +<li>dbstat → <a href="amalgamation.html">amalgamation.html</a> + <a href="vtablist.html">vtablist.html</a> +<li>DBSTAT aggregated mode → <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> +<li>DBSTAT virtual table → <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> +<li>dbstat virtual table → <a href="changes.html#version_3_8_10">changes.html#version_3_8_10</a> + <a href="changes.html#version_3_8_10_1">changes.html#version_3_8_10_1</a> + <a href="changes.html#version_3_9_0">changes.html#version_3_9_0</a> + <a href="compile.html#enable_dbstat_vtab">compile.html#enable_dbstat_vtab</a> + <a href="howtocompile.html#cli">howtocompile.html#cli</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_8_10.html">releaselog/3_8_10.html</a> + <a href="releaselog/3_8_10_1.html">releaselog/3_8_10_1.html</a> + <a href="releaselog/3_8_10_2.html">releaselog/3_8_10_2.html</a> + <a href="releaselog/3_9_0.html">releaselog/3_9_0.html</a> + <a href="releaselog/3_9_1.html">releaselog/3_9_1.html</a> + <a href="releaselog/3_9_2.html">releaselog/3_9_2.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> + <a href="sqlanalyze.html">sqlanalyze.html</a> + <a href="vtab.html">vtab.html</a> + <a href="vtab.html#epovtab">vtab.html#epovtab</a> +<li>debugging memory allocator → <a href="compile.html#memdebug">compile.html#memdebug</a> + <a href="compile.html#zero_malloc">compile.html#zero_malloc</a> +<li>decimal extension → <a href="changes.html#version_3_33_0">changes.html#version_3_33_0</a> + <a href="changes.html#version_3_43_0">changes.html#version_3_43_0</a> + <a href="cli.html#miscfeatures">cli.html#miscfeatures</a> + <a href="lang_aggfunc.html#sumunc">lang_aggfunc.html#sumunc</a> + <a href="printf.html">printf.html</a> + <a href="releaselog/3_33_0.html">releaselog/3_33_0.html</a> + <a href="releaselog/3_43_0.html">releaselog/3_43_0.html</a> + <a href="releaselog/3_43_1.html">releaselog/3_43_1.html</a> + <a href="releaselog/3_43_2.html">releaselog/3_43_2.html</a> +<li>DEFAULT clauses → <a href="c3ref/c_deterministic.html#sqlitedirectonly">c3ref/c_deterministic.html#sqlitedirectonly</a> + <a href="c3ref/c_deterministic.html#sqliteinnocuous">c3ref/c_deterministic.html#sqliteinnocuous</a> + <a href="capi3ref.html#sqlitedirectonly">capi3ref.html#sqlitedirectonly</a> + <a href="capi3ref.html#sqliteinnocuous">capi3ref.html#sqliteinnocuous</a> + <a href="pragma.html#pragma_trusted_schema">pragma.html#pragma_trusted_schema</a> + <a href="stricttables.html">stricttables.html</a> +<li>default column value → <a href="lang_insert.html">lang_insert.html</a> +<li>default memory allocator → <a href="compile.html#zero_malloc">compile.html#zero_malloc</a> + <a href="malloc.html#memsysx">malloc.html#memsysx</a> +<li>default value → <a href="fileformat2.html#serialtype">fileformat2.html#serialtype</a> + <a href="gencol.html">gencol.html</a> + <a href="lang_insert.html">lang_insert.html</a> +<li>default_cache_size pragma → <a href="fileformat2.html#schemaformat">fileformat2.html#schemaformat</a> +<li>defense against dark arts → <a href="cves.html">cves.html</a> + <a href="news.html">news.html</a> +<li>defensive code → <a href="testing.html#tension">testing.html#tension</a> +<li>defer_foreign_keys pragma → <a href="changes.html#version_3_8_0">changes.html#version_3_8_0</a> + <a href="foreignkeys.html#fk_enable">foreignkeys.html#fk_enable</a> + <a href="releaselog/3_8_0.html">releaselog/3_8_0.html</a> + <a href="releaselog/3_8_0_1.html">releaselog/3_8_0_1.html</a> + <a href="releaselog/3_8_0_2.html">releaselog/3_8_0_2.html</a> +<li>degrees → <a href="lang_mathfunc.html">lang_mathfunc.html</a> +<li>DELETE → <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> + <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> + <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> + <a href="c3ref/total_changes.html">c3ref/total_changes.html</a> + <a href="capi3ref.html#sqlite3_blob_open">capi3ref.html#sqlite3_blob_open</a> + <a href="capi3ref.html#sqlite3_preupdate_blobwrite">capi3ref.html#sqlite3_preupdate_blobwrite</a> + <a href="capi3ref.html#sqlite3_set_authorizer">capi3ref.html#sqlite3_set_authorizer</a> + <a href="capi3ref.html#sqlite3_total_changes">capi3ref.html#sqlite3_total_changes</a> + <a href="changes.html#version_3_12_2">changes.html#version_3_12_2</a> + <a href="changes.html#version_3_13_0">changes.html#version_3_13_0</a> + <a href="changes.html#version_3_14_2">changes.html#version_3_14_2</a> + <a href="changes.html#version_3_35_0">changes.html#version_3_35_0</a> + <a href="changes.html#version_3_6_4">changes.html#version_3_6_4</a> + <a href="cli.html#selftest">cli.html#selftest</a> + <a href="compile.html#enable_update_delete_limit">compile.html#enable_update_delete_limit</a> + <a href="compile.html#omit_truncate_optimization">compile.html#omit_truncate_optimization</a> + <a href="foreignkeys.html#fk_actions">foreignkeys.html#fk_actions</a> + <a href="fts3.html#fts4">fts3.html#fts4</a> + <a href="fts5.html">fts5.html</a> + <a href="fullsql.html">fullsql.html</a> + <a href="isolation.html">isolation.html</a> + <a href="lang.html">lang.html</a> + <a href="lang_analyze.html#req">lang_analyze.html#req</a> + <a href="lang_createtable.html#notnullconst">lang_createtable.html#notnullconst</a> + <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_createview.html">lang_createview.html</a> + <a href="lang_droptable.html">lang_droptable.html</a> + <a href="lang_indexedby.html">lang_indexedby.html</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_with.html">lang_with.html</a> + <a href="pragma.html#pragma_count_changes">pragma.html#pragma_count_changes</a> + <a href="pragma.html#pragma_writable_schema">pragma.html#pragma_writable_schema</a> + <a href="rbu.html">rbu.html</a> + <a href="rbu.html#rbu_updates">rbu.html#rbu_updates</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> + <a href="releaselog/3_13_0.html">releaselog/3_13_0.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="releaselog/3_35_0.html">releaselog/3_35_0.html</a> + <a href="releaselog/3_35_1.html">releaselog/3_35_1.html</a> + <a href="releaselog/3_35_2.html">releaselog/3_35_2.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> + <a href="releaselog/3_6_4.html">releaselog/3_6_4.html</a> + <a href="rtree.html">rtree.html</a> + <a href="vtab.html">vtab.html</a> +<li>delete-stmt → <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_delete.html">lang_delete.html</a> +<li>delete-stmt-limited → <a href="lang_delete.html">lang_delete.html</a> +<li>deleting a hot journal → <a href="shortnames.html#db83corrupt">shortnames.html#db83corrupt</a> +<li>deprecated → <a href="c3ref/aggregate_count.html">c3ref/aggregate_count.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_aggregate_count">capi3ref.html#sqlite3_aggregate_count</a> +<li>DESC → <a href="fullsql.html">fullsql.html</a> +<li>descending indexes → <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="fileformat2.html#schemaformat">fileformat2.html#schemaformat</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> +<li>descending indices → <a href="changes.html#version_3_7_10">changes.html#version_3_7_10</a> + <a href="compile.html#default_file_format">compile.html#default_file_format</a> + <a href="releaselog/3_7_10.html">releaselog/3_7_10.html</a> +<li>DETACH → <a href="c3ref/db_filename.html">c3ref/db_filename.html</a> + <a href="c3ref/db_name.html">c3ref/db_name.html</a> + <a href="c3ref/stmt_readonly.html">c3ref/stmt_readonly.html</a> + <a href="capi3ref.html#sqlite3_db_filename">capi3ref.html#sqlite3_db_filename</a> + <a href="capi3ref.html#sqlite3_db_name">capi3ref.html#sqlite3_db_name</a> + <a href="capi3ref.html#sqlite3_stmt_readonly">capi3ref.html#sqlite3_stmt_readonly</a> + <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="compile.html#omit_attach">compile.html#omit_attach</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> + <a href="tempfiles.html#tempdb">tempfiles.html#tempdb</a> +<li>DETACH DATABASE → <a href="lang.html">lang.html</a> + <a href="lang_attach.html">lang_attach.html</a> +<li>detach-stmt → <a href="lang_detach.html">lang_detach.html</a> +<li>deterministic functions → <a href="expridx.html">expridx.html</a> + <a href="gencol.html">gencol.html</a> +<li>deterministic SQL functions → <a href="changes.html#version_3_15_0">changes.html#version_3_15_0</a> + <a href="releaselog/3_15_0.html">releaselog/3_15_0.html</a> + <a href="releaselog/3_15_1.html">releaselog/3_15_1.html</a> + <a href="releaselog/3_15_2.html">releaselog/3_15_2.html</a> +<li>DISTINCT → <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="lang_select.html#simpleselect">lang_select.html#simpleselect</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> +<li>doclist → <a href="keyword_index.html">keyword_index.html</a> + <a href="sitemap.html">sitemap.html</a> +<li>dot-commands → <a href="changes.html#version_3_10_0">changes.html#version_3_10_0</a> + <a href="changes.html#version_3_11_0">changes.html#version_3_11_0</a> + <a href="changes.html#version_3_15_0">changes.html#version_3_15_0</a> + <a href="changes.html#version_3_37_0">changes.html#version_3_37_0</a> + <a href="cli.html#dotconn">cli.html#dotconn</a> + <a href="cli.html#dotread">cli.html#dotread</a> + <a href="releaselog/3_10_0.html">releaselog/3_10_0.html</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> + <a href="releaselog/3_11_0.html">releaselog/3_11_0.html</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> + <a href="releaselog/3_15_0.html">releaselog/3_15_0.html</a> + <a href="releaselog/3_15_1.html">releaselog/3_15_1.html</a> + <a href="releaselog/3_15_2.html">releaselog/3_15_2.html</a> + <a href="releaselog/3_37_0.html">releaselog/3_37_0.html</a> + <a href="releaselog/3_37_1.html">releaselog/3_37_1.html</a> + <a href="releaselog/3_37_2.html">releaselog/3_37_2.html</a> +<li>double-quoted string literal → <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfigdqsddl">c3ref/c_dbconfig_defensive.html#sqlitedbconfigdqsddl</a> + <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfigdqsdml">c3ref/c_dbconfig_defensive.html#sqlitedbconfigdqsdml</a> + <a href="capi3ref.html#sqlitedbconfigdqsddl">capi3ref.html#sqlitedbconfigdqsddl</a> + <a href="capi3ref.html#sqlitedbconfigdqsdml">capi3ref.html#sqlitedbconfigdqsdml</a> + <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="changes.html#version_3_29_0">changes.html#version_3_29_0</a> + <a href="compile.html#dqs">compile.html#dqs</a> + <a href="compile.html#rcmd">compile.html#rcmd</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> + <a href="releaselog/3_29_0.html">releaselog/3_29_0.html</a> +<li>double-quoted string misfeature → <a href="changes.html#version_3_41_0">changes.html#version_3_41_0</a> + <a href="releaselog/3_41_0.html">releaselog/3_41_0.html</a> + <a href="releaselog/3_41_1.html">releaselog/3_41_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> +<li>download page → <a href="getthecode.html">getthecode.html</a> + <a href="howtocompile.html#amal">howtocompile.html#amal</a> + <a href="howtocompile.html#cli">howtocompile.html#cli</a> + <a href="howtocompile.html#tcl">howtocompile.html#tcl</a> +<li>drop column → <a href="lang_altertable.html#otheralter">lang_altertable.html#otheralter</a> +<li>DROP INDEX → <a href="lang.html">lang.html</a> + <a href="lang_createindex.html">lang_createindex.html</a> + <a href="lang_naming.html">lang_naming.html</a> + <a href="partialindex.html">partialindex.html</a> +<li>DROP TABLE → <a href="changes.html#version_3_7_9">changes.html#version_3_7_9</a> + <a href="foreignkeys.html">foreignkeys.html</a> + <a href="foreignkeys.html#fk_actions">foreignkeys.html#fk_actions</a> + <a href="fts3.html#fts4">fts3.html#fts4</a> + <a href="lang.html">lang.html</a> + <a href="lang_altertable.html#otheralter">lang_altertable.html#otheralter</a> + <a href="lang_analyze.html#req">lang_analyze.html#req</a> + <a href="lang_createtable.html">lang_createtable.html</a> + <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_createvtab.html">lang_createvtab.html</a> + <a href="lang_naming.html">lang_naming.html</a> + <a href="releaselog/3_7_9.html">releaselog/3_7_9.html</a> + <a href="rescode.html#locked">rescode.html#locked</a> + <a href="rtree.html">rtree.html</a> + <a href="unionvtab.html">unionvtab.html</a> + <a href="vtab.html">vtab.html</a> + <a href="vtab.html#sqlite3_module.xDestroy">vtab.html#sqlite3_module.xDestroy</a> +<li>DROP TRIGGER → <a href="compile.html#omit_trigger">compile.html#omit_trigger</a> + <a href="lang.html">lang.html</a> + <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_naming.html">lang_naming.html</a> +<li>DROP VIEW → <a href="compile.html#omit_view">compile.html#omit_view</a> + <a href="lang.html">lang.html</a> + <a href="lang_altertable.html#otheralter">lang_altertable.html#otheralter</a> + <a href="lang_createview.html">lang_createview.html</a> + <a href="lang_naming.html">lang_naming.html</a> +<li>drop-index-stmt → <a href="lang_dropindex.html">lang_dropindex.html</a> +<li>drop-table-stmt → <a href="lang_droptable.html">lang_droptable.html</a> +<li>drop-trigger-stmt → <a href="lang_droptrigger.html">lang_droptrigger.html</a> +<li>drop-view-stmt → <a href="lang_dropview.html">lang_dropview.html</a> +<li>dynamic typing → <a href="faq.html#q2">faq.html#q2</a> + <a href="faq.html#q3">faq.html#q3</a> + <a href="lang_createtable.html#tablecoldef">lang_createtable.html#tablecoldef</a> +<li>edit SQL function → <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> +<li>editdist3 → <a href="spellfix1.html#configeditdist">spellfix1.html#configeditdist</a> +<li>encoding → <a href="fts3.html#limitations">fts3.html#limitations</a> + <a href="lang_expr.html#castexpr">lang_expr.html#castexpr</a> +<li>enhanced query syntax → <a href="fts3.html#compiling_and_enabling_fts3_and_fts4">fts3.html#compiling_and_enabling_fts3_and_fts4</a> +<li>eponymous virtual table → <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="dbstat.html">dbstat.html</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="vtab.html#tabfunc2">vtab.html#tabfunc2</a> + <a href="vtab.html#xconnect">vtab.html#xconnect</a> + <a href="vtab.html#xcreate">vtab.html#xcreate</a> +<li>eponymous virtual tables → <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="changes.html#version_3_9_0">changes.html#version_3_9_0</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="releaselog/3_9_0.html">releaselog/3_9_0.html</a> + <a href="releaselog/3_9_1.html">releaselog/3_9_1.html</a> + <a href="releaselog/3_9_2.html">releaselog/3_9_2.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> + <a href="vtab.html#xshadowname">vtab.html#xshadowname</a> +<li>eponymous-only virtual table → <a href="dbpage.html">dbpage.html</a> + <a href="memstat.html">memstat.html</a> + <a href="stmt.html">stmt.html</a> + <a href="vtab.html#xcreate">vtab.html#xcreate</a> +<li>eponymous-only virtual tables → <a href="bytecodevtab.html">bytecodevtab.html</a> +<li>eqp-or-opt → <a href="changes.html#version_3_24_0">changes.html#version_3_24_0</a> + <a href="releaselog/3_24_0.html">releaselog/3_24_0.html</a> +<li>error code → <a href="35to36.html">35to36.html</a> + <a href="backup.html">backup.html</a> + <a href="c3ref/auto_extension.html">c3ref/auto_extension.html</a> + <a href="c3ref/backup_finish.html#sqlite3backupfinish">c3ref/backup_finish.html#sqlite3backupfinish</a> + <a href="c3ref/backup_finish.html#sqlite3backupstep">c3ref/backup_finish.html#sqlite3backupstep</a> + <a href="c3ref/bind_blob.html#byteorderdeterminationrules">c3ref/bind_blob.html#byteorderdeterminationrules</a> + <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> + <a href="c3ref/blob_read.html">c3ref/blob_read.html</a> + <a href="c3ref/blob_write.html">c3ref/blob_write.html</a> + <a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> + <a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> + <a href="c3ref/config.html">c3ref/config.html</a> + <a href="c3ref/db_cacheflush.html">c3ref/db_cacheflush.html</a> + <a href="c3ref/db_status.html">c3ref/db_status.html</a> + <a href="c3ref/enable_shared_cache.html">c3ref/enable_shared_cache.html</a> + <a href="c3ref/finalize.html">c3ref/finalize.html</a> + <a href="c3ref/initialize.html">c3ref/initialize.html</a> + <a href="c3ref/open.html">c3ref/open.html</a> + <a href="c3ref/prepare.html">c3ref/prepare.html</a> + <a href="c3ref/reset.html">c3ref/reset.html</a> + <a href="c3ref/snapshot_open.html">c3ref/snapshot_open.html</a> + <a href="c3ref/status.html">c3ref/status.html</a> + <a href="c3ref/table_column_metadata.html">c3ref/table_column_metadata.html</a> + <a href="capi3ref.html#SQLITE_CONFIG_COVERING_INDEX_SCAN">capi3ref.html#SQLITE_CONFIG_COVERING_INDEX_SCAN</a> + <a href="capi3ref.html#SQLITE_DBCONFIG_DEFENSIVE">capi3ref.html#SQLITE_DBCONFIG_DEFENSIVE</a> + <a href="capi3ref.html#byteorderdeterminationrules">capi3ref.html#byteorderdeterminationrules</a> + <a href="capi3ref.html#sqlite3_auto_extension">capi3ref.html#sqlite3_auto_extension</a> + <a href="capi3ref.html#sqlite3_blob_open">capi3ref.html#sqlite3_blob_open</a> + <a href="capi3ref.html#sqlite3_blob_read">capi3ref.html#sqlite3_blob_read</a> + <a href="capi3ref.html#sqlite3_blob_write">capi3ref.html#sqlite3_blob_write</a> + <a href="capi3ref.html#sqlite3_config">capi3ref.html#sqlite3_config</a> + <a href="capi3ref.html#sqlite3_db_cacheflush">capi3ref.html#sqlite3_db_cacheflush</a> + <a href="capi3ref.html#sqlite3_db_status">capi3ref.html#sqlite3_db_status</a> + <a href="capi3ref.html#sqlite3_enable_shared_cache">capi3ref.html#sqlite3_enable_shared_cache</a> + <a href="capi3ref.html#sqlite3_finalize">capi3ref.html#sqlite3_finalize</a> + <a href="capi3ref.html#sqlite3_initialize">capi3ref.html#sqlite3_initialize</a> + <a href="capi3ref.html#sqlite3_open">capi3ref.html#sqlite3_open</a> + <a href="capi3ref.html#sqlite3_prepare">capi3ref.html#sqlite3_prepare</a> + <a href="capi3ref.html#sqlite3_reset">capi3ref.html#sqlite3_reset</a> + <a href="capi3ref.html#sqlite3_snapshot_open">capi3ref.html#sqlite3_snapshot_open</a> + <a href="capi3ref.html#sqlite3_status">capi3ref.html#sqlite3_status</a> + <a href="capi3ref.html#sqlite3_table_column_metadata">capi3ref.html#sqlite3_table_column_metadata</a> + <a href="capi3ref.html#sqlite3backupfinish">capi3ref.html#sqlite3backupfinish</a> + <a href="capi3ref.html#sqlite3backupstep">capi3ref.html#sqlite3backupstep</a> + <a href="vtab.html#xcolumn">vtab.html#xcolumn</a> + <a href="vtab.html#xfilter">vtab.html#xfilter</a> + <a href="vtab.html#xnext">vtab.html#xnext</a> + <a href="vtab.html#xrename">vtab.html#xrename</a> + <a href="vtab.html#xrowid">vtab.html#xrowid</a> + <a href="vtab.html#xupdate">vtab.html#xupdate</a> +<li>error codes → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/prepare.html">c3ref/prepare.html</a> + <a href="c3ref/step.html">c3ref/step.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_prepare">capi3ref.html#sqlite3_prepare</a> + <a href="capi3ref.html#sqlite3_step">capi3ref.html#sqlite3_step</a> +<li>error log → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfiglog">c3ref/c_config_covering_index_scan.html#sqliteconfiglog</a> + <a href="c3ref/log.html">c3ref/log.html</a> + <a href="capi3ref.html#sqlite3_log">capi3ref.html#sqlite3_log</a> + <a href="capi3ref.html#sqliteconfiglog">capi3ref.html#sqliteconfiglog</a> + <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="cintro.html">cintro.html</a> + <a href="howtocorrupt.html#alias">howtocorrupt.html#alias</a> + <a href="howtocorrupt.html#unlink">howtocorrupt.html#unlink</a> + <a href="optoverview.html#autoindex">optoverview.html#autoindex</a> + <a href="quirks.html#dblquote">quirks.html#dblquote</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> +<li>ESCAPE → <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="changes.html#version_3_32_0">changes.html#version_3_32_0</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> + <a href="releaselog/3_32_0.html">releaselog/3_32_0.html</a> + <a href="releaselog/3_32_1.html">releaselog/3_32_1.html</a> + <a href="releaselog/3_32_2.html">releaselog/3_32_2.html</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> +<li>eval method → <a href="quickstart.html">quickstart.html</a> +<li>EXCLUDE clause → <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> +<li>EXCLUSIVE lock → <a href="pragma.html#pragma_cache_spill">pragma.html#pragma_cache_spill</a> +<li>exclusive locking mode → <a href="pragma.html#pragma_journal_size_limit">pragma.html#pragma_journal_size_limit</a> + <a href="walformat.html#shm">walformat.html#shm</a> +<li>exp → <a href="lang_mathfunc.html">lang_mathfunc.html</a> +<li>experimental → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="session.html#sqlite3_rebaser">session.html#sqlite3_rebaser</a> + <a href="session.html#sqlite3rebaser_configure">session.html#sqlite3rebaser_configure</a> + <a href="session.html#sqlite3rebaser_create">session.html#sqlite3rebaser_create</a> + <a href="session.html#sqlite3rebaser_delete">session.html#sqlite3rebaser_delete</a> + <a href="session.html#sqlite3rebaser_rebase">session.html#sqlite3rebaser_rebase</a> + <a href="session/rebaser.html">session/rebaser.html</a> + <a href="session/sqlite3rebaser_configure.html">session/sqlite3rebaser_configure.html</a> + <a href="session/sqlite3rebaser_create.html">session/sqlite3rebaser_create.html</a> + <a href="session/sqlite3rebaser_delete.html">session/sqlite3rebaser_delete.html</a> + <a href="session/sqlite3rebaser_rebase.html">session/sqlite3rebaser_rebase.html</a> +<li>experimental memory allocators → <a href="changes.html#version_3_6_5">changes.html#version_3_6_5</a> + <a href="releaselog/3_6_5.html">releaselog/3_6_5.html</a> +<li>EXPLAIN → <a href="c3ref/stmt_explain.html">c3ref/stmt_explain.html</a> + <a href="c3ref/stmt_readonly.html">c3ref/stmt_readonly.html</a> + <a href="capi3ref.html#sqlite3_stmt_explain">capi3ref.html#sqlite3_stmt_explain</a> + <a href="capi3ref.html#sqlite3_stmt_readonly">capi3ref.html#sqlite3_stmt_readonly</a> + <a href="changes.html#version_3_11_0">changes.html#version_3_11_0</a> + <a href="changes.html#version_3_13_0">changes.html#version_3_13_0</a> + <a href="changes.html#version_3_14_2">changes.html#version_3_14_2</a> + <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="changes.html#version_3_8_2">changes.html#version_3_8_2</a> + <a href="changes.html#version_3_8_3">changes.html#version_3_8_3</a> + <a href="compile.html#enable_explain_comments">compile.html#enable_explain_comments</a> + <a href="compile.html#enable_unknown_sql_function">compile.html#enable_unknown_sql_function</a> + <a href="compile.html#omit_explain">compile.html#omit_explain</a> + <a href="debugging.html">debugging.html</a> + <a href="eqp.html">eqp.html</a> + <a href="howitworks.html">howitworks.html</a> + <a href="howtocompile.html#cli">howtocompile.html#cli</a> + <a href="lang.html">lang.html</a> + <a href="opcode.html">opcode.html</a> + <a href="opcode.html#subprog">opcode.html#subprog</a> + <a href="optoverview.html#or_opt">optoverview.html#or_opt</a> + <a href="pragma.html">pragma.html</a> + <a href="releaselog/3_11_0.html">releaselog/3_11_0.html</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> + <a href="releaselog/3_13_0.html">releaselog/3_13_0.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> + <a href="releaselog/3_8_2.html">releaselog/3_8_2.html</a> + <a href="releaselog/3_8_3.html">releaselog/3_8_3.html</a> +<li>EXPLAIN QUERY PLAN → <a href="c3ref/c_scanstat_est.html#sqlitescanstatexplain">c3ref/c_scanstat_est.html#sqlitescanstatexplain</a> + <a href="c3ref/c_scanstat_est.html#sqlitescanstatparentid">c3ref/c_scanstat_est.html#sqlitescanstatparentid</a> + <a href="c3ref/c_scanstat_est.html#sqlitescanstatselectid">c3ref/c_scanstat_est.html#sqlitescanstatselectid</a> + <a href="c3ref/stmt_explain.html">c3ref/stmt_explain.html</a> + <a href="c3ref/stmt_readonly.html">c3ref/stmt_readonly.html</a> + <a href="capi3ref.html#sqlite3_stmt_explain">capi3ref.html#sqlite3_stmt_explain</a> + <a href="capi3ref.html#sqlite3_stmt_readonly">capi3ref.html#sqlite3_stmt_readonly</a> + <a href="capi3ref.html#sqlitescanstatexplain">capi3ref.html#sqlitescanstatexplain</a> + <a href="capi3ref.html#sqlitescanstatparentid">capi3ref.html#sqlitescanstatparentid</a> + <a href="capi3ref.html#sqlitescanstatselectid">capi3ref.html#sqlitescanstatselectid</a> + <a href="changes.html#version_3_13_0">changes.html#version_3_13_0</a> + <a href="changes.html#version_3_24_0">changes.html#version_3_24_0</a> + <a href="changes.html#version_3_36_0">changes.html#version_3_36_0</a> + <a href="changes.html#version_3_41_0">changes.html#version_3_41_0</a> + <a href="changes.html#version_3_7_4">changes.html#version_3_7_4</a> + <a href="changes.html#version_3_8_0">changes.html#version_3_8_0</a> + <a href="cli.html#expert">cli.html#expert</a> + <a href="compile.html#enable_unknown_sql_function">compile.html#enable_unknown_sql_function</a> + <a href="debugging.html">debugging.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html">pragma.html</a> + <a href="profile.html">profile.html</a> + <a href="releaselog/3_13_0.html">releaselog/3_13_0.html</a> + <a href="releaselog/3_24_0.html">releaselog/3_24_0.html</a> + <a href="releaselog/3_36_0.html">releaselog/3_36_0.html</a> + <a href="releaselog/3_41_0.html">releaselog/3_41_0.html</a> + <a href="releaselog/3_41_1.html">releaselog/3_41_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> + <a href="releaselog/3_7_4.html">releaselog/3_7_4.html</a> + <a href="releaselog/3_8_0.html">releaselog/3_8_0.html</a> + <a href="releaselog/3_8_0_1.html">releaselog/3_8_0_1.html</a> + <a href="releaselog/3_8_0_2.html">releaselog/3_8_0_2.html</a> +<li>explain query plan → <a href="lang_explain.html">lang_explain.html</a> +<li>export to excel → <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> +<li>expr → <a href="lang_aggfunc.html">lang_aggfunc.html</a> + <a href="lang_altertable.html">lang_altertable.html</a> + <a href="lang_attach.html">lang_attach.html</a> + <a href="lang_createindex.html">lang_createindex.html</a> + <a href="lang_createtable.html">lang_createtable.html</a> + <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_createview.html">lang_createview.html</a> + <a href="lang_delete.html">lang_delete.html</a> + <a href="lang_expr.html">lang_expr.html</a> + <a href="lang_insert.html">lang_insert.html</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_select.html">lang_select.html</a> + <a href="lang_select.html#compound">lang_select.html#compound</a> + <a href="lang_select.html#simpleselect">lang_select.html#simpleselect</a> + <a href="lang_update.html">lang_update.html</a> + <a href="lang_upsert.html">lang_upsert.html</a> + <a href="lang_with.html">lang_with.html</a> + <a href="partialindex.html">partialindex.html</a> + <a href="windowfunctions.html">windowfunctions.html</a> + <a href="windowfunctions.html#framespec">windowfunctions.html#framespec</a> + <a href="windowfunctions.html#wexcls">windowfunctions.html#wexcls</a> +<li>expression → <a href="lang.html">lang.html</a> +<li>expression affinity → <a href="lang_createtable.html#createtabas">lang_createtable.html#createtabas</a> +<li>expression index → <a href="c3ref/c_deterministic.html#sqliteresultsubtype">c3ref/c_deterministic.html#sqliteresultsubtype</a> + <a href="capi3ref.html#sqliteresultsubtype">capi3ref.html#sqliteresultsubtype</a> + <a href="changes.html#version_3_24_0">changes.html#version_3_24_0</a> + <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="changes.html#version_3_27_1">changes.html#version_3_27_1</a> + <a href="deterministic.html">deterministic.html</a> + <a href="deterministic.html#dtexception">deterministic.html#dtexception</a> + <a href="pragma.html#pragma_case_sensitive_like">pragma.html#pragma_case_sensitive_like</a> + <a href="pragma.html#pragma_index_info">pragma.html#pragma_index_info</a> + <a href="pragma.html#pragma_index_xinfo">pragma.html#pragma_index_xinfo</a> + <a href="releaselog/3_24_0.html">releaselog/3_24_0.html</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> +<li>expression indexes → <a href="c3ref/c_deterministic.html#sqlitedirectonly">c3ref/c_deterministic.html#sqlitedirectonly</a> + <a href="c3ref/c_deterministic.html#sqliteinnocuous">c3ref/c_deterministic.html#sqliteinnocuous</a> + <a href="capi3ref.html#sqlitedirectonly">capi3ref.html#sqlitedirectonly</a> + <a href="capi3ref.html#sqliteinnocuous">capi3ref.html#sqliteinnocuous</a> + <a href="changes.html#version_3_40_0">changes.html#version_3_40_0</a> + <a href="pragma.html#pragma_trusted_schema">pragma.html#pragma_trusted_schema</a> + <a href="releaselog/3_40_0.html">releaselog/3_40_0.html</a> + <a href="releaselog/3_40_1.html">releaselog/3_40_1.html</a> +<li>ext-v-prim → <a href="rescode.html#abort_rollback">rescode.html#abort_rollback</a> + <a href="rescode.html#auth_user">rescode.html#auth_user</a> + <a href="rescode.html#busy_recovery">rescode.html#busy_recovery</a> + <a href="rescode.html#busy_snapshot">rescode.html#busy_snapshot</a> + <a href="rescode.html#cantopen_convpath">rescode.html#cantopen_convpath</a> + <a href="rescode.html#cantopen_fullpath">rescode.html#cantopen_fullpath</a> + <a href="rescode.html#cantopen_isdir">rescode.html#cantopen_isdir</a> + <a href="rescode.html#constraint_check">rescode.html#constraint_check</a> + <a href="rescode.html#constraint_commithook">rescode.html#constraint_commithook</a> + <a href="rescode.html#constraint_datatype">rescode.html#constraint_datatype</a> + <a href="rescode.html#constraint_foreignkey">rescode.html#constraint_foreignkey</a> + <a href="rescode.html#constraint_notnull">rescode.html#constraint_notnull</a> + <a href="rescode.html#constraint_pinned">rescode.html#constraint_pinned</a> + <a href="rescode.html#constraint_primarykey">rescode.html#constraint_primarykey</a> + <a href="rescode.html#constraint_rowid">rescode.html#constraint_rowid</a> + <a href="rescode.html#constraint_trigger">rescode.html#constraint_trigger</a> + <a href="rescode.html#constraint_unique">rescode.html#constraint_unique</a> + <a href="rescode.html#corrupt_vtab">rescode.html#corrupt_vtab</a> + <a href="rescode.html#ioerr_access">rescode.html#ioerr_access</a> + <a href="rescode.html#ioerr_checkreservedlock">rescode.html#ioerr_checkreservedlock</a> + <a href="rescode.html#ioerr_close">rescode.html#ioerr_close</a> + <a href="rescode.html#ioerr_convpath">rescode.html#ioerr_convpath</a> + <a href="rescode.html#ioerr_corruptfs">rescode.html#ioerr_corruptfs</a> + <a href="rescode.html#ioerr_data">rescode.html#ioerr_data</a> + <a href="rescode.html#ioerr_delete">rescode.html#ioerr_delete</a> + <a href="rescode.html#ioerr_delete_noent">rescode.html#ioerr_delete_noent</a> + <a href="rescode.html#ioerr_dir_fsync">rescode.html#ioerr_dir_fsync</a> + <a href="rescode.html#ioerr_fstat">rescode.html#ioerr_fstat</a> + <a href="rescode.html#ioerr_fsync">rescode.html#ioerr_fsync</a> + <a href="rescode.html#ioerr_gettemppath">rescode.html#ioerr_gettemppath</a> + <a href="rescode.html#ioerr_lock">rescode.html#ioerr_lock</a> + <a href="rescode.html#ioerr_mmap">rescode.html#ioerr_mmap</a> + <a href="rescode.html#ioerr_rdlock">rescode.html#ioerr_rdlock</a> + <a href="rescode.html#ioerr_read">rescode.html#ioerr_read</a> + <a href="rescode.html#ioerr_seek">rescode.html#ioerr_seek</a> + <a href="rescode.html#ioerr_shmmap">rescode.html#ioerr_shmmap</a> + <a href="rescode.html#ioerr_shmopen">rescode.html#ioerr_shmopen</a> + <a href="rescode.html#ioerr_shmsize">rescode.html#ioerr_shmsize</a> + <a href="rescode.html#ioerr_short_read">rescode.html#ioerr_short_read</a> + <a href="rescode.html#ioerr_truncate">rescode.html#ioerr_truncate</a> + <a href="rescode.html#ioerr_unlock">rescode.html#ioerr_unlock</a> + <a href="rescode.html#ioerr_write">rescode.html#ioerr_write</a> + <a href="rescode.html#readonly_cantlock">rescode.html#readonly_cantlock</a> + <a href="rescode.html#readonly_dbmoved">rescode.html#readonly_dbmoved</a> + <a href="rescode.html#readonly_recovery">rescode.html#readonly_recovery</a> + <a href="rescode.html#readonly_rollback">rescode.html#readonly_rollback</a> +<li>extended error code → <a href="c3ref/blob_read.html">c3ref/blob_read.html</a> + <a href="c3ref/blob_write.html">c3ref/blob_write.html</a> + <a href="c3ref/finalize.html">c3ref/finalize.html</a> + <a href="capi3ref.html#sqlite3_blob_read">capi3ref.html#sqlite3_blob_read</a> + <a href="capi3ref.html#sqlite3_blob_write">capi3ref.html#sqlite3_blob_write</a> + <a href="capi3ref.html#sqlite3_finalize">capi3ref.html#sqlite3_finalize</a> + <a href="errlog.html">errlog.html</a> + <a href="rescode.html#constraint">rescode.html#constraint</a> +<li>extended error codes → <a href="c3ref/prepare.html">c3ref/prepare.html</a> + <a href="capi3ref.html#sqlite3_prepare">capi3ref.html#sqlite3_prepare</a> + <a href="rescode.html#notice">rescode.html#notice</a> + <a href="rescode.html#warning">rescode.html#warning</a> + <a href="unlock_notify.html">unlock_notify.html</a> +<li>extended result code → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfiglog">c3ref/c_config_covering_index_scan.html#sqliteconfiglog</a> + <a href="c3ref/errcode.html">c3ref/errcode.html</a> + <a href="capi3ref.html#sqlite3_errcode">capi3ref.html#sqlite3_errcode</a> + <a href="capi3ref.html#sqliteconfiglog">capi3ref.html#sqliteconfiglog</a> +<li>extended result code definitions → <a href="c3ref/c_abort.html">c3ref/c_abort.html</a> + <a href="capi3ref.html#SQLITE_ABORT">capi3ref.html#SQLITE_ABORT</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> + <a href="rescode.html#pve">rescode.html#pve</a> +<li>extended result codes → <a href="c3ref/c_abort_rollback.html">c3ref/c_abort_rollback.html</a> + <a href="c3ref/extended_result_codes.html">c3ref/extended_result_codes.html</a> + <a href="c3ref/step.html">c3ref/step.html</a> + <a href="capi3ref.html#SQLITE_ABORT_ROLLBACK">capi3ref.html#SQLITE_ABORT_ROLLBACK</a> + <a href="capi3ref.html#sqlite3_extended_result_codes">capi3ref.html#sqlite3_extended_result_codes</a> + <a href="capi3ref.html#sqlite3_step">capi3ref.html#sqlite3_step</a> +<li>Extending FTS5 → <a href="bindptr.html">bindptr.html</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="fts5.html#compiling_and_using_fts5">fts5.html#compiling_and_using_fts5</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> +<li>extension loading → <a href="c3ref/enable_load_extension.html">c3ref/enable_load_extension.html</a> + <a href="capi3ref.html#sqlite3_enable_load_extension">capi3ref.html#sqlite3_enable_load_extension</a> + <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> +<li>external content fts4 tables → <a href="rbu.html#fts4_tables">rbu.html#fts4_tables</a> +<li>factored-select-stmt → <a href="lang_select.html">lang_select.html</a> +<li>faster than the filesystem → <a href="about.html">about.html</a> + <a href="aff_short.html">aff_short.html</a> + <a href="appfileformat.html">appfileformat.html</a> + <a href="features.html">features.html</a> + <a href="howitworks.html">howitworks.html</a> + <a href="index.html">index.html</a> + <a href="intern-v-extern-blob.html">intern-v-extern-blob.html</a> + <a href="whentouse.html#appfileformat">whentouse.html#appfileformat</a> + <a href="whentouse.html#container">whentouse.html#container</a> +<li>file control → <a href="c3ref/snapshot_recover.html">c3ref/snapshot_recover.html</a> + <a href="c3ref/total_changes.html">c3ref/total_changes.html</a> + <a href="capi3ref.html#sqlite3_snapshot_recover">capi3ref.html#sqlite3_snapshot_recover</a> + <a href="capi3ref.html#sqlite3_total_changes">capi3ref.html#sqlite3_total_changes</a> + <a href="wal.html#walfile">wal.html#walfile</a> +<li>file control opcode → <a href="rescode.html#notfound">rescode.html#notfound</a> +<li>file control opcodes → <a href="c3ref/file_control.html">c3ref/file_control.html</a> + <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> + <a href="capi3ref.html#sqlite3_file_control">capi3ref.html#sqlite3_file_control</a> + <a href="capi3ref.html#sqlite3_io_methods">capi3ref.html#sqlite3_io_methods</a> +<li>file format → <a href="about.html">about.html</a> + <a href="appfileformat.html">appfileformat.html</a> + <a href="arch.html">arch.html</a> + <a href="dbpage.html">dbpage.html</a> + <a href="formatchng.html">formatchng.html</a> + <a href="howitworks.html">howitworks.html</a> + <a href="imposter.html">imposter.html</a> + <a href="index.html">index.html</a> + <a href="lts.html">lts.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="onefile.html">onefile.html</a> + <a href="qmplan.html">qmplan.html</a> + <a href="rowidtable.html">rowidtable.html</a> + <a href="schematab.html">schematab.html</a> + <a href="sqlar.html#dbasobj">sqlar.html#dbasobj</a> + <a href="stricttables.html">stricttables.html</a> + <a href="version3.html">version3.html</a> + <a href="walformat.html">walformat.html</a> + <a href="whentouse.html#container">whentouse.html#container</a> + <a href="whentouse.html#wireproto">whentouse.html#wireproto</a> +<li>file format version numbers → <a href="c3ref/deserialize.html">c3ref/deserialize.html</a> + <a href="capi3ref.html#sqlite3_deserialize">capi3ref.html#sqlite3_deserialize</a> + <a href="walformat.html">walformat.html</a> +<li>file I/O functions → <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="cli.html#zipdb">cli.html#zipdb</a> + <a href="json1.html#jblobbug">json1.html#jblobbug</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> + <a href="zipfile.html">zipfile.html</a> +<li>file-format benefits → <a href="whentouse.html#appfileformat">whentouse.html#appfileformat</a> +<li>FILTER clause on aggregate functions → <a href="changes.html#version_3_30_0">changes.html#version_3_30_0</a> + <a href="changes.html#version_3_30_1">changes.html#version_3_30_1</a> + <a href="releaselog/3_30_0.html">releaselog/3_30_0.html</a> + <a href="releaselog/3_30_1.html">releaselog/3_30_1.html</a> +<li>filter-clause → <a href="lang_aggfunc.html">lang_aggfunc.html</a> + <a href="lang_altertable.html">lang_altertable.html</a> + <a href="lang_attach.html">lang_attach.html</a> + <a href="lang_createindex.html">lang_createindex.html</a> + <a href="lang_createtable.html">lang_createtable.html</a> + <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_createview.html">lang_createview.html</a> + <a href="lang_delete.html">lang_delete.html</a> + <a href="lang_expr.html">lang_expr.html</a> + <a href="lang_insert.html">lang_insert.html</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_select.html">lang_select.html</a> + <a href="lang_select.html#compound">lang_select.html#compound</a> + <a href="lang_select.html#simpleselect">lang_select.html#simpleselect</a> + <a href="lang_update.html">lang_update.html</a> + <a href="lang_upsert.html">lang_upsert.html</a> + <a href="lang_with.html">lang_with.html</a> + <a href="partialindex.html">partialindex.html</a> + <a href="windowfunctions.html">windowfunctions.html</a> + <a href="windowfunctions.html#framespec">windowfunctions.html#framespec</a> + <a href="windowfunctions.html#wexcls">windowfunctions.html#wexcls</a> +<li>flattened → <a href="changes.html#version_3_35_0">changes.html#version_3_35_0</a> + <a href="lang_with.html#mathint">lang_with.html#mathint</a> + <a href="optoverview.html#pushdown">optoverview.html#pushdown</a> + <a href="releaselog/3_35_0.html">releaselog/3_35_0.html</a> + <a href="releaselog/3_35_1.html">releaselog/3_35_1.html</a> + <a href="releaselog/3_35_2.html">releaselog/3_35_2.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> +<li>flattening optimization → <a href="changes.html#version_3_19_0">changes.html#version_3_19_0</a> + <a href="changes.html#version_3_19_1">changes.html#version_3_19_1</a> + <a href="changes.html#version_3_19_2">changes.html#version_3_19_2</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="eqp.html#or-opt">eqp.html#or-opt</a> + <a href="releaselog/3_19_0.html">releaselog/3_19_0.html</a> + <a href="releaselog/3_19_1.html">releaselog/3_19_1.html</a> + <a href="releaselog/3_19_2.html">releaselog/3_19_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> +<li>Flexible typing is a feature → <a href="datatype3.html">datatype3.html</a> + <a href="quirks.html">quirks.html</a> +<li>floor → <a href="lang_mathfunc.html">lang_mathfunc.html</a> + <a href="lang_mathfunc.html#trunc">lang_mathfunc.html#trunc</a> +<li>footprint → <a href="different.html#small">different.html#small</a> + <a href="features.html">features.html</a> + <a href="index.html">index.html</a> +<li>foreign key actions → <a href="c3ref/changes.html">c3ref/changes.html</a> + <a href="c3ref/total_changes.html">c3ref/total_changes.html</a> + <a href="capi3ref.html#sqlite3_changes">capi3ref.html#sqlite3_changes</a> + <a href="capi3ref.html#sqlite3_total_changes">capi3ref.html#sqlite3_total_changes</a> + <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="compile.html#omit_trigger">compile.html#omit_trigger</a> + <a href="foreignkeys.html#fk_actions">foreignkeys.html#fk_actions</a> + <a href="lang_droptable.html">lang_droptable.html</a> + <a href="pragma.html#pragma_count_changes">pragma.html#pragma_count_changes</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> +<li>foreign key constraint → <a href="compile.html#omit_foreign_key">compile.html#omit_foreign_key</a> + <a href="lang_altertable.html#altertabdropcol">lang_altertable.html#altertabdropcol</a> + <a href="lang_conflict.html">lang_conflict.html</a> + <a href="lang_createtable.html#rowid">lang_createtable.html#rowid</a> + <a href="pragma.html#pragma_foreign_key_list">pragma.html#pragma_foreign_key_list</a> + <a href="pragma.html#pragma_integrity_check">pragma.html#pragma_integrity_check</a> + <a href="rescode.html#constraint_foreignkey">rescode.html#constraint_foreignkey</a> +<li>foreign key constraints → <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> + <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfigenablefkey">c3ref/c_dbconfig_defensive.html#sqlitedbconfigenablefkey</a> + <a href="capi3ref.html#sqlite3_blob_open">capi3ref.html#sqlite3_blob_open</a> + <a href="capi3ref.html#sqlitedbconfigenablefkey">capi3ref.html#sqlitedbconfigenablefkey</a> + <a href="changes.html#version_3_6_19">changes.html#version_3_6_19</a> + <a href="compile.html#default_foreign_keys">compile.html#default_foreign_keys</a> + <a href="compile.html#omit_trigger">compile.html#omit_trigger</a> + <a href="faq.html#q22">faq.html#q22</a> + <a href="lang_altertable.html#altertabaddcol">lang_altertable.html#altertabaddcol</a> + <a href="lang_altertable.html#altertabrename">lang_altertable.html#altertabrename</a> + <a href="lang_droptable.html">lang_droptable.html</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_defer_foreign_keys">pragma.html#pragma_defer_foreign_keys</a> + <a href="pragma.html#pragma_foreign_key_check">pragma.html#pragma_foreign_key_check</a> + <a href="pragma.html#pragma_foreign_keys">pragma.html#pragma_foreign_keys</a> + <a href="releaselog/3_6_19.html">releaselog/3_6_19.html</a> +<li>FOREIGN KEY constraints → <a href="fullsql.html">fullsql.html</a> + <a href="lang_conflict.html">lang_conflict.html</a> + <a href="stricttables.html">stricttables.html</a> +<li>foreign key constraints are enabled → <a href="foreignkeys.html#fk_actions">foreignkeys.html#fk_actions</a> +<li>foreign-key-clause → <a href="lang_altertable.html">lang_altertable.html</a> + <a href="lang_altertable.html#altertabaddcol">lang_altertable.html#altertabaddcol</a> + <a href="lang_createtable.html">lang_createtable.html</a> +<li>foreign_key_list pragma → <a href="pragma.html#pragma_foreign_key_check">pragma.html#pragma_foreign_key_check</a> +<li>foreign_keys pragma → <a href="changes.html#version_3_6_19">changes.html#version_3_6_19</a> + <a href="compile.html#default_foreign_keys">compile.html#default_foreign_keys</a> + <a href="lang_altertable.html#altertabaddcol">lang_altertable.html#altertabaddcol</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_6_19.html">releaselog/3_6_19.html</a> +<li>format → <a href="changes.html#version_3_38_0">changes.html#version_3_38_0</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="printf.html">printf.html</a> + <a href="releaselog/3_38_0.html">releaselog/3_38_0.html</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> +<li>format SQL function → <a href="lang_corefunc.html#printf">lang_corefunc.html#printf</a> + <a href="printf.html">printf.html</a> + <a href="printf.html#percentw">printf.html#percentw</a> + <a href="printf.html#percentz">printf.html#percentz</a> +<li>forum → <a href="fasterthanfs.html">fasterthanfs.html</a> +<li>frame-spec → <a href="lang_aggfunc.html">lang_aggfunc.html</a> + <a href="lang_altertable.html">lang_altertable.html</a> + <a href="lang_attach.html">lang_attach.html</a> + <a href="lang_createindex.html">lang_createindex.html</a> + <a href="lang_createtable.html">lang_createtable.html</a> + <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_createview.html">lang_createview.html</a> + <a href="lang_delete.html">lang_delete.html</a> + <a href="lang_expr.html">lang_expr.html</a> + <a href="lang_insert.html">lang_insert.html</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_select.html">lang_select.html</a> + <a href="lang_select.html#compound">lang_select.html#compound</a> + <a href="lang_select.html#simpleselect">lang_select.html#simpleselect</a> + <a href="lang_update.html">lang_update.html</a> + <a href="lang_upsert.html">lang_upsert.html</a> + <a href="lang_with.html">lang_with.html</a> + <a href="partialindex.html">partialindex.html</a> + <a href="windowfunctions.html">windowfunctions.html</a> + <a href="windowfunctions.html#framespec">windowfunctions.html#framespec</a> + <a href="windowfunctions.html#wexcls">windowfunctions.html#wexcls</a> +<li>frames → <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> +<li>free-page list → <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="changes.html#version_3_7_2">changes.html#version_3_7_2</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> + <a href="releaselog/3_7_2.html">releaselog/3_7_2.html</a> +<li>freelist → <a href="atomiccommit.html#freelistjrnl">atomiccommit.html#freelistjrnl</a> + <a href="pragma.html#pragma_auto_vacuum">pragma.html#pragma_auto_vacuum</a> + <a href="pragma.html#pragma_incremental_vacuum">pragma.html#pragma_incremental_vacuum</a> + <a href="pragma.html#pragma_secure_delete">pragma.html#pragma_secure_delete</a> +<li>FROM clause → <a href="lang_select.html#simpleselect">lang_select.html#simpleselect</a> +<li>FTS auxiliary functions → <a href="fts3.html#hiddencol">fts3.html#hiddencol</a> + <a href="fts3.html#simple_fts_queries">fts3.html#simple_fts_queries</a> + <a href="fts5.html#appendix_a">fts5.html#appendix_a</a> + <a href="vtab.html#hiddencol">vtab.html#hiddencol</a> +<li>FTS hidden column → <a href="fts3.html#matchinfo">fts3.html#matchinfo</a> + <a href="fts3.html#snippet">fts3.html#snippet</a> + <a href="vtab.html#hiddencol">vtab.html#hiddencol</a> +<li>FTS MATCH → <a href="bindptr.html">bindptr.html</a> + <a href="fts3.html#fts4">fts3.html#fts4</a> + <a href="fts3.html#hiddencol">fts3.html#hiddencol</a> + <a href="fts3.html#simple_fts_queries">fts3.html#simple_fts_queries</a> + <a href="vtab.html#hiddencol">vtab.html#hiddencol</a> +<li>FTS shadow tables → <a href="fts3.html#*fts4ickcmd">fts3.html#*fts4ickcmd</a> + <a href="fts3.html#fts4">fts3.html#fts4</a> + <a href="rbu.html#sqldiff">rbu.html#sqldiff</a> + <a href="vtab.html#xshadowname">vtab.html#xshadowname</a> +<li>FTS3 → <a href="amalgamation.html">amalgamation.html</a> + <a href="bindptr.html">bindptr.html</a> + <a href="bindptr.html#ptrtyp">bindptr.html#ptrtyp</a> + <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfigenablefts3tokenizer">c3ref/c_dbconfig_defensive.html#sqlitedbconfigenablefts3tokenizer</a> + <a href="capi3ref.html#sqlitedbconfigenablefts3tokenizer">capi3ref.html#sqlitedbconfigenablefts3tokenizer</a> + <a href="changes.html#version_3_18_0">changes.html#version_3_18_0</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="changes.html#version_3_39_1">changes.html#version_3_39_1</a> + <a href="changes.html#version_3_41_2">changes.html#version_3_41_2</a> + <a href="changes.html#version_3_44_0">changes.html#version_3_44_0</a> + <a href="changes.html#version_3_6_22">changes.html#version_3_6_22</a> + <a href="changes.html#version_3_6_23">changes.html#version_3_6_23</a> + <a href="changes.html#version_3_6_23_1">changes.html#version_3_6_23_1</a> + <a href="changes.html#version_3_7_16_1">changes.html#version_3_7_16_1</a> + <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="changes.html#version_3_7_7">changes.html#version_3_7_7</a> + <a href="changes.html#version_3_8_10">changes.html#version_3_8_10</a> + <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="compile.html#disable_fts3_unicode">compile.html#disable_fts3_unicode</a> + <a href="compile.html#fts3_max_expr_depth">compile.html#fts3_max_expr_depth</a> + <a href="cves.html#cvetab">cves.html#cvetab</a> + <a href="fts5.html#fts5shadowtables">fts5.html#fts5shadowtables</a> + <a href="news.html">news.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_secure_delete">pragma.html#pragma_secure_delete</a> + <a href="rbu.html#fts4_tables">rbu.html#fts4_tables</a> + <a href="releaselog/3_18_0.html">releaselog/3_18_0.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> + <a href="releaselog/3_39_1.html">releaselog/3_39_1.html</a> + <a href="releaselog/3_39_2.html">releaselog/3_39_2.html</a> + <a href="releaselog/3_39_3.html">releaselog/3_39_3.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> + <a href="releaselog/3_44_0.html">releaselog/3_44_0.html</a> + <a href="releaselog/3_44_1.html">releaselog/3_44_1.html</a> + <a href="releaselog/3_44_2.html">releaselog/3_44_2.html</a> + <a href="releaselog/3_6_22.html">releaselog/3_6_22.html</a> + <a href="releaselog/3_6_23.html">releaselog/3_6_23.html</a> + <a href="releaselog/3_6_23_1.html">releaselog/3_6_23_1.html</a> + <a href="releaselog/3_7_16_1.html">releaselog/3_7_16_1.html</a> + <a href="releaselog/3_7_16_2.html">releaselog/3_7_16_2.html</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> + <a href="releaselog/3_7_7.html">releaselog/3_7_7.html</a> + <a href="releaselog/3_8_10.html">releaselog/3_8_10.html</a> + <a href="releaselog/3_8_10_1.html">releaselog/3_8_10_1.html</a> + <a href="releaselog/3_8_10_2.html">releaselog/3_8_10_2.html</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> + <a href="sqldiff.html">sqldiff.html</a> + <a href="vtab.html#hiddencol">vtab.html#hiddencol</a> + <a href="vtab.html#xintegrity">vtab.html#xintegrity</a> + <a href="vtab.html#xshadowname">vtab.html#xshadowname</a> +<li>fts3 → <a href="changes.html#version_3_6_21">changes.html#version_3_6_21</a> + <a href="fts5.html#appendix_a">fts5.html#appendix_a</a> + <a href="releaselog/3_6_21.html">releaselog/3_6_21.html</a> +<li>fts3_tokenizer → <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfigenablefts3tokenizer">c3ref/c_dbconfig_defensive.html#sqlitedbconfigenablefts3tokenizer</a> + <a href="capi3ref.html#sqlitedbconfigenablefts3tokenizer">capi3ref.html#sqlitedbconfigenablefts3tokenizer</a> + <a href="changes.html#version_3_11_0">changes.html#version_3_11_0</a> + <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="compile.html#enable_fts3_tokenizer">compile.html#enable_fts3_tokenizer</a> + <a href="releaselog/3_11_0.html">releaselog/3_11_0.html</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> +<li>fts3tokenize virtual table → <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> +<li>FTS4 → <a href="affcase1.html#smaller">affcase1.html#smaller</a> + <a href="changes.html#version_3_18_0">changes.html#version_3_18_0</a> + <a href="changes.html#version_3_44_0">changes.html#version_3_44_0</a> + <a href="changes.html#version_3_7_4">changes.html#version_3_7_4</a> + <a href="changes.html#version_3_7_9">changes.html#version_3_7_9</a> + <a href="changes.html#version_3_8_0">changes.html#version_3_8_0</a> + <a href="changes.html#version_3_8_1">changes.html#version_3_8_1</a> + <a href="changes.html#version_3_8_5">changes.html#version_3_8_5</a> + <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="compile.html#disable_fts4_deferred">compile.html#disable_fts4_deferred</a> + <a href="compile.html#fts3_max_expr_depth">compile.html#fts3_max_expr_depth</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_18_0.html">releaselog/3_18_0.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> + <a href="releaselog/3_44_0.html">releaselog/3_44_0.html</a> + <a href="releaselog/3_44_1.html">releaselog/3_44_1.html</a> + <a href="releaselog/3_44_2.html">releaselog/3_44_2.html</a> + <a href="releaselog/3_7_4.html">releaselog/3_7_4.html</a> + <a href="releaselog/3_7_9.html">releaselog/3_7_9.html</a> + <a href="releaselog/3_8_0.html">releaselog/3_8_0.html</a> + <a href="releaselog/3_8_0_1.html">releaselog/3_8_0_1.html</a> + <a href="releaselog/3_8_0_2.html">releaselog/3_8_0_2.html</a> + <a href="releaselog/3_8_1.html">releaselog/3_8_1.html</a> + <a href="releaselog/3_8_5.html">releaselog/3_8_5.html</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> + <a href="spellfix1.html">spellfix1.html</a> + <a href="th3.html">th3.html</a> +<li>FTS4 automerge command → <a href="changes.html#version_3_7_12">changes.html#version_3_7_12</a> + <a href="releaselog/3_7_12.html">releaselog/3_7_12.html</a> +<li>fts4 compress option → <a href="fts3.html#fts4_options">fts3.html#fts4_options</a> + <a href="fts3.html#fts4order">fts3.html#fts4order</a> +<li>FTS4 content option → <a href="changes.html#version_3_7_11">changes.html#version_3_7_11</a> + <a href="fts3.html#*fts4ickcmd">fts3.html#*fts4ickcmd</a> + <a href="fts3.html#*fts4rebuidcmd">fts3.html#*fts4rebuidcmd</a> + <a href="releaselog/3_7_11.html">releaselog/3_7_11.html</a> +<li>FTS4 integrity-check command → <a href="changes.html#version_3_7_12">changes.html#version_3_7_12</a> + <a href="releaselog/3_7_12.html">releaselog/3_7_12.html</a> +<li>FTS4 languageid option → <a href="changes.html#version_3_7_11">changes.html#version_3_7_11</a> + <a href="releaselog/3_7_11.html">releaselog/3_7_11.html</a> +<li>FTS4 matchinfo option → <a href="fts3.html#fts4">fts3.html#fts4</a> + <a href="fts3.html#shadow_tables">fts3.html#shadow_tables</a> +<li>FTS4 merge command → <a href="changes.html#version_3_7_12">changes.html#version_3_7_12</a> + <a href="releaselog/3_7_12.html">releaselog/3_7_12.html</a> +<li>FTS4 notindexed option → <a href="changes.html#version_3_8_0">changes.html#version_3_8_0</a> + <a href="changes.html#version_3_8_5">changes.html#version_3_8_5</a> + <a href="releaselog/3_8_0.html">releaselog/3_8_0.html</a> + <a href="releaselog/3_8_0_1.html">releaselog/3_8_0_1.html</a> + <a href="releaselog/3_8_0_2.html">releaselog/3_8_0_2.html</a> + <a href="releaselog/3_8_5.html">releaselog/3_8_5.html</a> +<li>FTS4 options → <a href="fts3.html#fts4">fts3.html#fts4</a> +<li>FTS4 order option → <a href="changes.html#version_3_7_7">changes.html#version_3_7_7</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_7_7.html">releaselog/3_7_7.html</a> +<li>fts4 prefix option → <a href="fts3.html#fts4order">fts3.html#fts4order</a> +<li>FTS4 prefix option → <a href="changes.html#version_3_7_7">changes.html#version_3_7_7</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_7_7.html">releaselog/3_7_7.html</a> +<li>FTS4 rebuild command → <a href="fts3.html#_external_content_fts4_tables_">fts3.html#_external_content_fts4_tables_</a> +<li>fts4aux → <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="changes.html#version_3_7_6">changes.html#version_3_7_6</a> + <a href="changes.html#version_3_8_1">changes.html#version_3_8_1</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> + <a href="releaselog/3_7_6.html">releaselog/3_7_6.html</a> + <a href="releaselog/3_8_1.html">releaselog/3_8_1.html</a> + <a href="spellfix1.html">spellfix1.html</a> +<li>fts4aux languageid column → <a href="changes.html#version_3_8_1">changes.html#version_3_8_1</a> + <a href="releaselog/3_8_1.html">releaselog/3_8_1.html</a> +<li>FTS5 → <a href="amalgamation.html">amalgamation.html</a> + <a href="bindptr.html#ptrtyp">bindptr.html#ptrtyp</a> + <a href="changes.html#version_3_11_1">changes.html#version_3_11_1</a> + <a href="changes.html#version_3_18_0">changes.html#version_3_18_0</a> + <a href="changes.html#version_3_19_0">changes.html#version_3_19_0</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="changes.html#version_3_34_0">changes.html#version_3_34_0</a> + <a href="changes.html#version_3_37_1">changes.html#version_3_37_1</a> + <a href="changes.html#version_3_43_0">changes.html#version_3_43_0</a> + <a href="changes.html#version_3_44_0">changes.html#version_3_44_0</a> + <a href="changes.html#version_3_45_0">changes.html#version_3_45_0</a> + <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="changes.html#version_3_9_0">changes.html#version_3_9_0</a> + <a href="cves.html#cvetab">cves.html#cvetab</a> + <a href="fullsql.html">fullsql.html</a> + <a href="lemon.html">lemon.html</a> + <a href="news.html">news.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_secure_delete">pragma.html#pragma_secure_delete</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> + <a href="releaselog/3_18_0.html">releaselog/3_18_0.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> + <a href="releaselog/3_19_0.html">releaselog/3_19_0.html</a> + <a href="releaselog/3_19_1.html">releaselog/3_19_1.html</a> + <a href="releaselog/3_19_2.html">releaselog/3_19_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> + <a href="releaselog/3_34_0.html">releaselog/3_34_0.html</a> + <a href="releaselog/3_34_1.html">releaselog/3_34_1.html</a> + <a href="releaselog/3_37_1.html">releaselog/3_37_1.html</a> + <a href="releaselog/3_37_2.html">releaselog/3_37_2.html</a> + <a href="releaselog/3_43_0.html">releaselog/3_43_0.html</a> + <a href="releaselog/3_43_1.html">releaselog/3_43_1.html</a> + <a href="releaselog/3_43_2.html">releaselog/3_43_2.html</a> + <a href="releaselog/3_44_0.html">releaselog/3_44_0.html</a> + <a href="releaselog/3_44_1.html">releaselog/3_44_1.html</a> + <a href="releaselog/3_44_2.html">releaselog/3_44_2.html</a> + <a href="releaselog/3_45_0.html">releaselog/3_45_0.html</a> + <a href="releaselog/3_45_1.html">releaselog/3_45_1.html</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> + <a href="releaselog/3_9_0.html">releaselog/3_9_0.html</a> + <a href="releaselog/3_9_1.html">releaselog/3_9_1.html</a> + <a href="releaselog/3_9_2.html">releaselog/3_9_2.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> + <a href="sqldiff.html">sqldiff.html</a> + <a href="vtab.html#xintegrity">vtab.html#xintegrity</a> + <a href="vtab.html#xshadowname">vtab.html#xshadowname</a> + <a href="vtablist.html">vtablist.html</a> +<li>fts5 → <a href="compile.html#enable_fts5">compile.html#enable_fts5</a> +<li>FTS5 automerge option → <a href="fts5.html#appendix_a">fts5.html#appendix_a</a> + <a href="fts5.html#the_merge_command">fts5.html#the_merge_command</a> + <a href="fts5.html#the_optimize_command">fts5.html#the_optimize_command</a> +<li>FTS5 auxiliary functions → <a href="fts5.html">fts5.html</a> + <a href="fts5.html#the_unindexed_column_option">fts5.html#the_unindexed_column_option</a> +<li>FTS5 bm25 → <a href="fts5.html#_auxiliary_functions_">fts5.html#_auxiliary_functions_</a> + <a href="fts5.html#the_columnsize_option">fts5.html#the_columnsize_option</a> +<li>FTS5 column filters → <a href="changes.html#version_3_19_0">changes.html#version_3_19_0</a> + <a href="fts5.html">fts5.html</a> + <a href="fts5.html#fts5_initial_token_queries">fts5.html#fts5_initial_token_queries</a> + <a href="releaselog/3_19_0.html">releaselog/3_19_0.html</a> + <a href="releaselog/3_19_1.html">releaselog/3_19_1.html</a> + <a href="releaselog/3_19_2.html">releaselog/3_19_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> +<li>FTS5 columnsize option → <a href="fts5.html#appendix_a">fts5.html#appendix_a</a> + <a href="fts5.html#fts5_table_creation_and_initialization">fts5.html#fts5_table_creation_and_initialization</a> +<li>FTS5 content option → <a href="fts5.html#fts5_table_creation_and_initialization">fts5.html#fts5_table_creation_and_initialization</a> +<li>FTS5 contentless tables → <a href="fts5.html#the_columnsize_option">fts5.html#the_columnsize_option</a> + <a href="fts5.html#the_delete_all_command">fts5.html#the_delete_all_command</a> + <a href="fts5.html#the_delete_command">fts5.html#the_delete_command</a> + <a href="fts5.html#the_detail_option">fts5.html#the_detail_option</a> + <a href="fts5.html#the_rebuild_command">fts5.html#the_rebuild_command</a> +<li>FTS5 contentless-delete tables → <a href="fts5.html#the_delete_all_command">fts5.html#the_delete_all_command</a> + <a href="fts5.html#the_deletemerge_configuration_option">fts5.html#the_deletemerge_configuration_option</a> +<li>FTS5 CREATE TABLE Options → <a href="fts5.html">fts5.html</a> +<li>FTS5 custom auxiliary functions → <a href="fts5.html">fts5.html</a> + <a href="fts5.html#_auxiliary_functions_">fts5.html#_auxiliary_functions_</a> +<li>FTS5 delete command → <a href="fts5.html#contentless_delete_tables">fts5.html#contentless_delete_tables</a> + <a href="fts5.html#contentless_tables">fts5.html#contentless_tables</a> +<li>FTS5 delete-all command → <a href="fts5.html#the_delete_command">fts5.html#the_delete_command</a> +<li>FTS5 detail option → <a href="changes.html#version_3_11_0">changes.html#version_3_11_0</a> + <a href="fts5.html#fts5_table_creation_and_initialization">fts5.html#fts5_table_creation_and_initialization</a> + <a href="releaselog/3_11_0.html">releaselog/3_11_0.html</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> +<li>FTS5 external content tables → <a href="fts5.html#fts5_table_creation_and_initialization">fts5.html#fts5_table_creation_and_initialization</a> + <a href="fts5.html#the_delete_all_command">fts5.html#the_delete_all_command</a> + <a href="fts5.html#the_delete_command">fts5.html#the_delete_command</a> + <a href="fts5.html#the_deletemerge_configuration_option">fts5.html#the_deletemerge_configuration_option</a> + <a href="fts5.html#the_rebuild_command">fts5.html#the_rebuild_command</a> +<li>FTS5 highlight → <a href="fts5.html#_auxiliary_functions_">fts5.html#_auxiliary_functions_</a> +<li>FTS5 initial token → <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> +<li>FTS5 merge command → <a href="fts5.html#appendix_a">fts5.html#appendix_a</a> + <a href="fts5.html#the_optimize_command">fts5.html#the_optimize_command</a> +<li>FTS5 optimize command → <a href="fts5.html#the_merge_command">fts5.html#the_merge_command</a> +<li>FTS5 pgsz option → <a href="fts5.html#the_merge_command">fts5.html#the_merge_command</a> +<li>FTS5 prefix indexes → <a href="fts5.html#fts5_table_creation_and_initialization">fts5.html#fts5_table_creation_and_initialization</a> +<li>FTS5 query syntax → <a href="fts5.html">fts5.html</a> +<li>FTS5 rank configuration option → <a href="fts5.html#sorting_by_auxiliary_function_results">fts5.html#sorting_by_auxiliary_function_results</a> +<li>FTS5 secure-delete command → <a href="changes.html#version_3_42_0">changes.html#version_3_42_0</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_42_0.html">releaselog/3_42_0.html</a> +<li>fts5 shadow tables → <a href="vtab.html#xshadowname">vtab.html#xshadowname</a> +<li>FTS5 snippet → <a href="fts5.html#_auxiliary_functions_">fts5.html#_auxiliary_functions_</a> +<li>fts5 technical differences → <a href="fts5.html#appendix_a">fts5.html#appendix_a</a> +<li>FTS5 tokendata option → <a href="changes.html#version_3_45_0">changes.html#version_3_45_0</a> + <a href="releaselog/3_45_0.html">releaselog/3_45_0.html</a> + <a href="releaselog/3_45_1.html">releaselog/3_45_1.html</a> +<li>FTS5 tokenizers → <a href="fts5.html#fts5_phrases">fts5.html#fts5_phrases</a> + <a href="fts5.html#fts5_table_creation_and_initialization">fts5.html#fts5_table_creation_and_initialization</a> +<li>FTS5 usermerge option → <a href="fts5.html#the_merge_command">fts5.html#the_merge_command</a> +<li>fts5vocab → <a href="changes.html#version_3_15_0">changes.html#version_3_15_0</a> + <a href="fts5.html#appendix_a">fts5.html#appendix_a</a> + <a href="releaselog/3_15_0.html">releaselog/3_15_0.html</a> + <a href="releaselog/3_15_1.html">releaselog/3_15_1.html</a> + <a href="releaselog/3_15_2.html">releaselog/3_15_2.html</a> +<li>Full-featured SQL → <a href="about.html">about.html</a> + <a href="features.html">features.html</a> +<li>full-featured SQL → <a href="index.html">index.html</a> +<li>full-text search → <a href="aff_short.html">aff_short.html</a> + <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="howtocompile.html#dll">howtocompile.html#dll</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> + <a href="vtab.html">vtab.html</a> + <a href="vtablist.html">vtablist.html</a> +<li>full_column_names → <a href="pragma.html#pragma_full_column_names">pragma.html#pragma_full_column_names</a> + <a href="pragma.html#pragma_short_column_names">pragma.html#pragma_short_column_names</a> +<li>fullfsync → <a href="pragma.html#pragma_checkpoint_fullfsync">pragma.html#pragma_checkpoint_fullfsync</a> + <a href="pragma.html#pragma_synchronous">pragma.html#pragma_synchronous</a> +<li>function method → <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> +<li>function-arguments → <a href="lang_aggfunc.html">lang_aggfunc.html</a> + <a href="lang_altertable.html">lang_altertable.html</a> + <a href="lang_attach.html">lang_attach.html</a> + <a href="lang_createindex.html">lang_createindex.html</a> + <a href="lang_createtable.html">lang_createtable.html</a> + <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_createview.html">lang_createview.html</a> + <a href="lang_delete.html">lang_delete.html</a> + <a href="lang_expr.html">lang_expr.html</a> + <a href="lang_insert.html">lang_insert.html</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_select.html">lang_select.html</a> + <a href="lang_select.html#compound">lang_select.html#compound</a> + <a href="lang_select.html#simpleselect">lang_select.html#simpleselect</a> + <a href="lang_update.html">lang_update.html</a> + <a href="lang_upsert.html">lang_upsert.html</a> + <a href="lang_with.html">lang_with.html</a> + <a href="partialindex.html">partialindex.html</a> + <a href="windowfunctions.html">windowfunctions.html</a> + <a href="windowfunctions.html#framespec">windowfunctions.html#framespec</a> + <a href="windowfunctions.html#wexcls">windowfunctions.html#wexcls</a> +<li>function_list pragma → <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> +<li>functions within expressions → <a href="lang_corefunc.html">lang_corefunc.html</a> +<li>fuzz testing → <a href="testing.html#slt">testing.html#slt</a> +<li>generalized ALTER TABLE procedure → <a href="lang_altertable.html#caution">lang_altertable.html#caution</a> +<li>generate_series → <a href="changes.html#version_3_23_1">changes.html#version_3_23_1</a> + <a href="changes.html#version_3_34_0">changes.html#version_3_34_0</a> + <a href="changes.html#version_3_37_0">changes.html#version_3_37_0</a> + <a href="cli.html#miscfeatures">cli.html#miscfeatures</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> + <a href="releaselog/3_34_0.html">releaselog/3_34_0.html</a> + <a href="releaselog/3_34_1.html">releaselog/3_34_1.html</a> + <a href="releaselog/3_37_0.html">releaselog/3_37_0.html</a> + <a href="releaselog/3_37_1.html">releaselog/3_37_1.html</a> + <a href="releaselog/3_37_2.html">releaselog/3_37_2.html</a> +<li>generated column → <a href="changes.html#version_3_37_0">changes.html#version_3_37_0</a> + <a href="compile.html#omit_generated_columns">compile.html#omit_generated_columns</a> + <a href="deterministic.html">deterministic.html</a> + <a href="lang_altertable.html#altertabaddcol">lang_altertable.html#altertabaddcol</a> + <a href="lang_altertable.html#altertabdropcol">lang_altertable.html#altertabdropcol</a> + <a href="lang_createtable.html">lang_createtable.html</a> + <a href="lang_createtable.html#collateclause">lang_createtable.html#collateclause</a> + <a href="releaselog/3_37_0.html">releaselog/3_37_0.html</a> + <a href="releaselog/3_37_1.html">releaselog/3_37_1.html</a> + <a href="releaselog/3_37_2.html">releaselog/3_37_2.html</a> +<li>Generated columns → <a href="stricttables.html">stricttables.html</a> +<li>generated columns → <a href="c3ref/c_deterministic.html#sqlitedeterministic">c3ref/c_deterministic.html#sqlitedeterministic</a> + <a href="c3ref/c_deterministic.html#sqlitedirectonly">c3ref/c_deterministic.html#sqlitedirectonly</a> + <a href="c3ref/c_deterministic.html#sqliteinnocuous">c3ref/c_deterministic.html#sqliteinnocuous</a> + <a href="capi3ref.html#sqlitedeterministic">capi3ref.html#sqlitedeterministic</a> + <a href="capi3ref.html#sqlitedirectonly">capi3ref.html#sqlitedirectonly</a> + <a href="capi3ref.html#sqliteinnocuous">capi3ref.html#sqliteinnocuous</a> + <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="changes.html#version_3_41_2">changes.html#version_3_41_2</a> + <a href="lang_altertable.html#altertabaddcol">lang_altertable.html#altertabaddcol</a> + <a href="news.html">news.html</a> + <a href="pragma.html#pragma_table_info">pragma.html#pragma_table_info</a> + <a href="pragma.html#pragma_table_list">pragma.html#pragma_table_list</a> + <a href="pragma.html#pragma_table_xinfo">pragma.html#pragma_table_xinfo</a> + <a href="pragma.html#pragma_trusted_schema">pragma.html#pragma_trusted_schema</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> +<li>geopoly → <a href="changes.html#version_3_26_0">changes.html#version_3_26_0</a> + <a href="releaselog/3_26_0.html">releaselog/3_26_0.html</a> +<li>GEOPOLY → <a href="changes.html#version_3_44_0">changes.html#version_3_44_0</a> + <a href="releaselog/3_44_0.html">releaselog/3_44_0.html</a> + <a href="releaselog/3_44_1.html">releaselog/3_44_1.html</a> + <a href="releaselog/3_44_2.html">releaselog/3_44_2.html</a> +<li>Geopoly extension → <a href="compile.html#enable_geopoly">compile.html#enable_geopoly</a> +<li>Geopoly module → <a href="changes.html#version_3_25_0">changes.html#version_3_25_0</a> + <a href="releaselog/3_25_0.html">releaselog/3_25_0.html</a> + <a href="releaselog/3_25_1.html">releaselog/3_25_1.html</a> + <a href="releaselog/3_25_2.html">releaselog/3_25_2.html</a> + <a href="releaselog/3_25_3.html">releaselog/3_25_3.html</a> + <a href="vtab.html#xfindfunction">vtab.html#xfindfunction</a> +<li>geopoly_ccw → <a href="changes.html#version_3_26_0">changes.html#version_3_26_0</a> + <a href="geopoly.html#xform">geopoly.html#xform</a> + <a href="releaselog/3_26_0.html">releaselog/3_26_0.html</a> +<li>geopoly_overlap → <a href="vtab.html#xfindfunction">vtab.html#xfindfunction</a> +<li>geopoly_regular → <a href="changes.html#version_3_26_0">changes.html#version_3_26_0</a> + <a href="releaselog/3_26_0.html">releaselog/3_26_0.html</a> +<li>geopoly_within → <a href="vtab.html#xfindfunction">vtab.html#xfindfunction</a> +<li>get the canonical source code → <a href="amalgamation.html#amalgbuild">amalgamation.html#amalgbuild</a> +<li>GLOB → <a href="c3ref/c_limit_attached.html#sqlitelimitlikepatternlength">c3ref/c_limit_attached.html#sqlitelimitlikepatternlength</a> + <a href="c3ref/prepare.html">c3ref/prepare.html</a> + <a href="c3ref/strglob.html">c3ref/strglob.html</a> + <a href="capi3ref.html#sqlite3_prepare">capi3ref.html#sqlite3_prepare</a> + <a href="capi3ref.html#sqlite3_strglob">capi3ref.html#sqlite3_strglob</a> + <a href="capi3ref.html#sqlitelimitlikepatternlength">capi3ref.html#sqlitelimitlikepatternlength</a> + <a href="changes.html#version_3_10_0">changes.html#version_3_10_0</a> + <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="changes.html#version_3_16_0">changes.html#version_3_16_0</a> + <a href="compile.html#omit_like_optimization">compile.html#omit_like_optimization</a> + <a href="compile.html#rcmd">compile.html#rcmd</a> + <a href="fullsql.html">fullsql.html</a> + <a href="lang_corefunc.html#glob">lang_corefunc.html#glob</a> + <a href="limits.html#max_like_pattern_length">limits.html#max_like_pattern_length</a> + <a href="oldnews.html">oldnews.html</a> + <a href="optoverview.html#like_opt">optoverview.html#like_opt</a> + <a href="releaselog/3_10_0.html">releaselog/3_10_0.html</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="releaselog/3_16_0.html">releaselog/3_16_0.html</a> + <a href="releaselog/3_16_1.html">releaselog/3_16_1.html</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> + <a href="vfs.html#shim">vfs.html#shim</a> + <a href="vtab.html#xfindfunction">vtab.html#xfindfunction</a> +<li>glob → <a href="cli.html#sqlar">cli.html#sqlar</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="lang_expr.html#glob">lang_expr.html#glob</a> +<li>GROUP BY → <a href="lang_select.html#simpleselect">lang_select.html#simpleselect</a> +<li>GROUP BY clause → <a href="changes.html#version_3_39_0">changes.html#version_3_39_0</a> + <a href="releaselog/3_39_0.html">releaselog/3_39_0.html</a> + <a href="releaselog/3_39_1.html">releaselog/3_39_1.html</a> + <a href="releaselog/3_39_2.html">releaselog/3_39_2.html</a> + <a href="releaselog/3_39_3.html">releaselog/3_39_3.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> +<li>group_concat → <a href="changes.html#version_3_6_14_1">changes.html#version_3_6_14_1</a> + <a href="lang_aggfunc.html#aggfunclist">lang_aggfunc.html#aggfunclist</a> + <a href="releaselog/3_6_14_1.html">releaselog/3_6_14_1.html</a> +<li>GROUPS frames → <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> +<li>hard_heap_limit pragma → <a href="pragma.html#pragma_soft_heap_limit">pragma.html#pragma_soft_heap_limit</a> +<li>HAVE_ISNAN → <a href="compile.html#have_isnan">compile.html#have_isnan</a> +<li>HAVING clause → <a href="changes.html#version_3_39_0">changes.html#version_3_39_0</a> + <a href="releaselog/3_39_0.html">releaselog/3_39_0.html</a> + <a href="releaselog/3_39_1.html">releaselog/3_39_1.html</a> + <a href="releaselog/3_39_2.html">releaselog/3_39_2.html</a> + <a href="releaselog/3_39_3.html">releaselog/3_39_3.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> +<li>hazards of upgrading to the NGQP → <a href="oldnews.html">oldnews.html</a> +<li>hex → <a href="bindptr.html#ptrleak">bindptr.html#ptrleak</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="lang_corefunc.html#randomblob">lang_corefunc.html#randomblob</a> + <a href="lang_corefunc.html#unhex">lang_corefunc.html#unhex</a> +<li>hexadecimal integer literals → <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="compile.html#omit_hex_integer">compile.html#omit_hex_integer</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> +<li>hexadecimal integers → <a href="fullsql.html">fullsql.html</a> + <a href="lang_expr.html#castexpr">lang_expr.html#castexpr</a> + <a href="oldnews.html">oldnews.html</a> +<li>hidden column → <a href="dbpage.html">dbpage.html</a> + <a href="dbstat.html#dbstatagg">dbstat.html#dbstatagg</a> + <a href="fts3.html#hiddencol">fts3.html#hiddencol</a> + <a href="fts3.html#the_languageid_option">fts3.html#the_languageid_option</a> +<li>hidden columns → <a href="changes.html#version_3_26_0">changes.html#version_3_26_0</a> + <a href="compile.html#enable_hidden_columns">compile.html#enable_hidden_columns</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_select.html#tabfunc1">lang_select.html#tabfunc1</a> + <a href="pragma.html#pragma_table_info">pragma.html#pragma_table_info</a> + <a href="pragma.html#pragma_table_list">pragma.html#pragma_table_list</a> + <a href="pragma.html#pragma_table_xinfo">pragma.html#pragma_table_xinfo</a> + <a href="releaselog/3_26_0.html">releaselog/3_26_0.html</a> + <a href="vtab.html#tabfunc2">vtab.html#tabfunc2</a> +<li>high-reliability → <a href="index.html">index.html</a> +<li>Hipp → <a href="printf.html#comma">printf.html#comma</a> +<li>host parameter → <a href="c3ref/vtab_rhs_value.html">c3ref/vtab_rhs_value.html</a> + <a href="capi3ref.html#sqlite3_vtab_rhs_value">capi3ref.html#sqlite3_vtab_rhs_value</a> + <a href="vtab.html#colUsed">vtab.html#colUsed</a> +<li>hot journal → <a href="changes.html#version_3_13_0">changes.html#version_3_13_0</a> + <a href="howtocorrupt.html#delhotjrnl">howtocorrupt.html#delhotjrnl</a> + <a href="lockingv3.html#rollback">lockingv3.html#rollback</a> + <a href="releaselog/3_13_0.html">releaselog/3_13_0.html</a> + <a href="rescode.html#notice_recover_rollback">rescode.html#notice_recover_rollback</a> + <a href="rescode.html#readonly_rollback">rescode.html#readonly_rollback</a> + <a href="tclsqlite.html">tclsqlite.html</a> +<li>hot journal files → <a href="howtocorrupt.html#delhotjrnl">howtocorrupt.html#delhotjrnl</a> +<li>how collation is determined → <a href="lang_select.html#distinct">lang_select.html#distinct</a> +<li>How SQLite Works → <a href="eqp.html">eqp.html</a> +<li>how to compile → <a href="amalgamation.html">amalgamation.html</a> + <a href="cli.html#compiling">cli.html#compiling</a> + <a href="features.html">features.html</a> +<li>How To Compile SQLite → <a href="amalgamation.html#amalgbuild">amalgamation.html#amalgbuild</a> + <a href="download.html#srctree">download.html#srctree</a> + <a href="fts5.html#compiling_and_using_fts5">fts5.html#compiling_and_using_fts5</a> + <a href="getthecode.html">getthecode.html</a> + <a href="quickstart.html">quickstart.html</a> +<li>how to corrupt → <a href="atomiccommit.html#sect_9_0">atomiccommit.html#sect_9_0</a> + <a href="fts3.html#*fts4ickcmd">fts3.html#*fts4ickcmd</a> + <a href="recovery.html">recovery.html</a> +<li>How To Corrupt Your Database Files → <a href="rescode.html#corrupt">rescode.html#corrupt</a> + <a href="useovernet.html">useovernet.html</a> +<li>http://atulgawande.com/book/the-checklist-manifesto/ → <a href="testing.html#cklist">testing.html#cklist</a> +<li>http://clang-analyzer.llvm.org/ → <a href="testing.html#staticanalysis">testing.html#staticanalysis</a> +<li>http://code.google.com/android/ → <a href="famous.html">famous.html</a> +<li>http://community.intuit.com/posts/database-error-sqlite-error-code1 → <a href="famous.html">famous.html</a> +<li>http://dmalloc.com → <a href="malloc.html">malloc.html</a> +<li>http://docs.python.org/lib/module-sqlite3.html → <a href="famous.html">famous.html</a> +<li>http://en.wikipedia.org/wiki/ACID → <a href="about.html">about.html</a> + <a href="transactional.html">transactional.html</a> +<li>http://en.wikipedia.org/wiki/Charlotte,_North_Carolina → <a href="crew.html">crew.html</a> +<li>http://en.wikipedia.org/wiki/Coordinated_Universal_Time → <a href="lang_datefunc.html#tmdif">lang_datefunc.html#tmdif</a> +<li>http://en.wikipedia.org/wiki/Endianness → <a href="about.html">about.html</a> + <a href="onefile.html">onefile.html</a> +<li>http://en.wikipedia.org/wiki/Fuzz_testing → <a href="testing.html#fuzztesting">testing.html#fuzztesting</a> +<li>http://en.wikipedia.org/wiki/Gregorian_calendar → <a href="lang_datefunc.html#subsec">lang_datefunc.html#subsec</a> +<li>http://en.wikipedia.org/wiki/ISO_8601 → <a href="lang_datefunc.html">lang_datefunc.html</a> +<li>http://en.wikipedia.org/wiki/Julian_day → <a href="lang_datefunc.html">lang_datefunc.html</a> + <a href="lang_datefunc.html#jlndy">lang_datefunc.html#jlndy</a> + <a href="lang_datefunc.html#tmdif">lang_datefunc.html#tmdif</a> +<li>http://en.wikipedia.org/wiki/Kibibyte → <a href="oldnews.html">oldnews.html</a> +<li>http://en.wikipedia.org/wiki/Modified_Condition/Decision_Coverage → <a href="testing.html#mcdc">testing.html#mcdc</a> +<li>http://en.wikipedia.org/wiki/OpenDocument → <a href="affcase1.html">affcase1.html</a> +<li>http://en.wikipedia.org/wiki/Proleptic_Gregorian_calendar → <a href="lang_datefunc.html#jlndy">lang_datefunc.html#jlndy</a> +<li>http://en.wikipedia.org/wiki/Public_Domain → <a href="copyright.html">copyright.html</a> +<li>http://en.wikipedia.org/wiki/R-tree → <a href="rtree.html">rtree.html</a> +<li>http://en.wikipedia.org/wiki/Serializability → <a href="transactional.html">transactional.html</a> +<li>http://en.wikipedia.org/wiki/Syslog → <a href="errlog.html">errlog.html</a> +<li>http://en.wikipedia.org/wiki/Unix_time → <a href="lang_datefunc.html#tmshf">lang_datefunc.html#tmshf</a> +<li>http://en.wikipedia.org/wiki/UUID → <a href="changes.html#version_3_3_13">changes.html#version_3_3_13</a> + <a href="releaselog/3_3_13.html">releaselog/3_3_13.html</a> +<li>http://en.wikipedia.org/wiki/Zip_%28file_format%29 → <a href="affcase1.html">affcase1.html</a> +<li>http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32575 → <a href="changes.html#version_3_4_2">changes.html#version_3_4_2</a> + <a href="releaselog/3_4_2.html">releaselog/3_4_2.html</a> +<li>http://gcc.gnu.org/onlinedocs/gcc/Gcov.html → <a href="testing.html#coverage">testing.html#coverage</a> + <a href="th3.html">th3.html</a> +<li>http://geojson.org → <a href="geopoly.html">geopoly.html</a> +<li>http://geonames.usgs.gov/domestic/download_data.htm → <a href="spellfix1.html">spellfix1.html</a> +<li>http://git.savannah.gnu.org/cgit/readline.git?h=devel → <a href="qmplan.html">qmplan.html</a> +<li>http://heartbleed.com → <a href="malloc.html">malloc.html</a> +<li>http://lcamtuf.coredump.cx/afl/ → <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> +<li>http://linux.die.net/man/1/file → <a href="appfileformat.html">appfileformat.html</a> +<li>http://llvm.org/docs/LibFuzzer.html → <a href="testing.html#dbsqlfuzz">testing.html#dbsqlfuzz</a> + <a href="testing.html#slt">testing.html#slt</a> +<li>http://man.he.net/man3/fopen → <a href="about.html">about.html</a> + <a href="whentouse.html">whentouse.html</a> + <a href="whentouse.html#container">whentouse.html#container</a> +<li>http://man.he.net/man3/fread → <a href="whentouse.html#container">whentouse.html#container</a> +<li>http://man.he.net/man3/fwrite → <a href="whentouse.html#container">whentouse.html#container</a> +<li>http://mingw.org/wiki/msys → <a href="amalgamation.html#amalgbuild">amalgamation.html#amalgbuild</a> +<li>http://opengroup.org/onlinepubs/007908799/xsh/strftime.html → <a href="lang_datefunc.html#strftm">lang_datefunc.html#strftm</a> +<li>http://semver.org → <a href="versionnumbers.html">versionnumbers.html</a> +<li>http://semver.org/ → <a href="changes.html#version_3_9_0">changes.html#version_3_9_0</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_9_0.html">releaselog/3_9_0.html</a> + <a href="releaselog/3_9_1.html">releaselog/3_9_1.html</a> + <a href="releaselog/3_9_2.html">releaselog/3_9_2.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> +<li>http://System.Data.SQLite.org/ → <a href="oldnews.html">oldnews.html</a> +<li>http://thrysoee.dk/editline/ → <a href="qmplan.html">qmplan.html</a> +<li>http://tools.ietf.org/html/rfc3986 → <a href="uri.html">uri.html</a> +<li>http://turbotax.intuit.com/ → <a href="famous.html">famous.html</a> +<li>http://valgrind.org → <a href="faq.html#q17">faq.html#q17</a> + <a href="malloc.html">malloc.html</a> +<li>http://valgrind.org/ → <a href="oldnews.html">oldnews.html</a> + <a href="testing.html#valgrind">testing.html#valgrind</a> +<li>http://valgrind.org/docs/manual/cg-manual.html → <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="changes.html#version_3_8_7">changes.html#version_3_8_7</a> + <a href="cpu.html">cpu.html</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> + <a href="releaselog/3_8_7.html">releaselog/3_8_7.html</a> +<li>http://wiki.tcl-lang.org/21708 → <a href="faq.html#q25">faq.html#q25</a> +<li>http://wiki.tcl-lang.org/2364 → <a href="howtocompile.html#tcl">howtocompile.html#tcl</a> +<li>http://wiki.tcl-lang.org/2541 → <a href="howtocompile.html#tcl">howtocompile.html#tcl</a> +<li>http://wiki.tcl-lang.org/9830 → <a href="howtocompile.html#tcl">howtocompile.html#tcl</a> +<li>http://windows.microsoft.com/en-US/internet-explorer/products/ie/home → <a href="uri.html">uri.html</a> +<li>http://www.adobe.com/ → <a href="famous.html">famous.html</a> +<li>http://www.adobe.com/products/acrobat/readstep2.html → <a href="famous.html">famous.html</a> +<li>http://www.adobe.com/products/photoshoplightroom/ → <a href="famous.html">famous.html</a> +<li>http://www.airbus.com/ → <a href="famous.html">famous.html</a> +<li>http://www.apple.com/ → <a href="famous.html">famous.html</a> +<li>http://www.apple.com/itunes/ → <a href="famous.html">famous.html</a> +<li>http://www.apple.com/safari/ → <a href="uri.html">uri.html</a> +<li>http://www.apress.com → <a href="oldnews.html">oldnews.html</a> +<li>http://www.bentley.com/ → <a href="famous.html">famous.html</a> +<li>http://www.bloomberg.com/ → <a href="oldnews.html">oldnews.html</a> +<li>http://www.bosch.com/ → <a href="famous.html">famous.html</a> +<li>http://www.darwinsys.com/file/ → <a href="aff_short.html">aff_short.html</a> + <a href="fileformat2.html#appid">fileformat2.html#appid</a> + <a href="pragma.html#pragma_application_id">pragma.html#pragma_application_id</a> +<li>http://www.devio.us/ → <a href="oldnews.html">oldnews.html</a> +<li>http://www.dropbox.com/ → <a href="famous.html">famous.html</a> +<li>http://www.duke.edu/ → <a href="crew.html">crew.html</a> +<li>http://www.fossil-scm.org → <a href="privatebranch.html">privatebranch.html</a> +<li>http://www.fossil-scm.org/ → <a href="appfileformat.html">appfileformat.html</a> + <a href="changes.html#version_3_6_18">changes.html#version_3_6_18</a> + <a href="oldnews.html">oldnews.html</a> + <a href="privatebranch.html">privatebranch.html</a> + <a href="releaselog/3_6_18.html">releaselog/3_6_18.html</a> + <a href="th3.html">th3.html</a> +<li>http://www.fossil-scm.org/fossil/doc/tip/www/selfcheck.wiki → <a href="appfileformat.html">appfileformat.html</a> +<li>http://www.fossil-scm.org/index.html/doc/tip/www/quickstart.wiki → <a href="privatebranch.html">privatebranch.html</a> +<li>http://www.gatech.edu/ → <a href="crew.html">crew.html</a> +<li>http://www.ge.com/ → <a href="famous.html">famous.html</a> +<li>http://www.git-scm.org/ → <a href="privatebranch.html">privatebranch.html</a> +<li>http://www.google.com/chrome → <a href="famous.html">famous.html</a> +<li>http://www.google.com/chrome/ → <a href="uri.html">uri.html</a> +<li>http://www.intuit.com/ → <a href="famous.html">famous.html</a> +<li>http://www.libreoffice.org/ → <a href="affcase1.html">affcase1.html</a> +<li>http://www.mail-archive.com/sqlite-users%40sqlite.org/msg27326.html → <a href="famous.html">famous.html</a> +<li>http://www.mail-archive.com/sqlite-users%40sqlite.org/msg27332.html → <a href="famous.html">famous.html</a> +<li>http://www.mail-archive.com/sqlite-users%40sqlite.org/msg85350.html → <a href="oldnews.html">oldnews.html</a> +<li>http://www.mail-archive.com/sqlite-users@sqlite.org/msg16931.html → <a href="famous.html">famous.html</a> +<li>http://www.mcafee.com/ → <a href="famous.html">famous.html</a> +<li>http://www.mercurial-scm.org/ → <a href="sessionintro.html">sessionintro.html</a> +<li>http://www.microsoft.com/ → <a href="famous.html">famous.html</a> +<li>http://www.mingw.org/ → <a href="mingw.html">mingw.html</a> +<li>http://www.monotone.ca/ → <a href="privatebranch.html">privatebranch.html</a> +<li>http://www.mozilla.com/ → <a href="famous.html">famous.html</a> +<li>http://www.mozilla.com/en-US/firefox/new/ → <a href="uri.html">uri.html</a> +<li>http://www.mozilla.com/thunderbird/ → <a href="famous.html">famous.html</a> +<li>http://www.mozilla.org/ → <a href="oldnews.html">oldnews.html</a> +<li>http://www.nds-association.org/ → <a href="famous.html">famous.html</a> +<li>http://www.opera.com/ → <a href="uri.html">uri.html</a> +<li>http://www.oracle.com/database/index.html → <a href="about.html">about.html</a> +<li>http://www.paulgraham.com/ → <a href="version3.html">version3.html</a> +<li>http://www.paulgraham.com/acl.html → <a href="version3.html">version3.html</a> +<li>http://www.php.net/ → <a href="famous.html">famous.html</a> +<li>http://www.postgresql.org/ → <a href="changes.html#version_1_0">changes.html#version_1_0</a> +<li>http://www.quickbooks.com/ → <a href="famous.html">famous.html</a> +<li>http://www.realbasic.com/ → <a href="famous.html">famous.html</a> +<li>http://www.rfc-editor.org/rfc/rfc7159.txt → <a href="oldnews.html">oldnews.html</a> +<li>http://www.selenic.com/mercurial/wiki/ → <a href="privatebranch.html">privatebranch.html</a> +<li>http://www.stunnel.org/ → <a href="howtocorrupt.html#stalefd">howtocorrupt.html#stalefd</a> +<li>http://www.symbian.com/ → <a href="oldnews.html">oldnews.html</a> +<li>http://www.tcl-lang.org → <a href="quickstart.html">quickstart.html</a> + <a href="tclsqlite.html">tclsqlite.html</a> + <a href="undoredo.html">undoredo.html</a> +<li>http://www.tcl-lang.org/ → <a href="amalgamation.html#amalgbuild">amalgamation.html#amalgbuild</a> + <a href="lang_expr.html#varparam">lang_expr.html#varparam</a> + <a href="testing.html#tcl">testing.html#tcl</a> +<li>http://www.tcl-lang.org/cgi-bin/tct/tip/322.html → <a href="changes.html#version_3_6_19">changes.html#version_3_6_19</a> + <a href="releaselog/3_6_19.html">releaselog/3_6_19.html</a> +<li>http://www.tcl-lang.org/community/tcl2004/ → <a href="oldnews.html">oldnews.html</a> +<li>http://www.tcl-lang.org/doc/tea/ → <a href="tclsqlite.html">tclsqlite.html</a> +<li>http://www.tcl.tk → <a href="compile.html#tclapi">compile.html#tclapi</a> +<li>http://www.tcl.tk/ → <a href="sqlanalyze.html">sqlanalyze.html</a> + <a href="th3.html">th3.html</a> +<li>http://www.valgrind.org/ → <a href="qmplan.html">qmplan.html</a> +<li>http://www.w3c.org/TR/NOTE-datetime → <a href="lang_datefunc.html#tmdif">lang_datefunc.html#tmdif</a> +<li>http://www.xojo.com/ → <a href="famous.html">famous.html</a> +<li>http://zlib.net/ → <a href="sqlar.html">sqlar.html</a> +<li>https://airsdk.harman.com → <a href="famous.html">famous.html</a> +<li>https://aws.amazon.com/s3/ → <a href="serverless.html">serverless.html</a> +<li>https://blog.regehr.org/archives/1576 → <a href="assert.html">assert.html</a> +<li>https://code.facebook.com/posts/313033472212144/debugging-file-corruption-on-ios/ → <a href="howtocorrupt.html#stalefd">howtocorrupt.html#stalefd</a> +<li>https://code.facebook.com/projects/658950180885092 → <a href="famous.html">famous.html</a> +<li>https://core.tcl.tk/ → <a href="qmplan.html">qmplan.html</a> +<li>https://developer.mozilla.org/en-US/docs/Glossary/Cross-site_scripting → <a href="cves.html#cvetab">cves.html#cvetab</a> +<li>https://developers.google.com/open-source/osa#2005-google-oreilly-open-source-award-winners → <a href="oldnews.html">oldnews.html</a> +<li>https://digitalocean.com → <a href="qmplan.html">qmplan.html</a> +<li>https://docs.microsoft.com/en-us/azure/cosmos-db/serverless-computing-database → <a href="serverless.html">serverless.html</a> +<li>https://en.wikipedia.org/wiki/Abstract_syntax_tree → <a href="howitworks.html">howitworks.html</a> +<li>https://en.wikipedia.org/wiki/Artificial_intelligence → <a href="queryplanner.html">queryplanner.html</a> +<li>https://en.wikipedia.org/wiki/Assert.h → <a href="assert.html">assert.html</a> +<li>https://en.wikipedia.org/wiki/Berkeley_DB → <a href="howitworks.html">howitworks.html</a> +<li>https://en.wikipedia.org/wiki/Cmd.exe → <a href="changes.html#version_3_10_0">changes.html#version_3_10_0</a> + <a href="releaselog/3_10_0.html">releaselog/3_10_0.html</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> +<li>https://en.wikipedia.org/wiki/Database_index#Clustered → <a href="withoutrowid.html">withoutrowid.html</a> +<li>https://en.wikipedia.org/wiki/Database_transaction → <a href="howitworks.html">howitworks.html</a> +<li>https://en.wikipedia.org/wiki/Declarative_programming → <a href="howitworks.html">howitworks.html</a> +<li>https://en.wikipedia.org/wiki/DO-178B → <a href="hirely.html">hirely.html</a> + <a href="qmplan.html">qmplan.html</a> + <a href="th3.html">th3.html</a> +<li>https://en.wikipedia.org/wiki/F2FS → <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="compile.html#enable_batch_atomic_write">compile.html#enable_batch_atomic_write</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> +<li>https://en.wikipedia.org/wiki/GNU_bison → <a href="lemon.html">lemon.html</a> +<li>https://en.wikipedia.org/wiki/Grey_hat → <a href="news.html">news.html</a> +<li>https://en.wikipedia.org/wiki/Hash_join → <a href="optoverview.html#hashjoin">optoverview.html#hashjoin</a> +<li>https://en.wikipedia.org/wiki/Imperative_programming → <a href="howitworks.html">howitworks.html</a> +<li>https://en.wikipedia.org/wiki/Information_schema → <a href="pragma.html#pragfunc">pragma.html#pragfunc</a> +<li>https://en.wikipedia.org/wiki/Julian_day → <a href="quirks.html">quirks.html</a> +<li>https://en.wikipedia.org/wiki/LALR_parser → <a href="howitworks.html">howitworks.html</a> +<li>https://en.wikipedia.org/wiki/Library_(computing) → <a href="howitworks.html">howitworks.html</a> +<li>https://en.wikipedia.org/wiki/Linus%27s_law → <a href="testing.html#3pfuzz">testing.html#3pfuzz</a> +<li>https://en.wikipedia.org/wiki/Modified_condition/decision_coverage → <a href="th3.html">th3.html</a> +<li>https://en.wikipedia.org/wiki/Mutation_testing → <a href="testing.html#mutationtests">testing.html#mutationtests</a> +<li>https://en.wikipedia.org/wiki/Patch_(Unix) → <a href="sessionintro.html">sessionintro.html</a> +<li>https://en.wikipedia.org/wiki/Recursive_descent_parser → <a href="compile.html#json_max_depth">compile.html#json_max_depth</a> +<li>https://en.wikipedia.org/wiki/Robustness_principle → <a href="lang_select.html#nonstd">lang_select.html#nonstd</a> + <a href="quirks.html#dblquote">quirks.html#dblquote</a> +<li>https://en.wikipedia.org/wiki/RocksDB → <a href="howitworks.html">howitworks.html</a> +<li>https://en.wikipedia.org/wiki/ROT13 → <a href="loadext.html#write">loadext.html#write</a> +<li>https://en.wikipedia.org/wiki/RPM_Package_Manager → <a href="famous.html">famous.html</a> +<li>https://en.wikipedia.org/wiki/Rule_of_Saint_Benedict → <a href="codeofethics.html">codeofethics.html</a> +<li>https://en.wikipedia.org/wiki/Scalable_Vector_Graphics → <a href="geopoly.html">geopoly.html</a> + <a href="geopoly.html#gsvg">geopoly.html#gsvg</a> +<li>https://en.wikipedia.org/wiki/SHA-3 → <a href="cli.html#sha3sum">cli.html#sha3sum</a> +<li>https://en.wikipedia.org/wiki/SQL → <a href="howitworks.html">howitworks.html</a> +<li>https://en.wikipedia.org/wiki/SQL_injection → <a href="cves.html#cvetab">cves.html#cvetab</a> +<li>https://en.wikipedia.org/wiki/Symbian → <a href="sharedcache.html#dontuse">sharedcache.html#dontuse</a> + <a href="th3.html">th3.html</a> +<li>https://en.wikipedia.org/wiki/Tar_(computing) → <a href="sqlar.html">sqlar.html</a> +<li>https://en.wikipedia.org/wiki/Tcl → <a href="vtablist.html">vtablist.html</a> +<li>https://en.wikipedia.org/wiki/Web_SQL_Database → <a href="bindptr.html">bindptr.html</a> +<li>https://en.wikipedia.org/wiki/Yacc → <a href="lemon.html">lemon.html</a> +<li>https://en.wikipedia.org/wiki/Zip_%28file_format%29 → <a href="zipfile.html">zipfile.html</a> +<li>https://en.wikipedia.org/wiki/Zip_(file_format) → <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> + <a href="sqlar.html">sqlar.html</a> + <a href="vtablist.html">vtablist.html</a> +<li>https://forums.mcafee.com/t5/WebAdvisor/SQLite-Temporary-Files/m-p/19512 → <a href="famous.html">famous.html</a> +<li>https://fossil-scm.org → <a href="qmplan.html">qmplan.html</a> +<li>https://fossil-scm.org/ → <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="flextypegood.html">flextypegood.html</a> + <a href="howtocorrupt.html#stalefd">howtocorrupt.html#stalefd</a> + <a href="qmplan.html">qmplan.html</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> + <a href="sqlar.html#dbasobj">sqlar.html#dbasobj</a> + <a href="vtablist.html">vtablist.html</a> + <a href="whynotgit.html">whynotgit.html</a> +<li>https://fossil-scm.org/forum → <a href="qmplan.html">qmplan.html</a> +<li>https://fossil-scm.org/forum/forumpost/c51b9a1169 → <a href="howtocorrupt.html#stalefd">howtocorrupt.html#stalefd</a> +<li>https://fossil-scm.org/fossil → <a href="whynotgit.html">whynotgit.html</a> +<li>https://fossil-scm.org/fossil/doc/trunk/www/checkin_names.wiki → <a href="whynotgit.html">whynotgit.html</a> +<li>https://fossil-scm.org/fossil/doc/trunk/www/delta_format.wiki → <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> +<li>https://fossil-scm.org/fossil/doc/trunk/www/fossil-v-git.wiki → <a href="whynotgit.html">whynotgit.html</a> +<li>https://fossil-scm.org/fossil/doc/trunk/www/permutedindex.html → <a href="whynotgit.html">whynotgit.html</a> +<li>https://fossil-scm.org/fossil/doc/trunk/www/webpage-ex.md → <a href="whynotgit.html">whynotgit.html</a> +<li>https://fossil-scm.org/fossil/file/src/foci.c → <a href="vtablist.html">vtablist.html</a> +<li>https://fossil-scm.org/fossil/uv/download.html → <a href="whynotgit.html">whynotgit.html</a> +<li>https://gcc.gnu.org/onlinedocs/gcc/Gcov.html → <a href="qmplan.html">qmplan.html</a> + <a href="testing.html#mcdc">testing.html#mcdc</a> +<li>https://git-man-page-generator.lokaltog.net/ → <a href="whynotgit.html">whynotgit.html</a> +<li>https://git-scm.com → <a href="sessionintro.html">sessionintro.html</a> +<li>https://git-scm.org → <a href="whynotgit.html">whynotgit.html</a> +<li>https://github.com/antirez/linenoise → <a href="changes.html#version_3_8_8_3">changes.html#version_3_8_8_3</a> + <a href="qmplan.html">qmplan.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> +<li>https://github.com/chrisdavies/dbench → <a href="fasterthanfs.html">fasterthanfs.html</a> +<li>https://github.com/facebook/osquery → <a href="vtablist.html">vtablist.html</a> +<li>https://github.com/google/fuzzing/blob/master/docs/structure-aware-fuzzing.md → <a href="testing.html#dbsqlfuzz">testing.html#dbsqlfuzz</a> +<li>https://github.com/google/fuzzing/blob/master/docs/structure-aware-fuzzing.md#user-content-example-sqlite → <a href="testing.html#dbsqlfuzz">testing.html#dbsqlfuzz</a> +<li>https://github.com/google/oss-fuzz → <a href="changes.html#version_3_16_2">changes.html#version_3_16_2</a> + <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> + <a href="testing.html#ossfuzz">testing.html#ossfuzz</a> +<li>https://github.com/libfuse/libfuse → <a href="sqlar.html#cltools">sqlar.html#cltools</a> +<li>https://github.com/sqlite/sqlite → <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> + <a href="whynotgit.html">whynotgit.html</a> +<li>https://github.com/sqlite/sqlite/ → <a href="qmplan.html">qmplan.html</a> +<li>https://github.com/sqlite/sqlite/commits/master → <a href="whynotgit.html">whynotgit.html</a> +<li>https://github.com/sqlite/sqlite/commits/prefer-coroutine-sort-subquery → <a href="whynotgit.html">whynotgit.html</a> +<li>https://github.com/sqlite/sqlite/network → <a href="whynotgit.html">whynotgit.html</a> +<li>https://gitup.co/ → <a href="whynotgit.html">whynotgit.html</a> +<li>https://golang.org → <a href="assert.html">assert.html</a> +<li>https://golang.org/doc/faq#assertions → <a href="assert.html">assert.html</a> +<li>https://golangexample.com/an-unscientific-benchmark-of-sqlite-vs-the-file-system-btrfs/ → <a href="fasterthanfs.html">fasterthanfs.html</a> +<li>https://icu.unicode.org → <a href="changes.html#version_3_4_0">changes.html#version_3_4_0</a> + <a href="changes.html#version_3_4_1">changes.html#version_3_4_1</a> + <a href="compile.html#enable_icu">compile.html#enable_icu</a> + <a href="quirks.html">quirks.html</a> + <a href="releaselog/3_4_0.html">releaselog/3_4_0.html</a> + <a href="releaselog/3_4_1.html">releaselog/3_4_1.html</a> +<li>https://json.org → <a href="json1.html#howtocompile">json1.html#howtocompile</a> + <a href="json1.html#json5">json1.html#json5</a> +<li>https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/start-process?view=powershell-7.3 → <a href="uri.html">uri.html</a> +<li>https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/start → <a href="uri.html">uri.html</a> +<li>https://link.springer.com/book/10.1007/978-1-4302-3226-1 → <a href="oldnews.html">oldnews.html</a> +<li>https://link.springer.com/referenceworkentry/10.1007/978-0-387-35973-1_1151 → <a href="rtree.html">rtree.html</a> +<li>https://linode.com → <a href="qmplan.html">qmplan.html</a> +<li>https://news.ycombinator.com/item?id=16585120 → <a href="whyc.html">whyc.html</a> +<li>https://news.ycombinator.com/item?id=16806955 → <a href="whynotgit.html">whynotgit.html</a> +<li>https://news.ycombinator.com/item?id=17964243 → <a href="news.html">news.html</a> +<li>https://news.ycombinator.com/item?id=33975635 → <a href="whentouse.html#website">whentouse.html#website</a> +<li>https://odin.cse.buffalo.edu/papers/2015/TPCTC-sqlite-final.pdf → <a href="sqlar.html#dbasobj">sqlar.html#dbasobj</a> +<li>https://osquery.readthedocs.io/en/stable/ → <a href="vtablist.html">vtablist.html</a> +<li>https://postgresql.org → <a href="json1.html#jsonbx">json1.html#jsonbx</a> +<li>https://spec.json5.org/ → <a href="json1.html#howtocompile">json1.html#howtocompile</a> + <a href="json1.html#json5">json1.html#json5</a> +<li>https://spec.json5.org/#introduction → <a href="json1.html#json5">json1.html#json5</a> +<li>https://sqlite.org/docsrc/finfo/pages/whynotgit.in → <a href="whynotgit.html">whynotgit.html</a> +<li>https://sqlite.org/forum/about → <a href="cves.html#cvetab">cves.html#cvetab</a> +<li>https://sqlite.org/forum/forum → <a href="flextypegood.html">flextypegood.html</a> + <a href="quirks.html">quirks.html</a> +<li>https://sqlite.org/forum/forumpost/02d7be94d7 → <a href="datatype3.html#affcompoundview">datatype3.html#affcompoundview</a> +<li>https://sqlite.org/forum/forumpost/0a539c76db3b9e29 → <a href="changes.html#version_3_41_0">changes.html#version_3_41_0</a> + <a href="releaselog/3_41_0.html">releaselog/3_41_0.html</a> + <a href="releaselog/3_41_1.html">releaselog/3_41_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> +<li>https://sqlite.org/forum/forumpost/140a67d3d2 → <a href="changes.html#version_3_35_2">changes.html#version_3_35_2</a> + <a href="releaselog/3_35_2.html">releaselog/3_35_2.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> +<li>https://sqlite.org/forum/forumpost/174afeae5734d42d → <a href="changes.html#version_3_39_1">changes.html#version_3_39_1</a> + <a href="releaselog/3_39_1.html">releaselog/3_39_1.html</a> + <a href="releaselog/3_39_2.html">releaselog/3_39_2.html</a> + <a href="releaselog/3_39_3.html">releaselog/3_39_3.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> +<li>https://sqlite.org/forum/forumpost/2568d1f6e6 → <a href="changes.html#version_3_45_0">changes.html#version_3_45_0</a> + <a href="releaselog/3_45_0.html">releaselog/3_45_0.html</a> + <a href="releaselog/3_45_1.html">releaselog/3_45_1.html</a> +<li>https://sqlite.org/forum/forumpost/3607259d3c → <a href="changes.html#version_3_39_2">changes.html#version_3_39_2</a> + <a href="releaselog/3_39_2.html">releaselog/3_39_2.html</a> + <a href="releaselog/3_39_3.html">releaselog/3_39_3.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> +<li>https://sqlite.org/forum/forumpost/53de8864ba114bf6 → <a href="cves.html#cvetab">cves.html#cvetab</a> +<li>https://sqlite.org/forum/forumpost/58540ce22dcd5fdcd → <a href="changes.html#version_3_35_3">changes.html#version_3_35_3</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> +<li>https://sqlite.org/forum/forumpost/6f0958b03b → <a href="changes.html#version_3_45_0">changes.html#version_3_45_0</a> + <a href="releaselog/3_45_0.html">releaselog/3_45_0.html</a> + <a href="releaselog/3_45_1.html">releaselog/3_45_1.html</a> +<li>https://sqlite.org/forum/forumpost/719a11e1314d1c70 → <a href="changes.html#version_3_39_3">changes.html#version_3_39_3</a> + <a href="releaselog/3_39_3.html">releaselog/3_39_3.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> +<li>https://sqlite.org/forum/forumpost/7481d2a6df8980ff → <a href="lang_select.html#bareagg">lang_select.html#bareagg</a> +<li>https://sqlite.org/forum/forumpost/9b9e4716c0d7bbd1 → <a href="changes.html#version_3_39_3">changes.html#version_3_39_3</a> + <a href="releaselog/3_39_3.html">releaselog/3_39_3.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> +<li>https://sqlite.org/forum/forumpost/9ed02582fe → <a href="changes.html#version_3_35_3">changes.html#version_3_35_3</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> +<li>https://sqlite.org/forum/forumpost/aa5a0431c99e631 → <a href="changes.html#version_3_35_3">changes.html#version_3_35_3</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> +<li>https://sqlite.org/forum/forumpost/afbbcb5b72 → <a href="changes.html#version_3_35_3">changes.html#version_3_35_3</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> +<li>https://sqlite.org/forum/forumpost/b03d86f9516cb3a2 → <a href="changes.html#version_3_37_2">changes.html#version_3_37_2</a> + <a href="howtocorrupt.html#svptbug">howtocorrupt.html#svptbug</a> + <a href="releaselog/3_37_2.html">releaselog/3_37_2.html</a> +<li>https://sqlite.org/forum/forumpost/b25edc1d4662ebca → <a href="cves.html#cvetab">cves.html#cvetab</a> +<li>https://sqlite.org/forum/forumpost/b52a020ce4 → <a href="changes.html#version_3_35_3">changes.html#version_3_35_3</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> +<li>https://sqlite.org/forum/forumpost/f935c4708dd528d9 → <a href="cves.html#cvetab">cves.html#cvetab</a> +<li>https://sqlite.org/optoverview.html#flattening → <a href="news.html">news.html</a> +<li>https://sqlite.org/sqlar → <a href="sqlar.html#cltools">sqlar.html#cltools</a> +<li>https://sqlite.org/src → <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="cksumvfs.html">cksumvfs.html</a> + <a href="cli.html#arinsup">cli.html#arinsup</a> + <a href="index.html">index.html</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> + <a href="zipfile.html">zipfile.html</a> +<li>https://sqlite.org/src/artifact/18a53540aa3?ln=1679-1680 → <a href="assert.html">assert.html</a> +<li>https://sqlite.org/src/artifact/18a53540aa3?ln=4371 → <a href="assert.html">assert.html</a> +<li>https://sqlite.org/src/artifact/18a53540aa3?ln=5512-5516 → <a href="assert.html">assert.html</a> +<li>https://sqlite.org/src/artifact/18a53540aa3?ln=5766 → <a href="assert.html">assert.html</a> +<li>https://sqlite.org/src/artifact/c1e97e4c6f?ln=1048 → <a href="assert.html">assert.html</a> +<li>https://sqlite.org/src/artifact/c1e97e4c6f?ln=157 → <a href="assert.html">assert.html</a> +<li>https://sqlite.org/src/artifact/c1e97e4c6f?ln=2130-2138 → <a href="assert.html">assert.html</a> +<li>https://sqlite.org/src/dir/ext/icu → <a href="changes.html#version_3_39_4">changes.html#version_3_39_4</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> +<li>https://sqlite.org/src/dir?ci=trunk&type=tree → <a href="vtab.html#customvtab">vtab.html#customvtab</a> +<li>https://sqlite.org/src/doc/trunk/doc/lemon.html → <a href="lemon.html">lemon.html</a> +<li>https://sqlite.org/src/doc/trunk/tool/dbtotxt.md → <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> +<li>https://sqlite.org/src/ext/checklist/top/index → <a href="qmplan.html">qmplan.html</a> +<li>https://sqlite.org/src/file/ext/fts5/fts5parse.y → <a href="lemon.html">lemon.html</a> +<li>https://sqlite.org/src/file/ext/misc → <a href="cli.html#arinsup">cli.html#arinsup</a> + <a href="uintcseq.html">uintcseq.html</a> +<li>https://sqlite.org/src/file/ext/misc/amatch.c → <a href="vtablist.html">vtablist.html</a> +<li>https://sqlite.org/src/file/ext/misc/anycollseq.c → <a href="changes.html#version_3_19_0">changes.html#version_3_19_0</a> + <a href="releaselog/3_19_0.html">releaselog/3_19_0.html</a> + <a href="releaselog/3_19_1.html">releaselog/3_19_1.html</a> + <a href="releaselog/3_19_2.html">releaselog/3_19_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> +<li>https://sqlite.org/src/file/ext/misc/appendvfs.c → <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="cli.html#arinsup">cli.html#arinsup</a> + <a href="cli.html#sqlar">cli.html#sqlar</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> +<li>https://sqlite.org/src/file/ext/misc/btreeinfo.c → <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> + <a href="vtablist.html">vtablist.html</a> +<li>https://sqlite.org/src/file/ext/misc/cksumvfs.c → <a href="cksumvfs.html">cksumvfs.html</a> +<li>https://sqlite.org/src/file/ext/misc/closure.c → <a href="vtablist.html">vtablist.html</a> +<li>https://sqlite.org/src/file/ext/misc/csv.c → <a href="vtab.html#customvtab">vtab.html#customvtab</a> +<li>https://sqlite.org/src/file/ext/misc/dbdata.c → <a href="changes.html#version_3_29_0">changes.html#version_3_29_0</a> + <a href="releaselog/3_29_0.html">releaselog/3_29_0.html</a> +<li>https://sqlite.org/src/file/ext/misc/eval.c → <a href="changes.html#version_3_23_1">changes.html#version_3_23_1</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +<li>https://sqlite.org/src/file/ext/misc/explain.c → <a href="changes.html#version_3_26_0">changes.html#version_3_26_0</a> + <a href="releaselog/3_26_0.html">releaselog/3_26_0.html</a> +<li>https://sqlite.org/src/file/ext/misc/fileio.c → <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="cli.html#arinsup">cli.html#arinsup</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> + <a href="vtablist.html">vtablist.html</a> +<li>https://sqlite.org/src/file/ext/misc/fossildelta.c → <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> +<li>https://sqlite.org/src/file/ext/misc/memstat.c → <a href="memstat.html">memstat.html</a> +<li>https://sqlite.org/src/file/ext/misc/normalize.c → <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +<li>https://sqlite.org/src/file/ext/misc/regexp.c → <a href="changes.html#version_3_36_0">changes.html#version_3_36_0</a> + <a href="releaselog/3_36_0.html">releaselog/3_36_0.html</a> +<li>https://sqlite.org/src/file/ext/misc/remember.c → <a href="bindptr.html#ptrtyp">bindptr.html#ptrtyp</a> +<li>https://sqlite.org/src/file/ext/misc/series.c → <a href="vtab.html#customvtab">vtab.html#customvtab</a> +<li>https://sqlite.org/src/file/ext/misc/sqlar.c → <a href="cli.html#arinsup">cli.html#arinsup</a> + <a href="sqlar.html#cltools">sqlar.html#cltools</a> + <a href="sqlar.html#dbasobj">sqlar.html#dbasobj</a> +<li>https://sqlite.org/src/file/ext/misc/stmt.c → <a href="stmt.html">stmt.html</a> +<li>https://sqlite.org/src/file/ext/misc/templatevtab.c → <a href="vtab.html#customvtab">vtab.html#customvtab</a> + <a href="vtablist.html">vtablist.html</a> +<li>https://sqlite.org/src/file/ext/misc/uint.c → <a href="uintcseq.html">uintcseq.html</a> +<li>https://sqlite.org/src/file/ext/misc/unionvtab.c → <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> + <a href="unionvtab.html">unionvtab.html</a> +<li>https://sqlite.org/src/file/ext/misc/uuid.c → <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> +<li>https://sqlite.org/src/file/ext/misc/vfsstat.c → <a href="loadext.html#persist">loadext.html#persist</a> + <a href="vtablist.html">vtablist.html</a> +<li>https://sqlite.org/src/file/ext/misc/vtablog.c → <a href="vtablist.html">vtablist.html</a> +<li>https://sqlite.org/src/file/ext/misc/wholenumber.c → <a href="changes.html#version_3_35_3">changes.html#version_3_35_3</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> + <a href="vtablist.html">vtablist.html</a> +<li>https://sqlite.org/src/file/ext/misc/zipfile.c → <a href="zipfile.html">zipfile.html</a> +<li>https://sqlite.org/src/file/ext/recover/sqlite3recover.h → <a href="recovery.html">recovery.html</a> +<li>https://sqlite.org/src/file/ext/session/changesetfuzz.c → <a href="changes.html#version_3_26_0">changes.html#version_3_26_0</a> + <a href="releaselog/3_26_0.html">releaselog/3_26_0.html</a> +<li>https://sqlite.org/src/file/src/dbpage.c → <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> +<li>https://sqlite.org/src/file/src/json.c → <a href="vtab.html#customvtab">vtab.html#customvtab</a> +<li>https://sqlite.org/src/file/src/parse.y → <a href="lemon.html">lemon.html</a> +<li>https://sqlite.org/src/file/src/printf.c → <a href="printf.html#comma">printf.html#comma</a> +<li>https://sqlite.org/src/file/src/shell.c.in → <a href="c_interface.html">c_interface.html</a> + <a href="cli.html#compiling">cli.html#compiling</a> + <a href="cli.html#param">cli.html#param</a> + <a href="completion.html">completion.html</a> +<li>https://sqlite.org/src/file/src/tclsqlite.c → <a href="c_interface.html">c_interface.html</a> +<li>https://sqlite.org/src/file/src/test_tclvar.c → <a href="vtablist.html">vtablist.html</a> +<li>https://sqlite.org/src/file/test/speedtest1.c → <a href="cpu.html">cpu.html</a> +<li>https://sqlite.org/src/file/tool/cg_anno.tcl → <a href="cpu.html#microopt">cpu.html#microopt</a> +<li>https://sqlite.org/src/file/tool/lemon.c → <a href="lemon.html">lemon.html</a> +<li>https://sqlite.org/src/file/tool/lempar.c → <a href="lemon.html">lemon.html</a> +<li>https://sqlite.org/src/file/tool/speed-check.sh → <a href="cpu.html">cpu.html</a> + <a href="cpu.html#microopt">cpu.html#microopt</a> +<li>https://sqlite.org/src/finfo?name=src/shell.c → <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> +<li>https://sqlite.org/src/info/0249d9aecf69948d → <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +<li>https://sqlite.org/src/info/04925dee41a21f → <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> +<li>https://sqlite.org/src/info/093420fc0eb7cba7 → <a href="changes.html#version_3_23_1">changes.html#version_3_23_1</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +<li>https://sqlite.org/src/info/0c4df46116e90f92 → <a href="changes.html#version_3_14_2">changes.html#version_3_14_2</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> +<li>https://sqlite.org/src/info/123c9ba32130a6c9 → <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> +<li>https://sqlite.org/src/info/132994c8b1063bfb → <a href="changes.html#version_3_35_4">changes.html#version_3_35_4</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> +<li>https://sqlite.org/src/info/199df4168c → <a href="changes.html#version_3_14_2">changes.html#version_3_14_2</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> +<li>https://sqlite.org/src/info/1a84668dcfdebaf12415d → <a href="changes.html#version_3_25_3">changes.html#version_3_25_3</a> + <a href="releaselog/3_25_3.html">releaselog/3_25_3.html</a> +<li>https://sqlite.org/src/info/1e39b966ae9ee739 → <a href="changes.html#version_3_23_1">changes.html#version_3_23_1</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +<li>https://sqlite.org/src/info/2b8aed9f7c9e61e8 → <a href="changes.html#version_3_23_1">changes.html#version_3_23_1</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +<li>https://sqlite.org/src/info/2c6c8689fb5f3d2f → <a href="changes.html#version_3_35_2">changes.html#version_3_35_2</a> + <a href="releaselog/3_35_2.html">releaselog/3_35_2.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> +<li>https://sqlite.org/src/info/30475c820dc5ab8a8?ln=999,1026 → <a href="recovery.html">recovery.html</a> +<li>https://sqlite.org/src/info/3b4450072511e621 → <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> +<li>https://sqlite.org/src/info/4ba5abf65c5b0f9a96a7a → <a href="changes.html#version_3_24_0">changes.html#version_3_24_0</a> + <a href="releaselog/3_24_0.html">releaselog/3_24_0.html</a> +<li>https://sqlite.org/src/info/510cde277783b5fb → <a href="changes.html#version_3_25_1">changes.html#version_3_25_1</a> + <a href="releaselog/3_25_1.html">releaselog/3_25_1.html</a> + <a href="releaselog/3_25_2.html">releaselog/3_25_2.html</a> + <a href="releaselog/3_25_3.html">releaselog/3_25_3.html</a> +<li>https://sqlite.org/src/info/5232c9777fe4fb13 → <a href="changes.html#version_3_37_2">changes.html#version_3_37_2</a> + <a href="releaselog/3_37_2.html">releaselog/3_37_2.html</a> +<li>https://sqlite.org/src/info/61fe9745 → <a href="changes.html#version_3_18_2">changes.html#version_3_18_2</a> + <a href="changes.html#version_3_19_0">changes.html#version_3_19_0</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> + <a href="releaselog/3_19_0.html">releaselog/3_19_0.html</a> + <a href="releaselog/3_19_1.html">releaselog/3_19_1.html</a> + <a href="releaselog/3_19_2.html">releaselog/3_19_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> +<li>https://sqlite.org/src/info/65eb38f6e46de8c75e188a17ec → <a href="changes.html#version_3_25_3">changes.html#version_3_25_3</a> + <a href="releaselog/3_25_3.html">releaselog/3_25_3.html</a> +<li>https://sqlite.org/src/info/69d642332d25aa3b7315a6d385 → <a href="changes.html#version_3_25_3">changes.html#version_3_25_3</a> + <a href="releaselog/3_25_3.html">releaselog/3_25_3.html</a> +<li>https://sqlite.org/src/info/6ee8cb6ae5 → <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> +<li>https://sqlite.org/src/info/73c2b50211d3ae26 → <a href="changes.html#version_3_37_2">changes.html#version_3_37_2</a> + <a href="releaselog/3_37_2.html">releaselog/3_37_2.html</a> +<li>https://sqlite.org/src/info/7486aa54b968e9b → <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> +<li>https://sqlite.org/src/info/7486aa54b968e9b5 → <a href="changes.html#version_3_20_1">changes.html#version_3_20_1</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> +<li>https://sqlite.org/src/info/77b5b4235c9f7f11?ln=801-819 → <a href="loadext.html#persist">loadext.html#persist</a> +<li>https://sqlite.org/src/info/7fa8049685b50b5aeb0c2 → <a href="changes.html#version_3_24_0">changes.html#version_3_24_0</a> + <a href="releaselog/3_24_0.html">releaselog/3_24_0.html</a> +<li>https://sqlite.org/src/info/84bb08d8762920285f08f1c0?ln=7299,7361 → <a href="recovery.html">recovery.html</a> +<li>https://sqlite.org/src/info/86ba67afafded936 → <a href="changes.html#version_3_32_0">changes.html#version_3_32_0</a> + <a href="releaselog/3_32_0.html">releaselog/3_32_0.html</a> + <a href="releaselog/3_32_1.html">releaselog/3_32_1.html</a> + <a href="releaselog/3_32_2.html">releaselog/3_32_2.html</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> +<li>https://sqlite.org/src/info/892fc34f173e99d8 → <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> +<li>https://sqlite.org/src/info/a4e06e75a9ab61a12 → <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> +<li>https://sqlite.org/src/info/aa98619ad08ddca → <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> +<li>https://sqlite.org/src/info/aa98619ad08ddcab → <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> +<li>https://sqlite.org/src/info/b41031ea2b537237 → <a href="changes.html#version_3_25_1">changes.html#version_3_25_1</a> + <a href="releaselog/3_25_1.html">releaselog/3_25_1.html</a> + <a href="releaselog/3_25_2.html">releaselog/3_25_2.html</a> + <a href="releaselog/3_25_3.html">releaselog/3_25_3.html</a> +<li>https://sqlite.org/src/info/b899b6042f97f5 → <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> +<li>https://sqlite.org/src/info/bc115541132dad136 → <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> +<li>https://sqlite.org/src/info/be436a7f4587ce5 → <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> +<li>https://sqlite.org/src/info/cad1ab4cb7b0fc344 → <a href="news.html">news.html</a> +<li>https://sqlite.org/src/info/cb91bf4290c211d → <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> +<li>https://sqlite.org/src/info/ce68383bf6aba → <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> +<li>https://sqlite.org/src/info/dc3f932f5a147771 → <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> +<li>https://sqlite.org/src/info/de3403bf5ae → <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> +<li>https://sqlite.org/src/info/de7db14784a08053 → <a href="changes.html#version_3_35_4">changes.html#version_3_35_4</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> +<li>https://sqlite.org/src/info/e20dd54ab0e4383 → <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> +<li>https://sqlite.org/src/info/e8275b415a2f03bee → <a href="changes.html#version_3_25_3">changes.html#version_3_25_3</a> + <a href="releaselog/3_25_3.html">releaselog/3_25_3.html</a> +<li>https://sqlite.org/src/info/ef360601 → <a href="changes.html#version_3_14_2">changes.html#version_3_14_2</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> +<li>https://sqlite.org/src/info/ef9318757b152e3a → <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> +<li>https://sqlite.org/src/info/fac496b61722daf2 → <a href="changes.html#version_3_23_1">changes.html#version_3_23_1</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +<li>https://sqlite.org/src/info/fda22108 → <a href="changes.html#version_3_18_1">changes.html#version_3_18_1</a> + <a href="changes.html#version_3_19_3">changes.html#version_3_19_3</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> +<li>https://sqlite.org/src/timeline → <a href="whynotgit.html">whynotgit.html</a> +<li>https://sqlite.org/src/timeline?c=f9372072a6 → <a href="printf.html#comma">printf.html#comma</a> +<li>https://sqlite.org/src/timeline?df=major-release → <a href="whynotgit.html">whynotgit.html</a> +<li>https://sqlite.org/src/timeline?from=version-3.41.0&to=version-3.41.1 → <a href="changes.html#version_3_41_1">changes.html#version_3_41_1</a> + <a href="releaselog/3_41_1.html">releaselog/3_41_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> +<li>https://sqlite.org/src/timeline?p=version-3.38.1&bt=version-3.38.0 → <a href="changes.html#version_3_38_1">changes.html#version_3_38_1</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> +<li>https://sqlite.org/src/timeline?p=version-3.39.3&bt=version-3.39.2 → <a href="changes.html#version_3_39_3">changes.html#version_3_39_3</a> + <a href="releaselog/3_39_3.html">releaselog/3_39_3.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> +<li>https://sqlite.org/src/timeline?r=branch-3.25 → <a href="news.html">news.html</a> +<li>https://sqlite.org/src/timeline?r=branch-3.40 → <a href="news.html">news.html</a> +<li>https://sqlite.org/src/timeline?r=prefer-coroutine-sort-subquery → <a href="whynotgit.html">whynotgit.html</a> +<li>https://sqlite.org/wasm → <a href="changes.html#version_3_40_0">changes.html#version_3_40_0</a> + <a href="releaselog/3_40_0.html">releaselog/3_40_0.html</a> + <a href="releaselog/3_40_1.html">releaselog/3_40_1.html</a> +<li>https://sqlite.org/wasm/doc/trunk/index.md → <a href="news.html">news.html</a> +<li>https://stackoverflow.com/questions/27960605/find-all-the-direct-descendants-of-a-given-commit#27962018 → <a href="whynotgit.html">whynotgit.html</a> +<li>https://support.google.com/mail/answer/6590 → <a href="sqlar.html#dbasobj">sqlar.html#dbasobj</a> +<li>https://tools.ietf.org/html/rfc7396 → <a href="json1.html#jpatch">json1.html#jpatch</a> +<li>https://tools.ietf.org/html/rfc7946 → <a href="geopoly.html">geopoly.html</a> + <a href="geopoly.html#ccw">geopoly.html#ccw</a> +<li>https://tools.ietf.org/html/rfc8259#section-9 → <a href="json1.html#varg">json1.html#varg</a> +<li>https://ttlc.intuit.com/post/show_full/cJf8mIhC4r4jjracfArQzM/when-i-try-to-update-turbotax-i-receive-an-unexpected-error-message → <a href="famous.html">famous.html</a> +<li>https://www.airbus.com/en/products-services/commercial-aircraft/passenger-aircraft/a350-family → <a href="famous.html">famous.html</a> +<li>https://www.bentley.com/en/products/product-line/modeling-and-visualization-software/microstation → <a href="famous.html">famous.html</a> +<li>https://www.expensify.com/ → <a href="famous.html">famous.html</a> +<li>https://www.facebook.com/ → <a href="famous.html">famous.html</a> +<li>https://www.fossil-scm.org/ → <a href="bindptr.html">bindptr.html</a> + <a href="dbstat.html">dbstat.html</a> + <a href="download.html#srctree">download.html#srctree</a> + <a href="getthecode.html">getthecode.html</a> + <a href="news.html">news.html</a> + <a href="np1queryprob.html">np1queryprob.html</a> + <a href="printf.html#comma">printf.html#comma</a> + <a href="rowvalue.html#rvinop">rowvalue.html#rvinop</a> + <a href="sessionintro.html">sessionintro.html</a> + <a href="whentouse.html#container">whentouse.html#container</a> +<li>https://www.fossil-scm.org/download.html → <a href="getthecode.html#clone">getthecode.html#clone</a> +<li>https://www.fossil-scm.org/fossil/artifact/e5d6a82d?ln=1594-1605 → <a href="rowvalue.html#rvinop">rowvalue.html#rvinop</a> +<li>https://www.fossil-scm.org/fossil/artifact/e5d6a82d?ln=1618-1628 → <a href="rowvalue.html#rvinop">rowvalue.html#rvinop</a> +<li>https://www.fossil-scm.org/fossil/artifact/e5d6a82d?ln=1641-1650 → <a href="rowvalue.html#rvinop">rowvalue.html#rvinop</a> +<li>https://www.fossil-scm.org/fossil/doc/trunk/www/quotes.wiki → <a href="whynotgit.html">whynotgit.html</a> +<li>https://www.gnu.org/software/gdbm/gdbm.html → <a href="versionnumbers.html">versionnumbers.html</a> +<li>https://www.hwaci.com/ → <a href="consortium.html">consortium.html</a> + <a href="crew.html">crew.html</a> +<li>https://www.hwaci.com/sw/sqlite/cerod.html → <a href="support.html#prosupport">support.html#prosupport</a> +<li>https://www.hwaci.com/sw/sqlite/see.html → <a href="support.html#prosupport">support.html#prosupport</a> +<li>https://www.hwaci.com/sw/sqlite/zipvfs.html → <a href="memstat.html">memstat.html</a> + <a href="support.html#prosupport">support.html#prosupport</a> +<li>https://www.ietf.org/rfc/rfc4180.txt → <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="csv.html">csv.html</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="vtablist.html">vtablist.html</a> +<li>https://www.llvm.org/docs/LibFuzzer.html → <a href="qmplan.html">qmplan.html</a> +<li>https://www.loc.gov → <a href="lts.html">lts.html</a> +<li>https://www.loc.gov/ → <a href="locrsf.html">locrsf.html</a> +<li>https://www.loc.gov/preservation/digital/formats/fdd/fdd000461.shtml#local → <a href="locrsf.html">locrsf.html</a> +<li>https://www.loc.gov/preservation/resources/rfs/ → <a href="locrsf.html">locrsf.html</a> +<li>https://www.loc.gov/preservation/resources/rfs/data.html → <a href="locrsf.html">locrsf.html</a> +<li>https://www.microsoft.com/en-us/research/people/gray/ → <a href="fasterthanfs.html">fasterthanfs.html</a> +<li>https://www.microsoft.com/en-us/research/publication/to-blob-or-not-to-blob-large-object-storage-in-a-database-or-a-filesystem/ → <a href="fasterthanfs.html">fasterthanfs.html</a> +<li>https://www.neooffice.org/neojava/en/index.php → <a href="affcase1.html">affcase1.html</a> +<li>https://www.postgresql.org → <a href="lang_returning.html">lang_returning.html</a> +<li>https://www.reddit.com/r/programming/comments/84fzoc/why_is_sqlite_coded_in_c/ → <a href="whyc.html">whyc.html</a> +<li>https://www.reddit.com/r/programming/comments/9ezy8c/serious_bug_causing_infinite_loop_in_some_queries/ → <a href="news.html">news.html</a> +<li>https://www.rfc-editor.org/rfc/rfc8259.txt → <a href="json1.html#howtocompile">json1.html#howtocompile</a> +<li>https://www.sqlite.org → <a href="qmplan.html">qmplan.html</a> +<li>https://www.sqlite.org/ → <a href="qmplan.html">qmplan.html</a> + <a href="whentouse.html#website">whentouse.html#website</a> +<li>https://www.sqlite.org/checklistapp → <a href="qmplan.html">qmplan.html</a> +<li>https://www.sqlite.org/dbsqlfuzz → <a href="qmplan.html">qmplan.html</a> +<li>https://www.sqlite.org/docsrc → <a href="getthecode.html">getthecode.html</a> + <a href="qmplan.html">qmplan.html</a> +<li>https://www.sqlite.org/download.html → <a href="howtocompile.html#dll">howtocompile.html#dll</a> + <a href="withoutrowid.html#wtu">withoutrowid.html#wtu</a> +<li>https://www.sqlite.org/forum → <a href="qmplan.html">qmplan.html</a> +<li>https://www.sqlite.org/see/doc/trunk/www/readme.wiki → <a href="changes.html#version_3_9_0">changes.html#version_3_9_0</a> + <a href="releaselog/3_9_0.html">releaselog/3_9_0.html</a> + <a href="releaselog/3_9_1.html">releaselog/3_9_1.html</a> + <a href="releaselog/3_9_2.html">releaselog/3_9_2.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> +<li>https://www.sqlite.org/sqlar/doc/trunk/README.md → <a href="affcase1.html#smaller">affcase1.html#smaller</a> +<li>https://www.sqlite.org/sqllogictest → <a href="qmplan.html">qmplan.html</a> +<li>https://www.sqlite.org/src → <a href="amalgamation.html">amalgamation.html</a> + <a href="getthecode.html">getthecode.html</a> + <a href="howtocompile.html#amal">howtocompile.html#amal</a> + <a href="privatebranch.html">privatebranch.html</a> + <a href="qmplan.html">qmplan.html</a> +<li>https://www.sqlite.org/src/artifact/55b5fb474?ln=55-62 → <a href="testing.html#mutationtests">testing.html#mutationtests</a> +<li>https://www.sqlite.org/src/artifact/83f6b3318f7ee → <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="changes.html#version_3_8_7">changes.html#version_3_8_7</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> + <a href="releaselog/3_8_7.html">releaselog/3_8_7.html</a> +<li>https://www.sqlite.org/src/artifact/d29c8048beb7e → <a href="oldnews.html">oldnews.html</a> +<li>https://www.sqlite.org/src/artifact/d7cc99350?ln=403-443 → <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> +<li>https://www.sqlite.org/src/artifact/f971962e92ebb8b0 → <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> +<li>https://www.sqlite.org/src/artifact?ci=trunk&filename=ext/misc/csv.c → <a href="csv.html">csv.html</a> +<li>https://www.sqlite.org/src/artifact?ci=trunk&filename=ext/misc/fileio.c → <a href="cli.html#fileio">cli.html#fileio</a> +<li>https://www.sqlite.org/src/artifact?ci=trunk&filename=ext/misc/series.c → <a href="vtab.html#tabfunc2">vtab.html#tabfunc2</a> +<li>https://www.sqlite.org/src/artifact?ci=trunk&filename=ext/misc/vfsstat.c → <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> +<li>https://www.sqlite.org/src/artifact?ci=trunk&filename=magic.txt → <a href="fileformat2.html#appid">fileformat2.html#appid</a> + <a href="pragma.html#pragma_application_id">pragma.html#pragma_application_id</a> +<li>https://www.sqlite.org/src/artifact?ci=trunk&filename=src/parse.y → <a href="amalgamation.html">amalgamation.html</a> +<li>https://www.sqlite.org/src/artifact?ci=trunk&filename=tool/dbhash.c → <a href="dbhash.html">dbhash.html</a> +<li>https://www.sqlite.org/src/doc/trunk/ext/userauth/user-auth.txt → <a href="changes.html#version_3_8_7">changes.html#version_3_8_7</a> + <a href="releaselog/3_8_7.html">releaselog/3_8_7.html</a> +<li>https://www.sqlite.org/src/doc/trunk/src/date.c → <a href="cintro.html">cintro.html</a> +<li>https://www.sqlite.org/src/doc/trunk/src/func.c → <a href="cintro.html">cintro.html</a> +<li>https://www.sqlite.org/src/doc/trunk/src/os_unix.c → <a href="vfs.html">vfs.html</a> +<li>https://www.sqlite.org/src/doc/trunk/src/test_demovfs.c → <a href="vfs.html#shim">vfs.html#shim</a> +<li>https://www.sqlite.org/src/doc/trunk/src/test_journal.c → <a href="vfs.html#shim">vfs.html#shim</a> +<li>https://www.sqlite.org/src/doc/trunk/src/test_multiplex.c → <a href="vfs.html#shim">vfs.html#shim</a> +<li>https://www.sqlite.org/src/doc/trunk/src/test_onefile.c → <a href="vfs.html#shim">vfs.html#shim</a> +<li>https://www.sqlite.org/src/doc/trunk/src/test_quota.c → <a href="vfs.html#shim">vfs.html#shim</a> +<li>https://www.sqlite.org/src/doc/trunk/src/test_vfs.c → <a href="vfs.html#shim">vfs.html#shim</a> +<li>https://www.sqlite.org/src/doc/trunk/src/test_vfstrace.c → <a href="vfs.html#shim">vfs.html#shim</a> +<li>https://www.sqlite.org/src/fdiff?sbs=1&v1=7d539cedb1c&v2=ebad891b7494d&smhdr → <a href="changes.html#version_3_8_4_3">changes.html#version_3_8_4_3</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_8_4_3.html">releaselog/3_8_4_3.html</a> +<li>https://www.sqlite.org/src/fdiff?sbs=1&v1=869c95b0fc73026d&v2=232c242a0ccb3d67 → <a href="changes.html#version_3_10_0">changes.html#version_3_10_0</a> + <a href="releaselog/3_10_0.html">releaselog/3_10_0.html</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> +<li>https://www.sqlite.org/src/fdiff?v1=e45e3f9daf38c5be&v2=714df4e1c82f629d&sbs=1 → <a href="oldnews.html">oldnews.html</a> +<li>https://www.sqlite.org/src/file/ext → <a href="loadext.html#write">loadext.html#write</a> +<li>https://www.sqlite.org/src/file/ext/misc → <a href="loadext.html#write">loadext.html#write</a> +<li>https://www.sqlite.org/src/file/ext/misc/appendvfs.c → <a href="changes.html#version_3_35_2">changes.html#version_3_35_2</a> + <a href="cli.html#dotopen">cli.html#dotopen</a> + <a href="releaselog/3_35_2.html">releaselog/3_35_2.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> + <a href="vfs.html#shim">vfs.html#shim</a> +<li>https://www.sqlite.org/src/file/ext/misc/carray.c → <a href="carray.html">carray.html</a> + <a href="loadext.html#write">loadext.html#write</a> +<li>https://www.sqlite.org/src/file/ext/misc/carray.h → <a href="carray.html#onearg">carray.html#onearg</a> +<li>https://www.sqlite.org/src/file/ext/misc/compress.c → <a href="loadext.html#write">loadext.html#write</a> +<li>https://www.sqlite.org/src/file/ext/misc/json1.c → <a href="loadext.html#write">loadext.html#write</a> +<li>https://www.sqlite.org/src/file/ext/misc/memvfs.c → <a href="loadext.html#write">loadext.html#write</a> +<li>https://www.sqlite.org/src/file/ext/misc/remember.c → <a href="changes.html#version_3_16_0">changes.html#version_3_16_0</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="releaselog/3_16_0.html">releaselog/3_16_0.html</a> + <a href="releaselog/3_16_1.html">releaselog/3_16_1.html</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> +<li>https://www.sqlite.org/src/file/ext/misc/rot13.c → <a href="loadext.html#write">loadext.html#write</a> +<li>https://www.sqlite.org/src/file/ext/misc/series.c → <a href="loadext.html#write">loadext.html#write</a> +<li>https://www.sqlite.org/src/file/ext/misc/sha1.c → <a href="changes.html#version_3_17_0">changes.html#version_3_17_0</a> + <a href="releaselog/3_17_0.html">releaselog/3_17_0.html</a> +<li>https://www.sqlite.org/src/file/ext/misc/shathree.c → <a href="cli.html#sha3sum">cli.html#sha3sum</a> +<li>https://www.sqlite.org/src/file/src/vdbe.c → <a href="opcode.html">opcode.html</a> +<li>https://www.sqlite.org/src/file/test/kvtest.c → <a href="fasterthanfs.html">fasterthanfs.html</a> +<li>https://www.sqlite.org/src/file/test/ossfuzz.c → <a href="testing.html#ossfuzz">testing.html#ossfuzz</a> +<li>https://www.sqlite.org/src/finfo?name=ext/misc/fileio.c → <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> +<li>https://www.sqlite.org/src/finfo?name=ext/misc/spellfix.c → <a href="spellfix1.html">spellfix1.html</a> +<li>https://www.sqlite.org/src/info/05f43be8fdda9f → <a href="compile.html#like_doesnt_match_blobs">compile.html#like_doesnt_match_blobs</a> +<li>https://www.sqlite.org/src/info/06796225f59c057c → <a href="changes.html#version_3_18_0">changes.html#version_3_18_0</a> + <a href="releaselog/3_18_0.html">releaselog/3_18_0.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> +<li>https://www.sqlite.org/src/info/07d6a0453d → <a href="changes.html#version_3_8_5">changes.html#version_3_8_5</a> + <a href="releaselog/3_8_5.html">releaselog/3_8_5.html</a> +<li>https://www.sqlite.org/src/info/094d39a4c95ee4 → <a href="changes.html#version_3_8_7_2">changes.html#version_3_8_7_2</a> + <a href="releaselog/3_8_7_2.html">releaselog/3_8_7_2.html</a> +<li>https://www.sqlite.org/src/info/0eab1ac759 → <a href="changes.html#version_3_15_0">changes.html#version_3_15_0</a> + <a href="releaselog/3_15_0.html">releaselog/3_15_0.html</a> + <a href="releaselog/3_15_1.html">releaselog/3_15_1.html</a> + <a href="releaselog/3_15_2.html">releaselog/3_15_2.html</a> +<li>https://www.sqlite.org/src/info/0eb70d77cb05bb2272 → <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> +<li>https://www.sqlite.org/src/info/0fc59f908b → <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> +<li>https://www.sqlite.org/src/info/1079ad19993d13fa → <a href="changes.html#version_3_30_1">changes.html#version_3_30_1</a> + <a href="releaselog/3_30_1.html">releaselog/3_30_1.html</a> +<li>https://www.sqlite.org/src/info/10fb063b11 → <a href="changes.html#version_3_8_5">changes.html#version_3_8_5</a> + <a href="releaselog/3_8_5.html">releaselog/3_8_5.html</a> +<li>https://www.sqlite.org/src/info/11d5aa455e0d98f3c1e6a08 → <a href="changes.html#version_3_8_7">changes.html#version_3_8_7</a> + <a href="releaselog/3_8_7.html">releaselog/3_8_7.html</a> +<li>https://www.sqlite.org/src/info/16c9801ceba49 → <a href="changes.html#version_3_13_0">changes.html#version_3_13_0</a> + <a href="releaselog/3_13_0.html">releaselog/3_13_0.html</a> +<li>https://www.sqlite.org/src/info/190c2507 → <a href="changes.html#version_3_16_2">changes.html#version_3_16_2</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> +<li>https://www.sqlite.org/src/info/1c24a659e6d7f3a1 → <a href="changes.html#version_3_35_1">changes.html#version_3_35_1</a> + <a href="releaselog/3_35_1.html">releaselog/3_35_1.html</a> + <a href="releaselog/3_35_2.html">releaselog/3_35_2.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> +<li>https://www.sqlite.org/src/info/1d958d90596593a774 → <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> +<li>https://www.sqlite.org/src/info/1ec41379c9c1e400 → <a href="changes.html#version_3_15_0">changes.html#version_3_15_0</a> + <a href="releaselog/3_15_0.html">releaselog/3_15_0.html</a> + <a href="releaselog/3_15_1.html">releaselog/3_15_1.html</a> + <a href="releaselog/3_15_2.html">releaselog/3_15_2.html</a> +<li>https://www.sqlite.org/src/info/2326c258d02ead33 → <a href="changes.html#version_3_8_8_3">changes.html#version_3_8_8_3</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> +<li>https://www.sqlite.org/src/info/2500cdb9be05 → <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> +<li>https://www.sqlite.org/src/info/25e335f802dd → <a href="changes.html#version_3_17_0">changes.html#version_3_17_0</a> + <a href="releaselog/3_17_0.html">releaselog/3_17_0.html</a> +<li>https://www.sqlite.org/src/info/25ee812710 → <a href="changes.html#version_3_7_7_1">changes.html#version_3_7_7_1</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_7_7_1.html">releaselog/3_7_7_1.html</a> +<li>https://www.sqlite.org/src/info/264b970c4379fd → <a href="changes.html#version_3_8_5">changes.html#version_3_8_5</a> + <a href="releaselog/3_8_5.html">releaselog/3_8_5.html</a> +<li>https://www.sqlite.org/src/info/27754b74ddf64 → <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +<li>https://www.sqlite.org/src/info/2a5629202f → <a href="changes.html#version_3_7_12">changes.html#version_3_7_12</a> + <a href="releaselog/3_7_12.html">releaselog/3_7_12.html</a> +<li>https://www.sqlite.org/src/info/2d1a5c67df → <a href="oldnews.html">oldnews.html</a> +<li>https://www.sqlite.org/src/info/2df0107b → <a href="changes.html#version_3_16_0">changes.html#version_3_16_0</a> + <a href="releaselog/3_16_0.html">releaselog/3_16_0.html</a> + <a href="releaselog/3_16_1.html">releaselog/3_16_1.html</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> +<li>https://www.sqlite.org/src/info/2df6bbf1b8ca8 → <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +<li>https://www.sqlite.org/src/info/2ea3e9fe63 → <a href="changes.html#version_3_8_5">changes.html#version_3_8_5</a> + <a href="releaselog/3_8_5.html">releaselog/3_8_5.html</a> +<li>https://www.sqlite.org/src/info/2f1b168ab4d4844 → <a href="changes.html#version_3_15_2">changes.html#version_3_15_2</a> + <a href="releaselog/3_15_2.html">releaselog/3_15_2.html</a> +<li>https://www.sqlite.org/src/info/30027b613b4 → <a href="changes.html#version_3_16_2">changes.html#version_3_16_2</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> +<li>https://www.sqlite.org/src/info/31338dca7e → <a href="oldnews.html">oldnews.html</a> +<li>https://www.sqlite.org/src/info/343634942dd54ab → <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +<li>https://www.sqlite.org/src/info/34a579141b2c5ac → <a href="changes.html#version_3_15_1">changes.html#version_3_15_1</a> + <a href="releaselog/3_15_1.html">releaselog/3_15_1.html</a> + <a href="releaselog/3_15_2.html">releaselog/3_15_2.html</a> +<li>https://www.sqlite.org/src/info/34cd55d6 → <a href="oldnews.html">oldnews.html</a> +<li>https://www.sqlite.org/src/info/34cd55d68e0e6e7c9a0711aab81a2ee3c354b4c0 → <a href="changes.html#version_3_8_10_2">changes.html#version_3_8_10_2</a> + <a href="releaselog/3_8_10_2.html">releaselog/3_8_10_2.html</a> +<li>https://www.sqlite.org/src/info/369d57fb8e5ccdff06f1 → <a href="changes.html#version_3_8_7">changes.html#version_3_8_7</a> + <a href="releaselog/3_8_7.html">releaselog/3_8_7.html</a> +<li>https://www.sqlite.org/src/info/36fae083b450e3a → <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +<li>https://www.sqlite.org/src/info/385a5b56b9 → <a href="changes.html#version_3_7_12">changes.html#version_3_7_12</a> + <a href="releaselog/3_7_12.html">releaselog/3_7_12.html</a> +<li>https://www.sqlite.org/src/info/38b1ae018f → <a href="changes.html#version_3_7_16_1">changes.html#version_3_7_16_1</a> + <a href="releaselog/3_7_16_1.html">releaselog/3_7_16_1.html</a> + <a href="releaselog/3_7_16_2.html">releaselog/3_7_16_2.html</a> +<li>https://www.sqlite.org/src/info/3a88d85f36704eebe1 → <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> +<li>https://www.sqlite.org/src/info/43107840f1c02 → <a href="oldnews.html">oldnews.html</a> +<li>https://www.sqlite.org/src/info/47b2581aa9bfecec → <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> +<li>https://www.sqlite.org/src/info/4c86b126f2 → <a href="changes.html#version_3_8_3_1">changes.html#version_3_8_3_1</a> + <a href="changes.html#version_3_8_4">changes.html#version_3_8_4</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_8_3_1.html">releaselog/3_8_3_1.html</a> + <a href="releaselog/3_8_4.html">releaselog/3_8_4.html</a> + <a href="releaselog/3_8_4_1.html">releaselog/3_8_4_1.html</a> + <a href="releaselog/3_8_4_2.html">releaselog/3_8_4_2.html</a> + <a href="releaselog/3_8_4_3.html">releaselog/3_8_4_3.html</a> +<li>https://www.sqlite.org/src/info/4e8e4857d32d401f → <a href="changes.html#version_3_27_1">changes.html#version_3_27_1</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> +<li>https://www.sqlite.org/src/info/4ef7e3cfca → <a href="changes.html#version_3_8_4">changes.html#version_3_8_4</a> + <a href="releaselog/3_8_4.html">releaselog/3_8_4.html</a> + <a href="releaselog/3_8_4_1.html">releaselog/3_8_4_1.html</a> + <a href="releaselog/3_8_4_2.html">releaselog/3_8_4_2.html</a> + <a href="releaselog/3_8_4_3.html">releaselog/3_8_4_3.html</a> +<li>https://www.sqlite.org/src/info/4feb3159c6bc3f7e33959 → <a href="changes.html#version_3_27_2">changes.html#version_3_27_2</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> +<li>https://www.sqlite.org/src/info/525deb7a67fbd647 → <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +<li>https://www.sqlite.org/src/info/55746f9e65f85 → <a href="changes.html#version_3_8_5">changes.html#version_3_8_5</a> + <a href="releaselog/3_8_5.html">releaselog/3_8_5.html</a> +<li>https://www.sqlite.org/src/info/559733b09e9630fa → <a href="changes.html#version_3_15_0">changes.html#version_3_15_0</a> + <a href="releaselog/3_15_0.html">releaselog/3_15_0.html</a> + <a href="releaselog/3_15_1.html">releaselog/3_15_1.html</a> + <a href="releaselog/3_15_2.html">releaselog/3_15_2.html</a> +<li>https://www.sqlite.org/src/info/57eec374ae1d0a1d → <a href="changes.html#version_3_9_1">changes.html#version_3_9_1</a> + <a href="releaselog/3_9_1.html">releaselog/3_9_1.html</a> + <a href="releaselog/3_9_2.html">releaselog/3_9_2.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> +<li>https://www.sqlite.org/src/info/57eec374ae1d0a1d4a → <a href="oldnews.html">oldnews.html</a> +<li>https://www.sqlite.org/src/info/5948e09b8c415bc45d → <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> +<li>https://www.sqlite.org/src/info/598f5f7596b055 → <a href="changes.html#version_3_7_15_2">changes.html#version_3_7_15_2</a> + <a href="releaselog/3_7_15_2.html">releaselog/3_7_15_2.html</a> +<li>https://www.sqlite.org/src/info/5d863f876e → <a href="changes.html#version_3_7_5">changes.html#version_3_7_5</a> + <a href="releaselog/3_7_5.html">releaselog/3_7_5.html</a> +<li>https://www.sqlite.org/src/info/5e3c886796e5512e → <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> +<li>https://www.sqlite.org/src/info/6097cb92745327a1 → <a href="changes.html#version_3_18_0">changes.html#version_3_18_0</a> + <a href="releaselog/3_18_0.html">releaselog/3_18_0.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> +<li>https://www.sqlite.org/src/info/6484e6ce678fffab → <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> +<li>https://www.sqlite.org/src/info/65bdeb9739 → <a href="changes.html#version_3_8_4">changes.html#version_3_8_4</a> + <a href="releaselog/3_8_4.html">releaselog/3_8_4.html</a> + <a href="releaselog/3_8_4_1.html">releaselog/3_8_4_1.html</a> + <a href="releaselog/3_8_4_2.html">releaselog/3_8_4_2.html</a> + <a href="releaselog/3_8_4_3.html">releaselog/3_8_4_3.html</a> +<li>https://www.sqlite.org/src/info/6709574d2a8d8 → <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> +<li>https://www.sqlite.org/src/info/689137afb6da41 → <a href="changes.html#version_3_7_16_1">changes.html#version_3_7_16_1</a> + <a href="releaselog/3_7_16_1.html">releaselog/3_7_16_1.html</a> + <a href="releaselog/3_7_16_2.html">releaselog/3_7_16_2.html</a> +<li>https://www.sqlite.org/src/info/6bfb98dfc0c → <a href="changes.html#version_3_7_16_1">changes.html#version_3_7_16_1</a> + <a href="releaselog/3_7_16_1.html">releaselog/3_7_16_1.html</a> + <a href="releaselog/3_7_16_2.html">releaselog/3_7_16_2.html</a> +<li>https://www.sqlite.org/src/info/6c9b5514077fed34551 → <a href="changes.html#version_3_19_0">changes.html#version_3_19_0</a> + <a href="releaselog/3_19_0.html">releaselog/3_19_0.html</a> + <a href="releaselog/3_19_1.html">releaselog/3_19_1.html</a> + <a href="releaselog/3_19_2.html">releaselog/3_19_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> +<li>https://www.sqlite.org/src/info/6f2222d550f5b0ee7ed → <a href="changes.html#version_3_8_7_3">changes.html#version_3_8_7_3</a> + <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="releaselog/3_8_7_3.html">releaselog/3_8_7_3.html</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> +<li>https://www.sqlite.org/src/info/7310e2fb3d046a5 → <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +<li>https://www.sqlite.org/src/info/73c2b50211d3ae26 → <a href="howtocorrupt.html#svptbug">howtocorrupt.html#svptbug</a> +<li>https://www.sqlite.org/src/info/79cad5e4b2e219dd197242e9e → <a href="changes.html#version_3_25_0">changes.html#version_3_25_0</a> + <a href="releaselog/3_25_0.html">releaselog/3_25_0.html</a> + <a href="releaselog/3_25_1.html">releaselog/3_25_1.html</a> + <a href="releaselog/3_25_2.html">releaselog/3_25_2.html</a> + <a href="releaselog/3_25_3.html">releaselog/3_25_3.html</a> +<li>https://www.sqlite.org/src/info/7b3328086a5c116c → <a href="changes.html#version_3_15_0">changes.html#version_3_15_0</a> + <a href="releaselog/3_15_0.html">releaselog/3_15_0.html</a> + <a href="releaselog/3_15_1.html">releaselog/3_15_1.html</a> + <a href="releaselog/3_15_2.html">releaselog/3_15_2.html</a> +<li>https://www.sqlite.org/src/info/7bbfb7d442 → <a href="changes.html#version_3_7_10">changes.html#version_3_7_10</a> + <a href="releaselog/3_7_10.html">releaselog/3_7_10.html</a> +<li>https://www.sqlite.org/src/info/7be932dfa60a8a6b3b26bcf76 → <a href="changes.html#version_3_25_0">changes.html#version_3_25_0</a> + <a href="releaselog/3_25_0.html">releaselog/3_25_0.html</a> + <a href="releaselog/3_25_1.html">releaselog/3_25_1.html</a> + <a href="releaselog/3_25_2.html">releaselog/3_25_2.html</a> + <a href="releaselog/3_25_3.html">releaselog/3_25_3.html</a> +<li>https://www.sqlite.org/src/info/7c6d876f84e6e7e2 → <a href="changes.html#version_3_32_3">changes.html#version_3_32_3</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> +<li>https://www.sqlite.org/src/info/7ce4e71c1b7251be → <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +<li>https://www.sqlite.org/src/info/7d7525cb01b68 → <a href="changes.html#version_3_12_2">changes.html#version_3_12_2</a> + <a href="changes.html#version_3_13_0">changes.html#version_3_13_0</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> + <a href="releaselog/3_13_0.html">releaselog/3_13_0.html</a> +<li>https://www.sqlite.org/src/info/7f7f8026eda38 → <a href="changes.html#version_3_12_1">changes.html#version_3_12_1</a> + <a href="changes.html#version_3_13_0">changes.html#version_3_13_0</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> + <a href="releaselog/3_13_0.html">releaselog/3_13_0.html</a> +<li>https://www.sqlite.org/src/info/7fde638e94287d2c → <a href="changes.html#version_3_19_2">changes.html#version_3_19_2</a> + <a href="releaselog/3_19_2.html">releaselog/3_19_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> +<li>https://www.sqlite.org/src/info/7ff3120e4f → <a href="changes.html#version_3_7_16_2">changes.html#version_3_7_16_2</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_7_16_2.html">releaselog/3_7_16_2.html</a> +<li>https://www.sqlite.org/src/info/7ffd1ca1d2ad4ec → <a href="changes.html#version_3_17_0">changes.html#version_3_17_0</a> + <a href="releaselog/3_17_0.html">releaselog/3_17_0.html</a> +<li>https://www.sqlite.org/src/info/80177f0c226ff54 → <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +<li>https://www.sqlite.org/src/info/80369eddd5c94 → <a href="changes.html#version_3_10_2">changes.html#version_3_10_2</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> +<li>https://www.sqlite.org/src/info/80ba201079 → <a href="changes.html#version_3_7_4">changes.html#version_3_7_4</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_7_4.html">releaselog/3_7_4.html</a> +<li>https://www.sqlite.org/src/info/810dc8038872e212 → <a href="changes.html#version_3_32_2">changes.html#version_3_32_2</a> + <a href="releaselog/3_32_2.html">releaselog/3_32_2.html</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> +<li>https://www.sqlite.org/src/info/823779d31eb09cda → <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +<li>https://www.sqlite.org/src/info/873cae2b6e25b → <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> +<li>https://www.sqlite.org/src/info/892fc34f173e99d8 → <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> +<li>https://www.sqlite.org/src/info/8a2adec1 → <a href="changes.html#version_3_9_2">changes.html#version_3_9_2</a> + <a href="releaselog/3_9_2.html">releaselog/3_9_2.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> +<li>https://www.sqlite.org/src/info/8c63ff0eca → <a href="changes.html#version_3_8_4">changes.html#version_3_8_4</a> + <a href="releaselog/3_8_4.html">releaselog/3_8_4.html</a> + <a href="releaselog/3_8_4_1.html">releaselog/3_8_4_1.html</a> + <a href="releaselog/3_8_4_2.html">releaselog/3_8_4_2.html</a> + <a href="releaselog/3_8_4_3.html">releaselog/3_8_4_3.html</a> +<li>https://www.sqlite.org/src/info/8c9458e7 → <a href="changes.html#version_3_16_1">changes.html#version_3_16_1</a> + <a href="releaselog/3_16_1.html">releaselog/3_16_1.html</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> +<li>https://www.sqlite.org/src/info/8f157e8010b22af0 → <a href="changes.html#version_3_32_3">changes.html#version_3_32_3</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> +<li>https://www.sqlite.org/src/info/8fd39115d8f46 → <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> +<li>https://www.sqlite.org/src/info/96c1454cbfd9509 → <a href="changes.html#version_3_15_0">changes.html#version_3_15_0</a> + <a href="releaselog/3_15_0.html">releaselog/3_15_0.html</a> + <a href="releaselog/3_15_1.html">releaselog/3_15_1.html</a> + <a href="releaselog/3_15_2.html">releaselog/3_15_2.html</a> +<li>https://www.sqlite.org/src/info/981329adeef51011052 → <a href="changes.html#version_3_19_0">changes.html#version_3_19_0</a> + <a href="releaselog/3_19_0.html">releaselog/3_19_0.html</a> + <a href="releaselog/3_19_1.html">releaselog/3_19_1.html</a> + <a href="releaselog/3_19_2.html">releaselog/3_19_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> +<li>https://www.sqlite.org/src/info/98825a79ce1456863 → <a href="changes.html#version_3_8_4_3">changes.html#version_3_8_4_3</a> + <a href="releaselog/3_8_4_3.html">releaselog/3_8_4_3.html</a> +<li>https://www.sqlite.org/src/info/98825a79ce145686392d8074032ae54863aa21a3 → <a href="oldnews.html">oldnews.html</a> +<li>https://www.sqlite.org/src/info/98d973b8f5 → <a href="changes.html#version_3_8_7">changes.html#version_3_8_7</a> + <a href="releaselog/3_8_7.html">releaselog/3_8_7.html</a> +<li>https://www.sqlite.org/src/info/9936b2fa443fec03ff25 → <a href="changes.html#version_3_25_0">changes.html#version_3_25_0</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_25_0.html">releaselog/3_25_0.html</a> + <a href="releaselog/3_25_1.html">releaselog/3_25_1.html</a> + <a href="releaselog/3_25_2.html">releaselog/3_25_2.html</a> + <a href="releaselog/3_25_3.html">releaselog/3_25_3.html</a> +<li>https://www.sqlite.org/src/info/9a6daf340df99ba93c → <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> +<li>https://www.sqlite.org/src/info/9a8b09f8e6 → <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> +<li>https://www.sqlite.org/src/info/9b78184be266fd70 → <a href="news.html">news.html</a> +<li>https://www.sqlite.org/src/info/9fb26d37cefaba40 → <a href="changes.html#version_3_32_3">changes.html#version_3_32_3</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> +<li>https://www.sqlite.org/src/info/a179fe7465 → <a href="changes.html#version_3_7_16_1">changes.html#version_3_7_16_1</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_7_16_1.html">releaselog/3_7_16_1.html</a> + <a href="releaselog/3_7_16_2.html">releaselog/3_7_16_2.html</a> +<li>https://www.sqlite.org/src/info/a306e56ff68b8fa5 → <a href="changes.html#version_3_12_2">changes.html#version_3_12_2</a> + <a href="changes.html#version_3_13_0">changes.html#version_3_13_0</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> + <a href="releaselog/3_13_0.html">releaselog/3_13_0.html</a> +<li>https://www.sqlite.org/src/info/a59ae93ee990a55 → <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> +<li>https://www.sqlite.org/src/info/a5c8ed66ca → <a href="changes.html#version_3_8_1">changes.html#version_3_8_1</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_8_1.html">releaselog/3_8_1.html</a> +<li>https://www.sqlite.org/src/info/a7b7803e8d1e869 → <a href="changes.html#version_3_7_15_1">changes.html#version_3_7_15_1</a> + <a href="releaselog/3_7_15_1.html">releaselog/3_7_15_1.html</a> +<li>https://www.sqlite.org/src/info/a8a0d2996a → <a href="changes.html#version_3_8_5">changes.html#version_3_8_5</a> + <a href="releaselog/3_8_5.html">releaselog/3_8_5.html</a> +<li>https://www.sqlite.org/src/info/ac0ff496b7e2 → <a href="changes.html#version_3_7_10">changes.html#version_3_7_10</a> + <a href="releaselog/3_7_10.html">releaselog/3_7_10.html</a> +<li>https://www.sqlite.org/src/info/ac661962a2aeab3c331 → <a href="changes.html#version_3_9_2">changes.html#version_3_9_2</a> + <a href="releaselog/3_9_2.html">releaselog/3_9_2.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> +<li>https://www.sqlite.org/src/info/ad2559db380abf8 → <a href="changes.html#version_3_11_0">changes.html#version_3_11_0</a> + <a href="releaselog/3_11_0.html">releaselog/3_11_0.html</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> +<li>https://www.sqlite.org/src/info/b2fa5424e6fcb15 → <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> +<li>https://www.sqlite.org/src/info/b706351ce2ecf59a → <a href="changes.html#version_3_32_3">changes.html#version_3_32_3</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> +<li>https://www.sqlite.org/src/info/b75a9ca6b0499 → <a href="changes.html#version_3_8_5">changes.html#version_3_8_5</a> + <a href="releaselog/3_8_5.html">releaselog/3_8_5.html</a> +<li>https://www.sqlite.org/src/info/b7c8682cc1 → <a href="changes.html#version_3_7_11">changes.html#version_3_7_11</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_7_11.html">releaselog/3_7_11.html</a> +<li>https://www.sqlite.org/src/info/b850dd159918af56 → <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +<li>https://www.sqlite.org/src/info/b918d4b4e546d → <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +<li>https://www.sqlite.org/src/info/b93be8729a895a528e2 → <a href="changes.html#version_3_19_0">changes.html#version_3_19_0</a> + <a href="releaselog/3_19_0.html">releaselog/3_19_0.html</a> + <a href="releaselog/3_19_1.html">releaselog/3_19_1.html</a> + <a href="releaselog/3_19_2.html">releaselog/3_19_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> +<li>https://www.sqlite.org/src/info/ba7cbfaedc7e6 → <a href="changes.html#version_3_8_7">changes.html#version_3_8_7</a> + <a href="releaselog/3_8_7.html">releaselog/3_8_7.html</a> +<li>https://www.sqlite.org/src/info/ba82a4a41eac1 → <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> +<li>https://www.sqlite.org/src/info/bb4bdb9f7f654b0bb9 → <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> +<li>https://www.sqlite.org/src/info/bb8a9fd4a9b7fce5 → <a href="changes.html#version_3_35_3">changes.html#version_3_35_3</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> +<li>https://www.sqlite.org/src/info/bc8d94f0fbd633fd9a → <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> +<li>https://www.sqlite.org/src/info/c2a19d81652f40568c → <a href="changes.html#version_3_9_0">changes.html#version_3_9_0</a> + <a href="releaselog/3_9_0.html">releaselog/3_9_0.html</a> + <a href="releaselog/3_9_1.html">releaselog/3_9_1.html</a> + <a href="releaselog/3_9_2.html">releaselog/3_9_2.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> +<li>https://www.sqlite.org/src/info/c2ad16f997ee9c → <a href="changes.html#version_3_7_12_1">changes.html#version_3_7_12_1</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_7_12_1.html">releaselog/3_7_12_1.html</a> +<li>https://www.sqlite.org/src/info/c34d0557f7 → <a href="changes.html#version_3_8_4">changes.html#version_3_8_4</a> + <a href="releaselog/3_8_4.html">releaselog/3_8_4.html</a> + <a href="releaselog/3_8_4_1.html">releaselog/3_8_4_1.html</a> + <a href="releaselog/3_8_4_2.html">releaselog/3_8_4_2.html</a> + <a href="releaselog/3_8_4_3.html">releaselog/3_8_4_3.html</a> +<li>https://www.sqlite.org/src/info/c5ea805691bfc4204b1cb9e → <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> +<li>https://www.sqlite.org/src/info/c648539b52ca28c0 → <a href="changes.html#version_3_9_3">changes.html#version_3_9_3</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> +<li>https://www.sqlite.org/src/info/c8d3b9f0a750a529 → <a href="changes.html#version_3_32_3">changes.html#version_3_32_3</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> +<li>https://www.sqlite.org/src/info/c94369cae9b561b1f996d0054b → <a href="changes.html#version_3_25_0">changes.html#version_3_25_0</a> + <a href="releaselog/3_25_0.html">releaselog/3_25_0.html</a> + <a href="releaselog/3_25_1.html">releaselog/3_25_1.html</a> + <a href="releaselog/3_25_2.html">releaselog/3_25_2.html</a> + <a href="releaselog/3_25_3.html">releaselog/3_25_3.html</a> +<li>https://www.sqlite.org/src/info/cad1ab4cb7b0fc → <a href="changes.html#version_3_19_1">changes.html#version_3_19_1</a> + <a href="releaselog/3_19_1.html">releaselog/3_19_1.html</a> + <a href="releaselog/3_19_2.html">releaselog/3_19_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> +<li>https://www.sqlite.org/src/info/cb3aa0641d9a4 → <a href="changes.html#version_3_10_1">changes.html#version_3_10_1</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> +<li>https://www.sqlite.org/src/info/d06a25c84454a → <a href="changes.html#version_3_11_0">changes.html#version_3_11_0</a> + <a href="releaselog/3_11_0.html">releaselog/3_11_0.html</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> +<li>https://www.sqlite.org/src/info/d0866b26f83e9c55e3 → <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> +<li>https://www.sqlite.org/src/info/d2889096e7bdeac6 → <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> +<li>https://www.sqlite.org/src/info/d6ec09eccf68cfc → <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +<li>https://www.sqlite.org/src/info/d75e67654aa96 → <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +<li>https://www.sqlite.org/src/info/d8dc2b3a58cd5dc29 → <a href="changes.html#version_3_24_0">changes.html#version_3_24_0</a> + <a href="releaselog/3_24_0.html">releaselog/3_24_0.html</a> +<li>https://www.sqlite.org/src/info/d96eba87698a428c1d → <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> +<li>https://www.sqlite.org/src/info/db87229497 → <a href="changes.html#version_3_8_7_2">changes.html#version_3_8_7_2</a> + <a href="releaselog/3_8_7_2.html">releaselog/3_8_7_2.html</a> +<li>https://www.sqlite.org/src/info/dc6ebeda9396087 → <a href="changes.html#version_3_13_0">changes.html#version_3_13_0</a> + <a href="releaselog/3_13_0.html">releaselog/3_13_0.html</a> +<li>https://www.sqlite.org/src/info/dc9b1c91 → <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> +<li>https://www.sqlite.org/src/info/df46dfb631f75694 → <a href="changes.html#version_3_27_2">changes.html#version_3_27_2</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> +<li>https://www.sqlite.org/src/info/e367f31901ea8700 → <a href="changes.html#version_3_32_3">changes.html#version_3_32_3</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> +<li>https://www.sqlite.org/src/info/e39d032577 → <a href="changes.html#version_3_8_5">changes.html#version_3_8_5</a> + <a href="releaselog/3_8_5.html">releaselog/3_8_5.html</a> +<li>https://www.sqlite.org/src/info/e4a18565a36884b00edf → <a href="changes.html#version_3_8_7_3">changes.html#version_3_8_7_3</a> + <a href="releaselog/3_8_7_3.html">releaselog/3_8_7_3.html</a> +<li>https://www.sqlite.org/src/info/e636a050b7 → <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> +<li>https://www.sqlite.org/src/info/e6e962d6b0f06f46e → <a href="changes.html#version_3_17_0">changes.html#version_3_17_0</a> + <a href="compile.html#enable_null_trim">compile.html#enable_null_trim</a> + <a href="releaselog/3_17_0.html">releaselog/3_17_0.html</a> +<li>https://www.sqlite.org/src/info/e6f1f2e34dceeb1ed6 → <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> +<li>https://www.sqlite.org/src/info/e8d439c77685eca6 → <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> +<li>https://www.sqlite.org/src/info/e9654505cfda9 → <a href="changes.html#version_3_8_5">changes.html#version_3_8_5</a> + <a href="releaselog/3_8_5.html">releaselog/3_8_5.html</a> +<li>https://www.sqlite.org/src/info/eb5548a849 → <a href="oldnews.html">oldnews.html</a> +<li>https://www.sqlite.org/src/info/eb703ba7b50c1a5 → <a href="changes.html#version_3_18_0">changes.html#version_3_18_0</a> + <a href="releaselog/3_18_0.html">releaselog/3_18_0.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> +<li>https://www.sqlite.org/src/info/ec32177c99ccac2 → <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +<li>https://www.sqlite.org/src/info/ec7addc87f97bcff → <a href="whynotgit.html">whynotgit.html</a> +<li>https://www.sqlite.org/src/info/ee51301f316c09e9 → <a href="changes.html#version_3_35_0">changes.html#version_3_35_0</a> + <a href="releaselog/3_35_0.html">releaselog/3_35_0.html</a> + <a href="releaselog/3_35_1.html">releaselog/3_35_1.html</a> + <a href="releaselog/3_35_2.html">releaselog/3_35_2.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> +<li>https://www.sqlite.org/src/info/f09fcd17810f65f717 → <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> +<li>https://www.sqlite.org/src/info/f2369304e4 → <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> +<li>https://www.sqlite.org/src/info/f2ad7de056ab1dc9200 → <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> +<li>https://www.sqlite.org/src/info/f45ac567eaa9f9 → <a href="changes.html#version_3_11_0">changes.html#version_3_11_0</a> + <a href="releaselog/3_11_0.html">releaselog/3_11_0.html</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> +<li>https://www.sqlite.org/src/info/f484b65f3d62305 → <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +<li>https://www.sqlite.org/src/info/f68bf68513a1c15f → <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> +<li>https://www.sqlite.org/src/info/f68dc596c4e6018d → <a href="changes.html#version_3_19_0">changes.html#version_3_19_0</a> + <a href="releaselog/3_19_0.html">releaselog/3_19_0.html</a> + <a href="releaselog/3_19_1.html">releaselog/3_19_1.html</a> + <a href="releaselog/3_19_2.html">releaselog/3_19_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> +<li>https://www.sqlite.org/src/info/f69b96e3076e → <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> +<li>https://www.sqlite.org/src/info/f7f8c97e97597 → <a href="changes.html#version_3_13_0">changes.html#version_3_13_0</a> + <a href="releaselog/3_13_0.html">releaselog/3_13_0.html</a> +<li>https://www.sqlite.org/src/info/f97c4637102a3ae72b7911 → <a href="oldnews.html">oldnews.html</a> +<li>https://www.sqlite.org/src/info/fab2c2b07b5d3 → <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +<li>https://www.sqlite.org/src/info/fc7bd6358f → <a href="changes.html#version_3_7_16">changes.html#version_3_7_16</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_7_16.html">releaselog/3_7_16.html</a> + <a href="releaselog/3_7_16_1.html">releaselog/3_7_16_1.html</a> + <a href="releaselog/3_7_16_2.html">releaselog/3_7_16_2.html</a> +<li>https://www.sqlite.org/src/info/fccbde530a → <a href="changes.html#version_3_8_4">changes.html#version_3_8_4</a> + <a href="releaselog/3_8_4.html">releaselog/3_8_4.html</a> + <a href="releaselog/3_8_4_1.html">releaselog/3_8_4_1.html</a> + <a href="releaselog/3_8_4_2.html">releaselog/3_8_4_2.html</a> + <a href="releaselog/3_8_4_3.html">releaselog/3_8_4_3.html</a> +<li>https://www.sqlite.org/src/info/fef4bb4bd9185ec8f → <a href="changes.html#version_3_15_1">changes.html#version_3_15_1</a> + <a href="releaselog/3_15_1.html">releaselog/3_15_1.html</a> + <a href="releaselog/3_15_2.html">releaselog/3_15_2.html</a> +<li>https://www.sqlite.org/src/info/ff5be73dee → <a href="changes.html#version_3_7_10">changes.html#version_3_7_10</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_7_10.html">releaselog/3_7_10.html</a> +<li>https://www.sqlite.org/src/repo-tabsize → <a href="dbstat.html">dbstat.html</a> +<li>https://www.sqlite.org/src/timeline → <a href="getthecode.html">getthecode.html</a> + <a href="np1queryprob.html">np1queryprob.html</a> +<li>https://www.sqlite.org/src/timeline?c=2000-05-29+14:26:00 → <a href="about.html">about.html</a> +<li>https://www.sqlite.org/src/timeline?c=2013-08-26 → <a href="getthecode.html">getthecode.html</a> +<li>https://www.sqlite.org/src/timeline?c=2018-03-16&n=10 → <a href="whynotgit.html">whynotgit.html</a> +<li>https://www.sqlite.org/src/timeline?p=version-3.32.3&bt=version-3.32.0 → <a href="news.html">news.html</a> +<li>https://www.sqlite.org/src/timeline?y=ci&c=0a2eb949f8a759e5 → <a href="testing.html#ossfuzz">testing.html#ossfuzz</a> +<li>https://www.sqlite.org/src/timeline?y=ci&c=62f2235adf796c72 → <a href="testing.html#ossfuzz">testing.html#ossfuzz</a> +<li>https://www.sqlite.org/src/timeline?y=ci&c=c422afb507dc8757 → <a href="testing.html#ossfuzz">testing.html#ossfuzz</a> +<li>https://www.sqlite.org/src/timeline?y=t&u=mrigger&n=all → <a href="testing.html#3pfuzz">testing.html#3pfuzz</a> +<li>https://www.sqlite.org/src/tktview/4baa46491212947 → <a href="changes.html#version_3_15_0">changes.html#version_3_15_0</a> + <a href="releaselog/3_15_0.html">releaselog/3_15_0.html</a> + <a href="releaselog/3_15_1.html">releaselog/3_15_1.html</a> + <a href="releaselog/3_15_2.html">releaselog/3_15_2.html</a> +<li>https://www.sqlite.org/src/tktview?name=38a97a87a6 → <a href="changes.html#version_3_10_0">changes.html#version_3_10_0</a> + <a href="releaselog/3_10_0.html">releaselog/3_10_0.html</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> +<li>https://www.sqlite.org/src/tktview?name=5d863f876e → <a href="oldnews.html">oldnews.html</a> +<li>https://www.sqlite.org/src/tktview?name=8a2adec166 → <a href="oldnews.html">oldnews.html</a> +<li>https://www.sqlite.org/src/tktview?name=ac661962a2 → <a href="oldnews.html">oldnews.html</a> +<li>https://www.sqlite.org/src/tktview?name=f97c4637102a3ae72b79 → <a href="changes.html#version_3_8_8_1">changes.html#version_3_8_8_1</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> +<li>https://www.sqlite.org/src/tree?ci=trunk → <a href="vtab.html#tabfunc2">vtab.html#tabfunc2</a> +<li>https://www.sqlite.org/src/vdiff?from=e4ab094f8afce0817f4074e823fabe59fc29ebb4&to=83afe23e553e802c0947c80d0ffdd120423e7c52&sbs=1 → <a href="oldnews.html">oldnews.html</a> +<li>https://www.sqlite.org/src/vpatch?from=version-3.9.0&to=version-3.9.1 → <a href="oldnews.html">oldnews.html</a> +<li>https://www.sqlite.org/th3 → <a href="qmplan.html">qmplan.html</a> +<li>https://www.tcl.tk/man/tcl8.3/UserCmd/tclsh.htm → <a href="cli.html#compiling">cli.html#compiling</a> +<li>https://www2.eecs.berkeley.edu/Pubs/TechRpts/2006/EECS-2006-1.html → <a href="faq.html#q6">faq.html#q6</a> +<li>https://www2.sqlite.org → <a href="qmplan.html">qmplan.html</a> +<li>https://www2.sqlite.org/docsrc → <a href="getthecode.html">getthecode.html</a> + <a href="qmplan.html">qmplan.html</a> +<li>https://www2.sqlite.org/forum → <a href="qmplan.html">qmplan.html</a> +<li>https://www2.sqlite.org/src → <a href="getthecode.html">getthecode.html</a> + <a href="qmplan.html">qmplan.html</a> +<li>https://www3.sqlite.org → <a href="qmplan.html">qmplan.html</a> +<li>https://www3.sqlite.org/cgi/dbsqlfuzz → <a href="qmplan.html">qmplan.html</a> +<li>https://www3.sqlite.org/cgi/docsrc → <a href="qmplan.html">qmplan.html</a> +<li>https://www3.sqlite.org/cgi/forum → <a href="qmplan.html">qmplan.html</a> +<li>https://www3.sqlite.org/cgi/src → <a href="qmplan.html">qmplan.html</a> +<li>https://www3.sqlite.org/cgi/th3 → <a href="qmplan.html">qmplan.html</a> +<li>https://www3.sqlite.org/docsrc → <a href="getthecode.html">getthecode.html</a> +<li>https://www3.sqlite.org/src → <a href="getthecode.html">getthecode.html</a> +<li>https://xkcd.com/1597/ → <a href="whynotgit.html">whynotgit.html</a> +<li>https://zlib.net → <a href="cli.html#compiling">cli.html#compiling</a> + <a href="compile.html#have_zlib">compile.html#have_zlib</a> + <a href="zipfile.html">zipfile.html</a> +<li>https://zlib.net/ → <a href="qmplan.html">qmplan.html</a> + <a href="sqlar.html#cltools">sqlar.html#cltools</a> + <a href="sqlar.html#dbasobj">sqlar.html#dbasobj</a> +<li>IEEE 754 floating point values are approximations → <a href="lang_aggfunc.html#sumunc">lang_aggfunc.html#sumunc</a> +<li>ieee754 extension → <a href="changes.html#version_3_33_0">changes.html#version_3_33_0</a> + <a href="releaselog/3_33_0.html">releaselog/3_33_0.html</a> +<li>ifnull → <a href="changes.html#version_3_6_21">changes.html#version_3_6_21</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="releaselog/3_6_21.html">releaselog/3_6_21.html</a> +<li>iif → <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="lang_expr.html#case">lang_expr.html#case</a> +<li>iif SQL function → <a href="changes.html#version_3_32_0">changes.html#version_3_32_0</a> + <a href="releaselog/3_32_0.html">releaselog/3_32_0.html</a> + <a href="releaselog/3_32_1.html">releaselog/3_32_1.html</a> + <a href="releaselog/3_32_2.html">releaselog/3_32_2.html</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> +<li>immutable query parameter → <a href="wal.html#advantages">wal.html#advantages</a> + <a href="wal.html#readonly">wal.html#readonly</a> + <a href="walformat.html#locks">walformat.html#locks</a> +<li>IN operator → <a href="c3ref/vtab_in.html">c3ref/vtab_in.html</a> + <a href="capi3ref.html#sqlite3_vtab_in">capi3ref.html#sqlite3_vtab_in</a> + <a href="changes.html#version_3_12_2">changes.html#version_3_12_2</a> + <a href="changes.html#version_3_13_0">changes.html#version_3_13_0</a> + <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="changes.html#version_3_15_0">changes.html#version_3_15_0</a> + <a href="changes.html#version_3_38_0">changes.html#version_3_38_0</a> + <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> + <a href="releaselog/3_13_0.html">releaselog/3_13_0.html</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="releaselog/3_15_0.html">releaselog/3_15_0.html</a> + <a href="releaselog/3_15_1.html">releaselog/3_15_1.html</a> + <a href="releaselog/3_15_2.html">releaselog/3_15_2.html</a> + <a href="releaselog/3_38_0.html">releaselog/3_38_0.html</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> + <a href="rowvalue.html#rvinop">rowvalue.html#rvinop</a> +<li>in-memory database → <a href="c3ref/open.html#coreuriqueryparameters">c3ref/open.html#coreuriqueryparameters</a> + <a href="capi3ref.html#coreuriqueryparameters">capi3ref.html#coreuriqueryparameters</a> + <a href="changes.html#version_3_7_13">changes.html#version_3_7_13</a> + <a href="cli.html#zipdb">cli.html#zipdb</a> + <a href="compile.html#omit_memorydb">compile.html#omit_memorydb</a> + <a href="lang_attach.html">lang_attach.html</a> + <a href="pragma.html#pragma_journal_mode">pragma.html#pragma_journal_mode</a> + <a href="releaselog/3_7_13.html">releaselog/3_7_13.html</a> +<li>in-memory databases → <a href="pragma.html#pragma_locking_mode">pragma.html#pragma_locking_mode</a> + <a href="pragma.html#pragma_temp_store">pragma.html#pragma_temp_store</a> + <a href="sharedcache.html#inmemsharedcache">sharedcache.html#inmemsharedcache</a> +<li>in-memory shared-cache → <a href="changes.html#version_3_7_13">changes.html#version_3_7_13</a> + <a href="releaselog/3_7_13.html">releaselog/3_7_13.html</a> +<li>increase in the default page size → <a href="news.html">news.html</a> +<li>incremental_vacuum → <a href="changes.html#version_3_6_12">changes.html#version_3_6_12</a> + <a href="changes.html#version_3_7_2">changes.html#version_3_7_2</a> + <a href="fileformat2.html#ovflpgs">fileformat2.html#ovflpgs</a> + <a href="fileformat2.html#schemaformat">fileformat2.html#schemaformat</a> + <a href="howtocorrupt.html#cfgerr">howtocorrupt.html#cfgerr</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_auto_vacuum">pragma.html#pragma_auto_vacuum</a> + <a href="releaselog/3_6_12.html">releaselog/3_6_12.html</a> + <a href="releaselog/3_7_2.html">releaselog/3_7_2.html</a> +<li>index b-tree → <a href="opcode.html#codes">opcode.html#codes</a> +<li>index_info → <a href="changes.html#version_3_30_0">changes.html#version_3_30_0</a> + <a href="releaselog/3_30_0.html">releaselog/3_30_0.html</a> + <a href="releaselog/3_30_1.html">releaselog/3_30_1.html</a> +<li>index_info pragma → <a href="pragma.html#pragfunc">pragma.html#pragfunc</a> + <a href="pragma.html#pragma_index_xinfo">pragma.html#pragma_index_xinfo</a> +<li>index_xinfo → <a href="changes.html#version_3_30_0">changes.html#version_3_30_0</a> + <a href="releaselog/3_30_0.html">releaselog/3_30_0.html</a> + <a href="releaselog/3_30_1.html">releaselog/3_30_1.html</a> +<li>index_xinfo pragma → <a href="pragma.html#pragma_index_info">pragma.html#pragma_index_info</a> +<li>INDEXED BY → <a href="changes.html#version_3_33_0">changes.html#version_3_33_0</a> + <a href="changes.html#version_3_6_4">changes.html#version_3_6_4</a> + <a href="fullsql.html">fullsql.html</a> + <a href="lang.html">lang.html</a> + <a href="queryplanner-ng.html#howtofix">queryplanner-ng.html#howtofix</a> + <a href="releaselog/3_33_0.html">releaselog/3_33_0.html</a> + <a href="releaselog/3_6_4.html">releaselog/3_6_4.html</a> +<li>indexed expressions → <a href="changes.html#version_3_41_0">changes.html#version_3_41_0</a> + <a href="releaselog/3_41_0.html">releaselog/3_41_0.html</a> + <a href="releaselog/3_41_1.html">releaselog/3_41_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> +<li>indexed-column → <a href="lang_createindex.html">lang_createindex.html</a> + <a href="lang_createtable.html">lang_createtable.html</a> + <a href="lang_createtable.html#primkeyconst">lang_createtable.html#primkeyconst</a> + <a href="lang_createtable.html#uniqueconst">lang_createtable.html#uniqueconst</a> + <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_insert.html">lang_insert.html</a> + <a href="lang_upsert.html">lang_upsert.html</a> + <a href="partialindex.html">partialindex.html</a> +<li>Indexes → <a href="stricttables.html">stricttables.html</a> +<li>Indexes On Expressions → <a href="fullsql.html">fullsql.html</a> + <a href="lang_createindex.html#indexexpr">lang_createindex.html#indexexpr</a> +<li>indexes on expressions → <a href="changes.html#version_3_15_0">changes.html#version_3_15_0</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="changes.html#version_3_26_0">changes.html#version_3_26_0</a> + <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="changes.html#version_3_30_0">changes.html#version_3_30_0</a> + <a href="changes.html#version_3_9_0">changes.html#version_3_9_0</a> + <a href="features.html">features.html</a> + <a href="lang_reindex.html">lang_reindex.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="optoverview.html#where_clause">optoverview.html#where_clause</a> + <a href="rbu.html#rbu_updates">rbu.html#rbu_updates</a> + <a href="rbu.html#rbu_vacuum">rbu.html#rbu_vacuum</a> + <a href="releaselog/3_15_0.html">releaselog/3_15_0.html</a> + <a href="releaselog/3_15_1.html">releaselog/3_15_1.html</a> + <a href="releaselog/3_15_2.html">releaselog/3_15_2.html</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> + <a href="releaselog/3_26_0.html">releaselog/3_26_0.html</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> + <a href="releaselog/3_30_0.html">releaselog/3_30_0.html</a> + <a href="releaselog/3_30_1.html">releaselog/3_30_1.html</a> + <a href="releaselog/3_9_0.html">releaselog/3_9_0.html</a> + <a href="releaselog/3_9_1.html">releaselog/3_9_1.html</a> + <a href="releaselog/3_9_2.html">releaselog/3_9_2.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> + <a href="versionnumbers.html">versionnumbers.html</a> +<li>indexing → <a href="eqp.html">eqp.html</a> + <a href="queryplanner-ng.html">queryplanner-ng.html</a> +<li>indexing tutorial → <a href="imposter.html">imposter.html</a> + <a href="optoverview.html">optoverview.html</a> +<li>INSERT → <a href="autoinc.html">autoinc.html</a> + <a href="c3ref/last_insert_rowid.html">c3ref/last_insert_rowid.html</a> + <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> + <a href="c3ref/reset.html">c3ref/reset.html</a> + <a href="c3ref/total_changes.html">c3ref/total_changes.html</a> + <a href="capi3ref.html#sqlite3_last_insert_rowid">capi3ref.html#sqlite3_last_insert_rowid</a> + <a href="capi3ref.html#sqlite3_preupdate_blobwrite">capi3ref.html#sqlite3_preupdate_blobwrite</a> + <a href="capi3ref.html#sqlite3_reset">capi3ref.html#sqlite3_reset</a> + <a href="capi3ref.html#sqlite3_total_changes">capi3ref.html#sqlite3_total_changes</a> + <a href="changes.html#version_3_35_0">changes.html#version_3_35_0</a> + <a href="changes.html#version_3_7_11">changes.html#version_3_7_11</a> + <a href="changes.html#version_3_8_10_2">changes.html#version_3_8_10_2</a> + <a href="compile.html#omit_compound_select">compile.html#omit_compound_select</a> + <a href="conflict.html">conflict.html</a> + <a href="faq.html#q1">faq.html#q1</a> + <a href="faq.html#q19">faq.html#q19</a> + <a href="fts3.html#fts4">fts3.html#fts4</a> + <a href="fts5.html">fts5.html</a> + <a href="fullsql.html">fullsql.html</a> + <a href="isolation.html">isolation.html</a> + <a href="lang.html">lang.html</a> + <a href="lang_analyze.html#req">lang_analyze.html#req</a> + <a href="lang_conflict.html">lang_conflict.html</a> + <a href="lang_createtable.html#dfltval">lang_createtable.html#dfltval</a> + <a href="lang_createtable.html#notnullconst">lang_createtable.html#notnullconst</a> + <a href="lang_createtable.html#primkeyconst">lang_createtable.html#primkeyconst</a> + <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_createview.html">lang_createview.html</a> + <a href="lang_replace.html">lang_replace.html</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_upsert.html">lang_upsert.html</a> + <a href="lang_upsert.html#parseambig">lang_upsert.html#parseambig</a> + <a href="lang_with.html">lang_with.html</a> + <a href="pragma.html">pragma.html</a> + <a href="pragma.html#pragma_count_changes">pragma.html#pragma_count_changes</a> + <a href="pragma.html#pragma_writable_schema">pragma.html#pragma_writable_schema</a> + <a href="rbu.html">rbu.html</a> + <a href="rbu.html#rbu_updates">rbu.html#rbu_updates</a> + <a href="releaselog/3_35_0.html">releaselog/3_35_0.html</a> + <a href="releaselog/3_35_1.html">releaselog/3_35_1.html</a> + <a href="releaselog/3_35_2.html">releaselog/3_35_2.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> + <a href="releaselog/3_7_11.html">releaselog/3_7_11.html</a> + <a href="releaselog/3_8_10_2.html">releaselog/3_8_10_2.html</a> + <a href="rtree.html">rtree.html</a> + <a href="vtab.html">vtab.html</a> + <a href="vtab.html#hiddencol">vtab.html#hiddencol</a> +<li>insert-stmt → <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_insert.html">lang_insert.html</a> +<li>INSTEAD OF trigger → <a href="c3ref/changes.html">c3ref/changes.html</a> + <a href="capi3ref.html#sqlite3_changes">capi3ref.html#sqlite3_changes</a> + <a href="lang_createview.html">lang_createview.html</a> + <a href="pragma.html#pragma_count_changes">pragma.html#pragma_count_changes</a> +<li>instr → <a href="changes.html#version_3_15_2">changes.html#version_3_15_2</a> + <a href="changes.html#version_3_7_15">changes.html#version_3_7_15</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="releaselog/3_15_2.html">releaselog/3_15_2.html</a> + <a href="releaselog/3_7_15.html">releaselog/3_7_15.html</a> +<li>INTEGER PRIMARY KEY → <a href="autoinc.html">autoinc.html</a> + <a href="c3ref/last_insert_rowid.html">c3ref/last_insert_rowid.html</a> + <a href="c3ref/table_column_metadata.html">c3ref/table_column_metadata.html</a> + <a href="capi3ref.html#sqlite3_last_insert_rowid">capi3ref.html#sqlite3_last_insert_rowid</a> + <a href="capi3ref.html#sqlite3_table_column_metadata">capi3ref.html#sqlite3_table_column_metadata</a> + <a href="changes.html#version_3_12_2">changes.html#version_3_12_2</a> + <a href="changes.html#version_3_13_0">changes.html#version_3_13_0</a> + <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="compile.html#omit_autoincrement">compile.html#omit_autoincrement</a> + <a href="datatype3.html#storageclasses">datatype3.html#storageclasses</a> + <a href="faq.html#q1">faq.html#q1</a> + <a href="faq.html#q3">faq.html#q3</a> + <a href="fileformat2.html##sqltab">fileformat2.html##sqltab</a> + <a href="fileformat2.html#ffschema">fileformat2.html#ffschema</a> + <a href="fileformat2.html#intschema">fileformat2.html#intschema</a> + <a href="fileformat2.html#seqtab">fileformat2.html#seqtab</a> + <a href="fts3.html#simple_fts_queries">fts3.html#simple_fts_queries</a> + <a href="gencol.html">gencol.html</a> + <a href="lang_createtable.html#primkeyconst">lang_createtable.html#primkeyconst</a> + <a href="lang_createtable.html#uniqueconst">lang_createtable.html#uniqueconst</a> + <a href="lang_vacuum.html#howvacuumworks">lang_vacuum.html#howvacuumworks</a> + <a href="queryplanner.html#searching">queryplanner.html#searching</a> + <a href="quirks.html">quirks.html</a> + <a href="quirks.html#dblquote">quirks.html#dblquote</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> + <a href="releaselog/3_13_0.html">releaselog/3_13_0.html</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> + <a href="rowidtable.html">rowidtable.html</a> + <a href="schematab.html">schematab.html</a> + <a href="stricttables.html">stricttables.html</a> + <a href="withoutrowid.html">withoutrowid.html</a> + <a href="withoutrowid.html#bene">withoutrowid.html#bene</a> +<li>integrity_check → <a href="pragma.html#pragma_quick_check">pragma.html#pragma_quick_check</a> + <a href="testing.html#crashtesting">testing.html#crashtesting</a> +<li>integrity_check pragma → <a href="changes.html#version_3_6_23">changes.html#version_3_6_23</a> + <a href="compile.html#omit_integrity_check">compile.html#omit_integrity_check</a> + <a href="howtocorrupt.html#cfgerr">howtocorrupt.html#cfgerr</a> + <a href="releaselog/3_6_23.html">releaselog/3_6_23.html</a> +<li>internal indexes → <a href="fileformat2.html#ffschema">fileformat2.html#ffschema</a> + <a href="optoverview.html#autoindex">optoverview.html#autoindex</a> + <a href="schematab.html">schematab.html</a> +<li>internal schema objects → <a href="fileformat2.html#ffschema">fileformat2.html#ffschema</a> +<li>internal table → <a href="autoinc.html">autoinc.html</a> +<li>internal tables → <a href="lang_analyze.html">lang_analyze.html</a> + <a href="lang_analyze.html#req">lang_analyze.html#req</a> +<li>Internal Versus External BLOBs → <a href="aff_short.html">aff_short.html</a> + <a href="appfileformat.html">appfileformat.html</a> + <a href="fasterthanfs.html">fasterthanfs.html</a> + <a href="whyc.html">whyc.html</a> +<li>invalid UTF → <a href="c3ref/errcode.html">c3ref/errcode.html</a> + <a href="capi3ref.html#sqlite3_errcode">capi3ref.html#sqlite3_errcode</a> +<li>IS DISTINCT FROM → <a href="changes.html#version_3_39_0">changes.html#version_3_39_0</a> + <a href="releaselog/3_39_0.html">releaselog/3_39_0.html</a> + <a href="releaselog/3_39_1.html">releaselog/3_39_1.html</a> + <a href="releaselog/3_39_2.html">releaselog/3_39_2.html</a> + <a href="releaselog/3_39_3.html">releaselog/3_39_3.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> +<li>IS NOT DISTINCT FROM → <a href="changes.html#version_3_39_0">changes.html#version_3_39_0</a> + <a href="releaselog/3_39_0.html">releaselog/3_39_0.html</a> + <a href="releaselog/3_39_1.html">releaselog/3_39_1.html</a> + <a href="releaselog/3_39_2.html">releaselog/3_39_2.html</a> + <a href="releaselog/3_39_3.html">releaselog/3_39_3.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> +<li>IS operator → <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="fullsql.html">fullsql.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> + <a href="windowfunctions.html#grouptype">windowfunctions.html#grouptype</a> +<li>jfuzz → <a href="changes.html#version_3_45_1">changes.html#version_3_45_1</a> + <a href="releaselog/3_45_1.html">releaselog/3_45_1.html</a> +<li>join order → <a href="eqp.html">eqp.html</a> +<li>join-clause → <a href="lang_aggfunc.html">lang_aggfunc.html</a> + <a href="lang_altertable.html">lang_altertable.html</a> + <a href="lang_attach.html">lang_attach.html</a> + <a href="lang_createindex.html">lang_createindex.html</a> + <a href="lang_createtable.html">lang_createtable.html</a> + <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_createview.html">lang_createview.html</a> + <a href="lang_delete.html">lang_delete.html</a> + <a href="lang_expr.html">lang_expr.html</a> + <a href="lang_insert.html">lang_insert.html</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_select.html">lang_select.html</a> + <a href="lang_select.html#compound">lang_select.html#compound</a> + <a href="lang_select.html#simpleselect">lang_select.html#simpleselect</a> + <a href="lang_update.html">lang_update.html</a> + <a href="lang_upsert.html">lang_upsert.html</a> + <a href="lang_with.html">lang_with.html</a> + <a href="partialindex.html">partialindex.html</a> + <a href="windowfunctions.html">windowfunctions.html</a> + <a href="windowfunctions.html#framespec">windowfunctions.html#framespec</a> + <a href="windowfunctions.html#wexcls">windowfunctions.html#wexcls</a> +<li>join-constraint → <a href="lang_aggfunc.html">lang_aggfunc.html</a> + <a href="lang_altertable.html">lang_altertable.html</a> + <a href="lang_attach.html">lang_attach.html</a> + <a href="lang_createindex.html">lang_createindex.html</a> + <a href="lang_createtable.html">lang_createtable.html</a> + <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_createview.html">lang_createview.html</a> + <a href="lang_delete.html">lang_delete.html</a> + <a href="lang_expr.html">lang_expr.html</a> + <a href="lang_insert.html">lang_insert.html</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_select.html">lang_select.html</a> + <a href="lang_select.html#compound">lang_select.html#compound</a> + <a href="lang_select.html#fromclause">lang_select.html#fromclause</a> + <a href="lang_select.html#simpleselect">lang_select.html#simpleselect</a> + <a href="lang_update.html">lang_update.html</a> + <a href="lang_upsert.html">lang_upsert.html</a> + <a href="lang_with.html">lang_with.html</a> + <a href="partialindex.html">partialindex.html</a> + <a href="windowfunctions.html">windowfunctions.html</a> + <a href="windowfunctions.html#framespec">windowfunctions.html#framespec</a> + <a href="windowfunctions.html#wexcls">windowfunctions.html#wexcls</a> +<li>join-operator → <a href="lang_aggfunc.html">lang_aggfunc.html</a> + <a href="lang_altertable.html">lang_altertable.html</a> + <a href="lang_attach.html">lang_attach.html</a> + <a href="lang_createindex.html">lang_createindex.html</a> + <a href="lang_createtable.html">lang_createtable.html</a> + <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_createview.html">lang_createview.html</a> + <a href="lang_delete.html">lang_delete.html</a> + <a href="lang_expr.html">lang_expr.html</a> + <a href="lang_insert.html">lang_insert.html</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_select.html">lang_select.html</a> + <a href="lang_select.html#compound">lang_select.html#compound</a> + <a href="lang_select.html#fromclause">lang_select.html#fromclause</a> + <a href="lang_select.html#nonstd">lang_select.html#nonstd</a> + <a href="lang_select.html#simpleselect">lang_select.html#simpleselect</a> + <a href="lang_update.html">lang_update.html</a> + <a href="lang_upsert.html">lang_upsert.html</a> + <a href="lang_with.html">lang_with.html</a> + <a href="partialindex.html">partialindex.html</a> + <a href="windowfunctions.html">windowfunctions.html</a> + <a href="windowfunctions.html#framespec">windowfunctions.html#framespec</a> + <a href="windowfunctions.html#wexcls">windowfunctions.html#wexcls</a> +<li>journal_mode → <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="changes.html#version_3_5_9">changes.html#version_3_5_9</a> + <a href="lang_attach.html">lang_attach.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_synchronous">pragma.html#pragma_synchronous</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> + <a href="releaselog/3_5_9.html">releaselog/3_5_9.html</a> + <a href="tempfiles.html#tempdb">tempfiles.html#tempdb</a> + <a href="wal.html#fast">wal.html#fast</a> + <a href="wal.html#readonly">wal.html#readonly</a> +<li>journal_mode pragma → <a href="atomiccommit.html#keepcache">atomiccommit.html#keepcache</a> + <a href="changes.html#version_3_6_5">changes.html#version_3_6_5</a> + <a href="compile.html#default_journal_size_limit">compile.html#default_journal_size_limit</a> + <a href="fileformat2.html#rollbackjournal">fileformat2.html#rollbackjournal</a> + <a href="isolation.html">isolation.html</a> + <a href="pragma.html#pragma_wal_autocheckpoint">pragma.html#pragma_wal_autocheckpoint</a> + <a href="pragma.html#pragma_wal_checkpoint">pragma.html#pragma_wal_checkpoint</a> + <a href="releaselog/3_6_5.html">releaselog/3_6_5.html</a> + <a href="tempfiles.html#rollbackjrnl">tempfiles.html#rollbackjrnl</a> +<li>journal_size_limit pragma → <a href="compile.html#default_journal_size_limit">compile.html#default_journal_size_limit</a> + <a href="wal.html#bigwal">wal.html#bigwal</a> +<li>json → <a href="changes.html#version_3_10_0">changes.html#version_3_10_0</a> + <a href="json1.html#jarray">json1.html#jarray</a> + <a href="json1.html#jobj">json1.html#jobj</a> + <a href="json1.html#jset">json1.html#jset</a> + <a href="json1.html#json5">json1.html#json5</a> + <a href="json1.html#varg">json1.html#varg</a> + <a href="releaselog/3_10_0.html">releaselog/3_10_0.html</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> +<li>JSON BLOB input bug → <a href="changes.html#version_3_45_1">changes.html#version_3_45_1</a> + <a href="releaselog/3_45_1.html">releaselog/3_45_1.html</a> +<li>JSON function path arguments → <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> +<li>JSON SQL functions → <a href="changes.html#version_3_42_0">changes.html#version_3_42_0</a> + <a href="changes.html#version_3_45_0">changes.html#version_3_45_0</a> + <a href="compile.html#enable_json1">compile.html#enable_json1</a> + <a href="compile.html#json_max_depth">compile.html#json_max_depth</a> + <a href="compile.html#omit_json">compile.html#omit_json</a> + <a href="lang_aggfunc.html">lang_aggfunc.html</a> + <a href="loadext.html#write">loadext.html#write</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_42_0.html">releaselog/3_42_0.html</a> + <a href="releaselog/3_45_0.html">releaselog/3_45_0.html</a> + <a href="releaselog/3_45_1.html">releaselog/3_45_1.html</a> + <a href="testing.html#dbsqlfuzz">testing.html#dbsqlfuzz</a> + <a href="testing.html#slt">testing.html#slt</a> +<li>json1 → <a href="amalgamation.html">amalgamation.html</a> + <a href="changes.html#version_3_11_0">changes.html#version_3_11_0</a> + <a href="changes.html#version_3_15_2">changes.html#version_3_15_2</a> + <a href="changes.html#version_3_18_0">changes.html#version_3_18_0</a> + <a href="changes.html#version_3_43_0">changes.html#version_3_43_0</a> + <a href="features.html">features.html</a> + <a href="fullsql.html">fullsql.html</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="lang_expr.html#*funcinexpr">lang_expr.html#*funcinexpr</a> + <a href="news.html">news.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_11_0.html">releaselog/3_11_0.html</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> + <a href="releaselog/3_15_2.html">releaselog/3_15_2.html</a> + <a href="releaselog/3_18_0.html">releaselog/3_18_0.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> + <a href="releaselog/3_43_0.html">releaselog/3_43_0.html</a> + <a href="releaselog/3_43_1.html">releaselog/3_43_1.html</a> + <a href="releaselog/3_43_2.html">releaselog/3_43_2.html</a> +<li>JSON5 → <a href="json1.html#jvalid">json1.html#jvalid</a> + <a href="news.html">news.html</a> +<li>JSON5 extensions → <a href="changes.html#version_3_42_0">changes.html#version_3_42_0</a> + <a href="releaselog/3_42_0.html">releaselog/3_42_0.html</a> +<li>json_array → <a href="json1.html#jarrayb">json1.html#jarrayb</a> + <a href="json1.html#jobj">json1.html#jobj</a> + <a href="json1.html#jset">json1.html#jset</a> + <a href="json1.html#varg">json1.html#varg</a> +<li>json_array_length → <a href="changes.html#version_3_43_1">changes.html#version_3_43_1</a> + <a href="releaselog/3_43_1.html">releaselog/3_43_1.html</a> + <a href="releaselog/3_43_2.html">releaselog/3_43_2.html</a> +<li>json_each → <a href="changes.html#version_3_24_0">changes.html#version_3_24_0</a> + <a href="changes.html#version_3_41_0">changes.html#version_3_41_0</a> + <a href="flextypegood.html">flextypegood.html</a> + <a href="releaselog/3_24_0.html">releaselog/3_24_0.html</a> + <a href="releaselog/3_41_0.html">releaselog/3_41_0.html</a> + <a href="releaselog/3_41_1.html">releaselog/3_41_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> + <a href="vtab.html#customvtab">vtab.html#customvtab</a> + <a href="vtablist.html">vtablist.html</a> +<li>json_error_position → <a href="json1.html#howtocompile">json1.html#howtocompile</a> +<li>json_extract → <a href="changes.html#version_3_19_0">changes.html#version_3_19_0</a> + <a href="json1.html#jexb">json1.html#jexb</a> + <a href="json1.html#jptr">json1.html#jptr</a> + <a href="releaselog/3_19_0.html">releaselog/3_19_0.html</a> + <a href="releaselog/3_19_1.html">releaselog/3_19_1.html</a> + <a href="releaselog/3_19_2.html">releaselog/3_19_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> +<li>json_group_array → <a href="changes.html#version_3_10_0">changes.html#version_3_10_0</a> + <a href="changes.html#version_3_44_0">changes.html#version_3_44_0</a> + <a href="releaselog/3_10_0.html">releaselog/3_10_0.html</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> + <a href="releaselog/3_44_0.html">releaselog/3_44_0.html</a> + <a href="releaselog/3_44_1.html">releaselog/3_44_1.html</a> + <a href="releaselog/3_44_2.html">releaselog/3_44_2.html</a> +<li>json_group_object → <a href="changes.html#version_3_10_0">changes.html#version_3_10_0</a> + <a href="lang_aggfunc.html#aggorderby">lang_aggfunc.html#aggorderby</a> + <a href="releaselog/3_10_0.html">releaselog/3_10_0.html</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> +<li>json_insert → <a href="json1.html#jsetb">json1.html#jsetb</a> +<li>json_object → <a href="json1.html#jarray">json1.html#jarray</a> + <a href="json1.html#jobjb">json1.html#jobjb</a> + <a href="json1.html#jset">json1.html#jset</a> +<li>json_patch → <a href="changes.html#version_3_18_0">changes.html#version_3_18_0</a> + <a href="json1.html#jpatchb">json1.html#jpatchb</a> + <a href="releaselog/3_18_0.html">releaselog/3_18_0.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> +<li>json_quote → <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="json1.html#howtocompile">json1.html#howtocompile</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> +<li>json_remove → <a href="changes.html#version_3_43_1">changes.html#version_3_43_1</a> + <a href="json1.html#jpatch">json1.html#jpatch</a> + <a href="json1.html#jrmb">json1.html#jrmb</a> + <a href="releaselog/3_43_1.html">releaselog/3_43_1.html</a> + <a href="releaselog/3_43_2.html">releaselog/3_43_2.html</a> +<li>json_replace → <a href="json1.html#jsetb">json1.html#jsetb</a> +<li>json_set → <a href="json1.html#jpatch">json1.html#jpatch</a> + <a href="json1.html#jsetb">json1.html#jsetb</a> +<li>json_tree → <a href="changes.html#version_3_41_0">changes.html#version_3_41_0</a> + <a href="flextypegood.html">flextypegood.html</a> + <a href="releaselog/3_41_0.html">releaselog/3_41_0.html</a> + <a href="releaselog/3_41_1.html">releaselog/3_41_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> + <a href="vtab.html#customvtab">vtab.html#customvtab</a> + <a href="vtablist.html">vtablist.html</a> +<li>json_valid → <a href="changes.html#version_3_45_0">changes.html#version_3_45_0</a> + <a href="json1.html#howtocompile">json1.html#howtocompile</a> + <a href="json1.html#json5">json1.html#json5</a> + <a href="json1.html#jsonbx">json1.html#jsonbx</a> + <a href="releaselog/3_45_0.html">releaselog/3_45_0.html</a> + <a href="releaselog/3_45_1.html">releaselog/3_45_1.html</a> +<li>JSONB → <a href="changes.html#version_3_45_0">changes.html#version_3_45_0</a> + <a href="changes.html#version_3_45_1">changes.html#version_3_45_1</a> + <a href="json1.html#jgroupobjectb">json1.html#jgroupobjectb</a> + <a href="json1.html#jvalid">json1.html#jvalid</a> + <a href="releaselog/3_45_0.html">releaselog/3_45_0.html</a> + <a href="releaselog/3_45_1.html">releaselog/3_45_1.html</a> + <a href="testing.html#dbsqlfuzz">testing.html#dbsqlfuzz</a> + <a href="testing.html#slt">testing.html#slt</a> +<li>jsonb_extract → <a href="json1.html#jptr">json1.html#jptr</a> +<li>julianday modifier → <a href="changes.html#version_3_38_0">changes.html#version_3_38_0</a> + <a href="releaselog/3_38_0.html">releaselog/3_38_0.html</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> +<li>keyword index → <a href="doclist.html">doclist.html</a> + <a href="sitemap.html">sitemap.html</a> +<li>langexpr → <a href="lang_vacuum.html#vacuuminto">lang_vacuum.html#vacuuminto</a> +<li>languageid → <a href="fts3.html#f4alid">fts3.html#f4alid</a> +<li>last_insert_rowid → <a href="deterministic.html">deterministic.html</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="withoutrowid.html">withoutrowid.html</a> +<li>last_insert_rowid SQL function → <a href="c3ref/last_insert_rowid.html">c3ref/last_insert_rowid.html</a> + <a href="capi3ref.html#sqlite3_last_insert_rowid">capi3ref.html#sqlite3_last_insert_rowid</a> +<li>LEFT JOIN strength reduction optimization → <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="changes.html#version_3_23_1">changes.html#version_3_23_1</a> + <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> +<li>legacy_file_format → <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> +<li>legacy_file_format pragma → <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="fileformat2.html#schemaformat">fileformat2.html#schemaformat</a> + <a href="lang_createindex.html#descidx">lang_createindex.html#descidx</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> +<li>Lemon → <a href="changes.html#version_2_8_7">changes.html#version_2_8_7</a> + <a href="changes.html#version_3_8_3">changes.html#version_3_8_3</a> + <a href="releaselog/3_8_3.html">releaselog/3_8_3.html</a> +<li>Lemon LALR parser generator → <a href="changes.html#version_3_6_23">changes.html#version_3_6_23</a> + <a href="releaselog/3_6_23.html">releaselog/3_6_23.html</a> +<li>Lemon parser generator → <a href="amalgamation.html">amalgamation.html</a> + <a href="arch.html">arch.html</a> + <a href="changes.html#version_1_0_28">changes.html#version_1_0_28</a> + <a href="changes.html#version_2_4_0">changes.html#version_2_4_0</a> + <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="changes.html#version_3_17_0">changes.html#version_3_17_0</a> + <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="changes.html#version_3_8_3">changes.html#version_3_8_3</a> + <a href="compile.html#enable_update_delete_limit">compile.html#enable_update_delete_limit</a> + <a href="compile.html#omitfeatures">compile.html#omitfeatures</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="releaselog/3_17_0.html">releaselog/3_17_0.html</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> + <a href="releaselog/3_8_3.html">releaselog/3_8_3.html</a> +<li>length → <a href="changes.html#version_3_7_12">changes.html#version_3_7_12</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="lang_corefunc.html#octet_length">lang_corefunc.html#octet_length</a> + <a href="releaselog/3_7_12.html">releaselog/3_7_12.html</a> +<li>length SQL function → <a href="nulinstr.html">nulinstr.html</a> +<li>library size → <a href="about.html">about.html</a> +<li>LIKE → <a href="c3ref/c_limit_attached.html#sqlitelimitlikepatternlength">c3ref/c_limit_attached.html#sqlitelimitlikepatternlength</a> + <a href="c3ref/prepare.html">c3ref/prepare.html</a> + <a href="c3ref/strlike.html">c3ref/strlike.html</a> + <a href="capi3ref.html#sqlite3_prepare">capi3ref.html#sqlite3_prepare</a> + <a href="capi3ref.html#sqlite3_strlike">capi3ref.html#sqlite3_strlike</a> + <a href="capi3ref.html#sqlitelimitlikepatternlength">capi3ref.html#sqlitelimitlikepatternlength</a> + <a href="changes.html#version_3_10_0">changes.html#version_3_10_0</a> + <a href="changes.html#version_3_10_2">changes.html#version_3_10_2</a> + <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="changes.html#version_3_16_0">changes.html#version_3_16_0</a> + <a href="changes.html#version_3_32_0">changes.html#version_3_32_0</a> + <a href="changes.html#version_3_35_0">changes.html#version_3_35_0</a> + <a href="cli.html#sha3sum">cli.html#sha3sum</a> + <a href="compile.html#case_sensitive_like">compile.html#case_sensitive_like</a> + <a href="compile.html#like_doesnt_match_blobs">compile.html#like_doesnt_match_blobs</a> + <a href="compile.html#omit_like_optimization">compile.html#omit_like_optimization</a> + <a href="compile.html#rcmd">compile.html#rcmd</a> + <a href="invalidutf.html">invalidutf.html</a> + <a href="lang_corefunc.html#like">lang_corefunc.html#like</a> + <a href="limits.html#max_like_pattern_length">limits.html#max_like_pattern_length</a> + <a href="oldnews.html">oldnews.html</a> + <a href="optoverview.html#like_opt">optoverview.html#like_opt</a> + <a href="pragma.html#pragma_case_sensitive_like">pragma.html#pragma_case_sensitive_like</a> + <a href="releaselog/3_10_0.html">releaselog/3_10_0.html</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="releaselog/3_16_0.html">releaselog/3_16_0.html</a> + <a href="releaselog/3_16_1.html">releaselog/3_16_1.html</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> + <a href="releaselog/3_32_0.html">releaselog/3_32_0.html</a> + <a href="releaselog/3_32_1.html">releaselog/3_32_1.html</a> + <a href="releaselog/3_32_2.html">releaselog/3_32_2.html</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> + <a href="releaselog/3_35_0.html">releaselog/3_35_0.html</a> + <a href="releaselog/3_35_1.html">releaselog/3_35_1.html</a> + <a href="releaselog/3_35_2.html">releaselog/3_35_2.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> + <a href="vtab.html#xfindfunction">vtab.html#xfindfunction</a> +<li>like → <a href="faq.html#q18">faq.html#q18</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="lang_expr.html#like">lang_expr.html#like</a> + <a href="optoverview.html#like_opt">optoverview.html#like_opt</a> +<li>LIKE optimization → <a href="changes.html#version_3_18_0">changes.html#version_3_18_0</a> + <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="changes.html#version_3_29_0">changes.html#version_3_29_0</a> + <a href="changes.html#version_3_7_1">changes.html#version_3_7_1</a> + <a href="compile.html#rcmd">compile.html#rcmd</a> + <a href="releaselog/3_18_0.html">releaselog/3_18_0.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> + <a href="releaselog/3_29_0.html">releaselog/3_29_0.html</a> + <a href="releaselog/3_7_1.html">releaselog/3_7_1.html</a> +<li>likelihood → <a href="changes.html#version_3_8_1">changes.html#version_3_8_1</a> + <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="lang_corefunc.html#likely">lang_corefunc.html#likely</a> + <a href="lang_corefunc.html#unlikely">lang_corefunc.html#unlikely</a> + <a href="oldnews.html">oldnews.html</a> + <a href="queryplanner-ng.html#howtofix">queryplanner-ng.html#howtofix</a> + <a href="releaselog/3_8_1.html">releaselog/3_8_1.html</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> +<li>likely → <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="lang_corefunc.html#likelihood">lang_corefunc.html#likelihood</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> +<li>LIMIT → <a href="lang_insert.html">lang_insert.html</a> + <a href="lang_select.html#compound">lang_select.html#compound</a> + <a href="lang_select.html#values">lang_select.html#values</a> +<li>limit categories → <a href="c3ref/limit.html">c3ref/limit.html</a> + <a href="capi3ref.html#sqlite3_limit">capi3ref.html#sqlite3_limit</a> +<li>limits → <a href="c3ref/c_limit_attached.html">c3ref/c_limit_attached.html</a> + <a href="c3ref/limit.html">c3ref/limit.html</a> + <a href="capi3ref.html#SQLITE_LIMIT_ATTACHED">capi3ref.html#SQLITE_LIMIT_ATTACHED</a> + <a href="capi3ref.html#sqlite3_limit">capi3ref.html#sqlite3_limit</a> + <a href="compile.html#yystackdepth">compile.html#yystackdepth</a> + <a href="security.html">security.html</a> + <a href="testing.html#tension">testing.html#tension</a> +<li>list of virtual tables → <a href="vtab.html">vtab.html</a> +<li>literal-value → <a href="lang_aggfunc.html">lang_aggfunc.html</a> + <a href="lang_altertable.html">lang_altertable.html</a> + <a href="lang_attach.html">lang_attach.html</a> + <a href="lang_createindex.html">lang_createindex.html</a> + <a href="lang_createtable.html">lang_createtable.html</a> + <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_createview.html">lang_createview.html</a> + <a href="lang_delete.html">lang_delete.html</a> + <a href="lang_expr.html">lang_expr.html</a> + <a href="lang_insert.html">lang_insert.html</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_select.html">lang_select.html</a> + <a href="lang_select.html#compound">lang_select.html#compound</a> + <a href="lang_select.html#simpleselect">lang_select.html#simpleselect</a> + <a href="lang_update.html">lang_update.html</a> + <a href="lang_upsert.html">lang_upsert.html</a> + <a href="lang_with.html">lang_with.html</a> + <a href="partialindex.html">partialindex.html</a> + <a href="windowfunctions.html">windowfunctions.html</a> + <a href="windowfunctions.html#framespec">windowfunctions.html#framespec</a> + <a href="windowfunctions.html#wexcls">windowfunctions.html#wexcls</a> +<li>ln → <a href="lang_mathfunc.html">lang_mathfunc.html</a> +<li>load_extension → <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfigenableloadextension">c3ref/c_dbconfig_defensive.html#sqlitedbconfigenableloadextension</a> + <a href="c3ref/enable_load_extension.html">c3ref/enable_load_extension.html</a> + <a href="c3ref/load_extension.html">c3ref/load_extension.html</a> + <a href="capi3ref.html#sqlite3_enable_load_extension">capi3ref.html#sqlite3_enable_load_extension</a> + <a href="capi3ref.html#sqlite3_load_extension">capi3ref.html#sqlite3_load_extension</a> + <a href="capi3ref.html#sqlitedbconfigenableloadextension">capi3ref.html#sqlitedbconfigenableloadextension</a> + <a href="changes.html#version_3_13_0">changes.html#version_3_13_0</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="loadext.html">loadext.html</a> + <a href="releaselog/3_13_0.html">releaselog/3_13_0.html</a> + <a href="tclsqlite.html#enable_load_extension">tclsqlite.html#enable_load_extension</a> +<li>load_extension SQL function → <a href="c3ref/c_deterministic.html#sqliteinnocuous">c3ref/c_deterministic.html#sqliteinnocuous</a> + <a href="c3ref/load_extension.html">c3ref/load_extension.html</a> + <a href="capi3ref.html#sqlite3_load_extension">capi3ref.html#sqlite3_load_extension</a> + <a href="capi3ref.html#sqliteinnocuous">capi3ref.html#sqliteinnocuous</a> + <a href="howtocompile.html#cli">howtocompile.html#cli</a> +<li>loadable extension → <a href="carray.html">carray.html</a> + <a href="changes.html#version_3_16_0">changes.html#version_3_16_0</a> + <a href="changes.html#version_3_19_0">changes.html#version_3_19_0</a> + <a href="changes.html#version_3_32_0">changes.html#version_3_32_0</a> + <a href="changes.html#version_3_8_0">changes.html#version_3_8_0</a> + <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="cksumvfs.html">cksumvfs.html</a> + <a href="cli.html#fileio">cli.html#fileio</a> + <a href="csv.html">csv.html</a> + <a href="lang_aggfunc.html#sumunc">lang_aggfunc.html#sumunc</a> + <a href="releaselog/3_16_0.html">releaselog/3_16_0.html</a> + <a href="releaselog/3_16_1.html">releaselog/3_16_1.html</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> + <a href="releaselog/3_19_0.html">releaselog/3_19_0.html</a> + <a href="releaselog/3_19_1.html">releaselog/3_19_1.html</a> + <a href="releaselog/3_19_2.html">releaselog/3_19_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> + <a href="releaselog/3_32_0.html">releaselog/3_32_0.html</a> + <a href="releaselog/3_32_1.html">releaselog/3_32_1.html</a> + <a href="releaselog/3_32_2.html">releaselog/3_32_2.html</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> + <a href="releaselog/3_8_0.html">releaselog/3_8_0.html</a> + <a href="releaselog/3_8_0_1.html">releaselog/3_8_0_1.html</a> + <a href="releaselog/3_8_0_2.html">releaselog/3_8_0_2.html</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> + <a href="rescode.html#ok_load_permanently">rescode.html#ok_load_permanently</a> + <a href="series.html">series.html</a> + <a href="spellfix1.html">spellfix1.html</a> + <a href="swarmvtab.html#compiling_and_using_swarmvtab">swarmvtab.html#compiling_and_using_swarmvtab</a> + <a href="uintcseq.html">uintcseq.html</a> + <a href="unionvtab.html">unionvtab.html</a> + <a href="vtab.html#customvtab">vtab.html#customvtab</a> + <a href="zipfile.html">zipfile.html</a> +<li>loadable extensions → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/api_routines.html">c3ref/api_routines.html</a> + <a href="capi3ref.html#sqlite3_api_routines">capi3ref.html#sqlite3_api_routines</a> + <a href="changes.html#version_3_31_1">changes.html#version_3_31_1</a> + <a href="cintro.html">cintro.html</a> + <a href="cli.html#arinsup">cli.html#arinsup</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> + <a href="rescode.html#ok_load_permanently">rescode.html#ok_load_permanently</a> +<li>localtime modifier → <a href="changes.html#version_3_38_1">changes.html#version_3_38_1</a> + <a href="compile.html#localtime_r">compile.html#localtime_r</a> + <a href="compile.html#localtime_s">compile.html#localtime_s</a> + <a href="deterministic.html#dtexception">deterministic.html#dtexception</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> +<li>lock-byte page → <a href="walformat.html#locks">walformat.html#locks</a> +<li>locking_mode → <a href="changes.html#version_3_5_9">changes.html#version_3_5_9</a> + <a href="compile.html#default_journal_size_limit">compile.html#default_journal_size_limit</a> + <a href="compile.html#default_locking_mode">compile.html#default_locking_mode</a> + <a href="howtocorrupt.html#fakeusb">howtocorrupt.html#fakeusb</a> + <a href="releaselog/3_5_9.html">releaselog/3_5_9.html</a> + <a href="wal.html#busy">wal.html#busy</a> + <a href="wal.html#noshm">wal.html#noshm</a> +<li>log → <a href="lang_mathfunc.html">lang_mathfunc.html</a> +<li>log2 → <a href="lang_mathfunc.html">lang_mathfunc.html</a> +<li>long term support → <a href="index.html">index.html</a> + <a href="versionnumbers.html">versionnumbers.html</a> +<li>lookaside buffer → <a href="news.html">news.html</a> +<li>lookaside memory → <a href="c3ref/c_prepare_normalize.html#sqlitepreparepersistent">c3ref/c_prepare_normalize.html#sqlitepreparepersistent</a> + <a href="capi3ref.html#sqlitepreparepersistent">capi3ref.html#sqlitepreparepersistent</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> +<li>lookaside memory allocator → <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfiglookaside">c3ref/c_dbconfig_defensive.html#sqlitedbconfiglookaside</a> + <a href="capi3ref.html#sqlitedbconfiglookaside">capi3ref.html#sqlitedbconfiglookaside</a> + <a href="changes.html#version_3_16_0">changes.html#version_3_16_0</a> + <a href="changes.html#version_3_17_0">changes.html#version_3_17_0</a> + <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="changes.html#version_3_6_1">changes.html#version_3_6_1</a> + <a href="changes.html#version_3_7_9">changes.html#version_3_7_9</a> + <a href="compile.html#default_lookaside">compile.html#default_lookaside</a> + <a href="compile.html#omit_lookaside">compile.html#omit_lookaside</a> + <a href="debugging.html">debugging.html</a> + <a href="malloc.html#memstatus">malloc.html#memstatus</a> + <a href="malloc.html#nofrag">malloc.html#nofrag</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_16_0.html">releaselog/3_16_0.html</a> + <a href="releaselog/3_16_1.html">releaselog/3_16_1.html</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> + <a href="releaselog/3_17_0.html">releaselog/3_17_0.html</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> + <a href="releaselog/3_6_1.html">releaselog/3_6_1.html</a> + <a href="releaselog/3_7_9.html">releaselog/3_7_9.html</a> +<li>lower → <a href="faq.html#q18">faq.html#q18</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="lang_corefunc.html#randomblob">lang_corefunc.html#randomblob</a> +<li>ltrim → <a href="lang_corefunc.html">lang_corefunc.html</a> +<li>mailing lists → <a href="bindptr.html">bindptr.html</a> + <a href="qmplan.html">qmplan.html</a> +<li>Manual Control Of Query Plans Using SQLITE_STAT Tables → <a href="lang_analyze.html#req">lang_analyze.html#req</a> +<li>master journal → <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> +<li>MATCH → <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="vtab.html#xfindfunction">vtab.html#xfindfunction</a> +<li>matchinfo → <a href="bindptr.html">bindptr.html</a> + <a href="bindptr.html#ptrtyp">bindptr.html#ptrtyp</a> + <a href="changes.html#version_3_7_4">changes.html#version_3_7_4</a> + <a href="changes.html#version_3_8_10">changes.html#version_3_8_10</a> + <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="cves.html#cvetab">cves.html#cvetab</a> + <a href="fts3.html#appendix_a">fts3.html#appendix_a</a> + <a href="fts3.html#fts4">fts3.html#fts4</a> + <a href="fts3.html#fts4_options">fts3.html#fts4_options</a> + <a href="fts3.html#simple_fts_queries">fts3.html#simple_fts_queries</a> + <a href="fts3.html#the_matchinfo_option">fts3.html#the_matchinfo_option</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_7_4.html">releaselog/3_7_4.html</a> + <a href="releaselog/3_8_10.html">releaselog/3_8_10.html</a> + <a href="releaselog/3_8_10_1.html">releaselog/3_8_10_1.html</a> + <a href="releaselog/3_8_10_2.html">releaselog/3_8_10_2.html</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> +<li>matchinfo b flag → <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> +<li>matchinfo x flag → <a href="fts3.html#matchinfo-y">fts3.html#matchinfo-y</a> +<li>matchinfo y flag → <a href="changes.html#version_3_8_10">changes.html#version_3_8_10</a> + <a href="fts3.html#matchinfo-b">fts3.html#matchinfo-b</a> + <a href="releaselog/3_8_10.html">releaselog/3_8_10.html</a> + <a href="releaselog/3_8_10_1.html">releaselog/3_8_10_1.html</a> + <a href="releaselog/3_8_10_2.html">releaselog/3_8_10_2.html</a> +<li>MATERIALIZED → <a href="changes.html#version_3_35_0">changes.html#version_3_35_0</a> + <a href="releaselog/3_35_0.html">releaselog/3_35_0.html</a> + <a href="releaselog/3_35_1.html">releaselog/3_35_1.html</a> + <a href="releaselog/3_35_2.html">releaselog/3_35_2.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> +<li>math functions → <a href="lang_expr.html#*funcinexpr">lang_expr.html#*funcinexpr</a> +<li>mathfunc → <a href="lang_corefunc.html">lang_corefunc.html</a> +<li>max → <a href="lang_corefunc.html">lang_corefunc.html</a> +<li>max_agg → <a href="lang_aggfunc.html#aggfunclist">lang_aggfunc.html#aggfunclist</a> + <a href="lang_corefunc.html#max_scalar">lang_corefunc.html#max_scalar</a> + <a href="lang_expr.html#*funcinexpr">lang_expr.html#*funcinexpr</a> + <a href="lang_select.html#bareagg">lang_select.html#bareagg</a> +<li>max_page_count → <a href="c3ref/limit.html">c3ref/limit.html</a> + <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> + <a href="capi3ref.html#sqlite3_limit">capi3ref.html#sqlite3_limit</a> + <a href="capi3ref.html#sqlite3_set_authorizer">capi3ref.html#sqlite3_set_authorizer</a> +<li>max_scalar → <a href="lang_expr.html#*funcinexpr">lang_expr.html#*funcinexpr</a> +<li>MC/DC → <a href="lemon.html">lemon.html</a> + <a href="testing.html#tcl">testing.html#tcl</a> + <a href="testing.html#tension">testing.html#tension</a> + <a href="th3.html">th3.html</a> +<li>MC/DC testing → <a href="assert.html">assert.html</a> +<li>memory → <a href="lang_attach.html">lang_attach.html</a> + <a href="tclsqlite.html">tclsqlite.html</a> +<li>memory allocation → <a href="cintro.html">cintro.html</a> + <a href="testing.html#memtesting">testing.html#memtesting</a> + <a href="testing.html#oomtesting">testing.html#oomtesting</a> +<li>memory statistics → <a href="malloc.html#memstatus">malloc.html#memstatus</a> + <a href="malloc.html#nofrag">malloc.html#nofrag</a> +<li>memory-mapped I/O → <a href="changes.html#version_3_10_0">changes.html#version_3_10_0</a> + <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="fasterthanfs.html">fasterthanfs.html</a> + <a href="howtocorrupt.html#fakeusb">howtocorrupt.html#fakeusb</a> + <a href="releaselog/3_10_0.html">releaselog/3_10_0.html</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> +<li>memsys2 → <a href="testing.html#memtesting">testing.html#memtesting</a> +<li>memsys5 → <a href="changes.html#version_3_40_1">changes.html#version_3_40_1</a> + <a href="changes.html#version_3_6_6">changes.html#version_3_6_6</a> + <a href="malloc.html#nofrag">malloc.html#nofrag</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_40_1.html">releaselog/3_40_1.html</a> + <a href="releaselog/3_6_6.html">releaselog/3_6_6.html</a> +<li>merge command → <a href="fts3.html#*fts4automergecmd">fts3.html#*fts4automergecmd</a> +<li>microoptimizations → <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="changes.html#version_3_39_0">changes.html#version_3_39_0</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> + <a href="releaselog/3_39_0.html">releaselog/3_39_0.html</a> + <a href="releaselog/3_39_1.html">releaselog/3_39_1.html</a> + <a href="releaselog/3_39_2.html">releaselog/3_39_2.html</a> + <a href="releaselog/3_39_3.html">releaselog/3_39_3.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> +<li>min → <a href="lang_corefunc.html">lang_corefunc.html</a> +<li>min/max optimization → <a href="changes.html#version_3_35_0">changes.html#version_3_35_0</a> + <a href="releaselog/3_35_0.html">releaselog/3_35_0.html</a> + <a href="releaselog/3_35_1.html">releaselog/3_35_1.html</a> + <a href="releaselog/3_35_2.html">releaselog/3_35_2.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> +<li>min_agg → <a href="lang_aggfunc.html#aggfunclist">lang_aggfunc.html#aggfunclist</a> + <a href="lang_corefunc.html#min_scalar">lang_corefunc.html#min_scalar</a> + <a href="lang_select.html#bareagg">lang_select.html#bareagg</a> +<li>mmap_size pragma → <a href="compile.html#default_mmap_size">compile.html#default_mmap_size</a> + <a href="mmap.html">mmap.html</a> +<li>mod → <a href="lang_mathfunc.html">lang_mathfunc.html</a> +<li>modeof → <a href="changes.html#version_3_15_0">changes.html#version_3_15_0</a> + <a href="releaselog/3_15_0.html">releaselog/3_15_0.html</a> + <a href="releaselog/3_15_1.html">releaselog/3_15_1.html</a> + <a href="releaselog/3_15_2.html">releaselog/3_15_2.html</a> +<li>most used → <a href="index.html">index.html</a> +<li>most widely deployed → <a href="about.html">about.html</a> + <a href="appfileformat.html">appfileformat.html</a> + <a href="famous.html">famous.html</a> + <a href="testing.html#thoughts1">testing.html#thoughts1</a> +<li>mutation test script → <a href="testing.html#mutationtests">testing.html#mutationtests</a> +<li>mutation testing → <a href="th3.html#muttest">th3.html#muttest</a> +<li>mxFrame → <a href="fileformat2.html#walread">fileformat2.html#walread</a> + <a href="walformat.html#locks">walformat.html#locks</a> + <a href="walformat.html#nbackfill">walformat.html#nbackfill</a> + <a href="walformat.html#recovery">walformat.html#recovery</a> +<li>nBackfill → <a href="walformat.html#locks">walformat.html#locks</a> + <a href="walformat.html#mxframe">walformat.html#mxframe</a> + <a href="walformat.html#recovery">walformat.html#recovery</a> +<li>NEAR queries → <a href="compile.html#fts3_max_expr_depth">compile.html#fts3_max_expr_depth</a> +<li>next generation query planner → <a href="changes.html#version_3_8_0">changes.html#version_3_8_0</a> + <a href="eqp.html">eqp.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="queryplanner.html">queryplanner.html</a> + <a href="releaselog/3_8_0.html">releaselog/3_8_0.html</a> + <a href="releaselog/3_8_0_1.html">releaselog/3_8_0_1.html</a> + <a href="releaselog/3_8_0_2.html">releaselog/3_8_0_2.html</a> + <a href="versionnumbers.html">versionnumbers.html</a> +<li>Next Generation Query Planner → <a href="howitworks.html">howitworks.html</a> + <a href="optoverview.html">optoverview.html</a> +<li>NGQP → <a href="changes.html#version_3_8_0">changes.html#version_3_8_0</a> + <a href="limits.html#max_sql_length">limits.html#max_sql_length</a> + <a href="oldnews.html">oldnews.html</a> + <a href="optoverview.html">optoverview.html</a> + <a href="releaselog/3_8_0.html">releaselog/3_8_0.html</a> + <a href="releaselog/3_8_0_1.html">releaselog/3_8_0_1.html</a> + <a href="releaselog/3_8_0_2.html">releaselog/3_8_0_2.html</a> +<li>NOCASE → <a href="faq.html#q18">faq.html#q18</a> +<li>non-deterministic functions → <a href="changes.html#version_3_35_2">changes.html#version_3_35_2</a> + <a href="partialindex.html">partialindex.html</a> + <a href="releaselog/3_35_2.html">releaselog/3_35_2.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> +<li>NOT MATERIALIZED → <a href="changes.html#version_3_35_0">changes.html#version_3_35_0</a> + <a href="releaselog/3_35_0.html">releaselog/3_35_0.html</a> + <a href="releaselog/3_35_1.html">releaselog/3_35_1.html</a> + <a href="releaselog/3_35_2.html">releaselog/3_35_2.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> +<li>NOT NULL → <a href="changes.html#version_3_11_0">changes.html#version_3_11_0</a> + <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="conflict.html">conflict.html</a> + <a href="fullsql.html">fullsql.html</a> + <a href="lang_conflict.html">lang_conflict.html</a> + <a href="releaselog/3_11_0.html">releaselog/3_11_0.html</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> +<li>NOT NULL constraint → <a href="changes.html#version_3_37_0">changes.html#version_3_37_0</a> + <a href="releaselog/3_37_0.html">releaselog/3_37_0.html</a> + <a href="releaselog/3_37_1.html">releaselog/3_37_1.html</a> + <a href="releaselog/3_37_2.html">releaselog/3_37_2.html</a> + <a href="rescode.html#constraint_notnull">rescode.html#constraint_notnull</a> +<li>NOT NULL constraints → <a href="stricttables.html">stricttables.html</a> +<li>NUL characters in strings → <a href="quirks.html#dblquote">quirks.html#dblquote</a> +<li>nullif → <a href="lang_corefunc.html">lang_corefunc.html</a> +<li>NULLS FIRST → <a href="changes.html#version_3_30_0">changes.html#version_3_30_0</a> + <a href="releaselog/3_30_0.html">releaselog/3_30_0.html</a> + <a href="releaselog/3_30_1.html">releaselog/3_30_1.html</a> +<li>NULLS LAST → <a href="changes.html#version_3_30_0">changes.html#version_3_30_0</a> + <a href="releaselog/3_30_0.html">releaselog/3_30_0.html</a> + <a href="releaselog/3_30_1.html">releaselog/3_30_1.html</a> +<li>numeric-literal → <a href="lang_expr.html#litvalue">lang_expr.html#litvalue</a> +<li>object resolution → <a href="lang_dropview.html">lang_dropview.html</a> +<li>octet_length → <a href="changes.html#version_3_43_0">changes.html#version_3_43_0</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="lang_corefunc.html#length">lang_corefunc.html#length</a> + <a href="releaselog/3_43_0.html">releaselog/3_43_0.html</a> + <a href="releaselog/3_43_1.html">releaselog/3_43_1.html</a> + <a href="releaselog/3_43_2.html">releaselog/3_43_2.html</a> +<li>offsets → <a href="bindptr.html">bindptr.html</a> + <a href="bindptr.html#ptrtyp">bindptr.html#ptrtyp</a> + <a href="fts3.html#appendix_a">fts3.html#appendix_a</a> + <a href="fts3.html#simple_fts_queries">fts3.html#simple_fts_queries</a> +<li>omit-left-join optimization → <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +<li>omitfeatures → <a href="34to35.html">34to35.html</a> + <a href="changes.html#version_3_1_4">changes.html#version_3_1_4</a> + <a href="changes.html#version_3_5_2">changes.html#version_3_5_2</a> + <a href="faq.html#q23">faq.html#q23</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_1_4.html">releaselog/3_1_4.html</a> + <a href="releaselog/3_5_2.html">releaselog/3_5_2.html</a> +<li>ON CONFLICT → <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> + <a href="c3ref/c_fail.html">c3ref/c_fail.html</a> + <a href="c3ref/c_vtab_constraint_support.html#sqlitevtabconstraintsupport">c3ref/c_vtab_constraint_support.html#sqlitevtabconstraintsupport</a> + <a href="c3ref/update_hook.html">c3ref/update_hook.html</a> + <a href="c3ref/vtab_on_conflict.html">c3ref/vtab_on_conflict.html</a> + <a href="capi3ref.html#SQLITE_FAIL">capi3ref.html#SQLITE_FAIL</a> + <a href="capi3ref.html#sqlite3_blob_open">capi3ref.html#sqlite3_blob_open</a> + <a href="capi3ref.html#sqlite3_update_hook">capi3ref.html#sqlite3_update_hook</a> + <a href="capi3ref.html#sqlite3_vtab_on_conflict">capi3ref.html#sqlite3_vtab_on_conflict</a> + <a href="capi3ref.html#sqlitevtabconstraintsupport">capi3ref.html#sqlitevtabconstraintsupport</a> + <a href="changes.html#version_3_6_18">changes.html#version_3_6_18</a> + <a href="changes.html#version_3_7_7">changes.html#version_3_7_7</a> + <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="fullsql.html">fullsql.html</a> + <a href="lang_createtable.html#notnullconst">lang_createtable.html#notnullconst</a> + <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_createtrigger.html#raise">lang_createtrigger.html#raise</a> + <a href="lang_insert.html">lang_insert.html</a> + <a href="lang_replace.html">lang_replace.html</a> + <a href="lang_transaction.html">lang_transaction.html</a> + <a href="lang_update.html">lang_update.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_6_18.html">releaselog/3_6_18.html</a> + <a href="releaselog/3_7_7.html">releaselog/3_7_7.html</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> + <a href="tempfiles.html#stmtjrnl">tempfiles.html#stmtjrnl</a> +<li>ON CONFLICT clause → <a href="lang.html">lang.html</a> +<li>ON CONFLICT clauses → <a href="stricttables.html">stricttables.html</a> +<li>on-disk format → <a href="stricttables.html">stricttables.html</a> +<li>opcode definitions → <a href="opcode.html">opcode.html</a> +<li>OPEN_NOFOLLOW → <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> +<li>OpenOffice case study → <a href="appfileformat.html">appfileformat.html</a> +<li>optimize command → <a href="fts3.html#fts4">fts3.html#fts4</a> +<li>optimize pragma → <a href="lang_analyze.html#req">lang_analyze.html#req</a> +<li>optimizer → <a href="eqp.html">eqp.html</a> +<li>OR optimization → <a href="changes.html#version_3_11_0">changes.html#version_3_11_0</a> + <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="changes.html#version_3_24_0">changes.html#version_3_24_0</a> + <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="changes.html#version_3_27_1">changes.html#version_3_27_1</a> + <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="changes.html#version_3_9_0">changes.html#version_3_9_0</a> + <a href="eqp.html#or-opt">eqp.html#or-opt</a> + <a href="releaselog/3_11_0.html">releaselog/3_11_0.html</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="releaselog/3_24_0.html">releaselog/3_24_0.html</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> + <a href="releaselog/3_9_0.html">releaselog/3_9_0.html</a> + <a href="releaselog/3_9_1.html">releaselog/3_9_1.html</a> + <a href="releaselog/3_9_2.html">releaselog/3_9_2.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> +<li>or optimization → <a href="changes.html#version_3_7_14">changes.html#version_3_7_14</a> + <a href="changes.html#version_3_7_4">changes.html#version_3_7_4</a> + <a href="releaselog/3_7_14.html">releaselog/3_7_14.html</a> + <a href="releaselog/3_7_4.html">releaselog/3_7_4.html</a> +<li>or-connected-terms → <a href="changes.html#version_3_8_5">changes.html#version_3_8_5</a> + <a href="eqp.html#or-opt">eqp.html#or-opt</a> + <a href="releaselog/3_8_5.html">releaselog/3_8_5.html</a> +<li>ORDER BY → <a href="changes.html#version_3_30_0">changes.html#version_3_30_0</a> + <a href="changes.html#version_3_8_10">changes.html#version_3_8_10</a> + <a href="lang_insert.html">lang_insert.html</a> + <a href="lang_select.html#compound">lang_select.html#compound</a> + <a href="lang_select.html#values">lang_select.html#values</a> + <a href="releaselog/3_30_0.html">releaselog/3_30_0.html</a> + <a href="releaselog/3_30_1.html">releaselog/3_30_1.html</a> + <a href="releaselog/3_8_10.html">releaselog/3_8_10.html</a> + <a href="releaselog/3_8_10_1.html">releaselog/3_8_10_1.html</a> + <a href="releaselog/3_8_10_2.html">releaselog/3_8_10_2.html</a> +<li>order by → <a href="lang_createtable.html#createtabas">lang_createtable.html#createtabas</a> +<li>ordering-term → <a href="lang_aggfunc.html">lang_aggfunc.html</a> + <a href="lang_altertable.html">lang_altertable.html</a> + <a href="lang_attach.html">lang_attach.html</a> + <a href="lang_createindex.html">lang_createindex.html</a> + <a href="lang_createtable.html">lang_createtable.html</a> + <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_createview.html">lang_createview.html</a> + <a href="lang_delete.html">lang_delete.html</a> + <a href="lang_expr.html">lang_expr.html</a> + <a href="lang_insert.html">lang_insert.html</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_select.html">lang_select.html</a> + <a href="lang_select.html#compound">lang_select.html#compound</a> + <a href="lang_select.html#simpleselect">lang_select.html#simpleselect</a> + <a href="lang_update.html">lang_update.html</a> + <a href="lang_upsert.html">lang_upsert.html</a> + <a href="lang_with.html">lang_with.html</a> + <a href="partialindex.html">partialindex.html</a> + <a href="windowfunctions.html">windowfunctions.html</a> + <a href="windowfunctions.html#framespec">windowfunctions.html#framespec</a> + <a href="windowfunctions.html#wexcls">windowfunctions.html#wexcls</a> +<li>OS backend → <a href="testing.html#journaltest">testing.html#journaltest</a> +<li>OSS Fuzz → <a href="testing.html#fuzzcheck">testing.html#fuzzcheck</a> +<li>OUTER JOIN strength reduction → <a href="changes.html#version_3_43_0">changes.html#version_3_43_0</a> + <a href="releaselog/3_43_0.html">releaselog/3_43_0.html</a> + <a href="releaselog/3_43_1.html">releaselog/3_43_1.html</a> + <a href="releaselog/3_43_2.html">releaselog/3_43_2.html</a> +<li>output mode → <a href="cli.html#dotconn">cli.html#dotconn</a> +<li>over-clause → <a href="lang_aggfunc.html">lang_aggfunc.html</a> + <a href="lang_altertable.html">lang_altertable.html</a> + <a href="lang_attach.html">lang_attach.html</a> + <a href="lang_createindex.html">lang_createindex.html</a> + <a href="lang_createtable.html">lang_createtable.html</a> + <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_createview.html">lang_createview.html</a> + <a href="lang_delete.html">lang_delete.html</a> + <a href="lang_expr.html">lang_expr.html</a> + <a href="lang_insert.html">lang_insert.html</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_select.html">lang_select.html</a> + <a href="lang_select.html#compound">lang_select.html#compound</a> + <a href="lang_select.html#simpleselect">lang_select.html#simpleselect</a> + <a href="lang_update.html">lang_update.html</a> + <a href="lang_upsert.html">lang_upsert.html</a> + <a href="lang_with.html">lang_with.html</a> + <a href="partialindex.html">partialindex.html</a> + <a href="windowfunctions.html">windowfunctions.html</a> + <a href="windowfunctions.html#framespec">windowfunctions.html#framespec</a> + <a href="windowfunctions.html#wexcls">windowfunctions.html#wexcls</a> +<li>overflow pages → <a href="changes.html#version_3_7_9">changes.html#version_3_7_9</a> + <a href="compile.html#direct_overflow_read">compile.html#direct_overflow_read</a> + <a href="fileformat2.html#btree">fileformat2.html#btree</a> + <a href="releaselog/3_7_9.html">releaselog/3_7_9.html</a> +<li>page cache → <a href="changes.html#version_3_39_4">changes.html#version_3_39_4</a> + <a href="changes.html#version_3_7_9">changes.html#version_3_7_9</a> + <a href="compile.html#direct_overflow_read">compile.html#direct_overflow_read</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> + <a href="releaselog/3_7_9.html">releaselog/3_7_9.html</a> +<li>page_count → <a href="35to36.html">35to36.html</a> + <a href="changes.html#version_3_7_9">changes.html#version_3_7_9</a> + <a href="releaselog/3_7_9.html">releaselog/3_7_9.html</a> +<li>page_size → <a href="arch.html">arch.html</a> + <a href="lang_vacuum.html">lang_vacuum.html</a> + <a href="pgszchng2016.html">pgszchng2016.html</a> + <a href="wal.html#advantages">wal.html#advantages</a> +<li>page_size pragma → <a href="lang_vacuum.html">lang_vacuum.html</a> + <a href="pgszchng2016.html">pgszchng2016.html</a> +<li>pagecache memory allocator → <a href="c3ref/c_status_malloc_count.html#sqlitestatuspagecachesize">c3ref/c_status_malloc_count.html#sqlitestatuspagecachesize</a> + <a href="c3ref/c_status_malloc_count.html#sqlitestatuspagecacheused">c3ref/c_status_malloc_count.html#sqlitestatuspagecacheused</a> + <a href="capi3ref.html#sqlitestatuspagecachesize">capi3ref.html#sqlitestatuspagecachesize</a> + <a href="capi3ref.html#sqlitestatuspagecacheused">capi3ref.html#sqlitestatuspagecacheused</a> + <a href="malloc.html#memstatus">malloc.html#memstatus</a> + <a href="malloc.html#nofrag">malloc.html#nofrag</a> +<li>parameter → <a href="c3ref/bind_blob.html">c3ref/bind_blob.html</a> + <a href="c3ref/c_limit_attached.html#sqlitelimitvariablenumber">c3ref/c_limit_attached.html#sqlitelimitvariablenumber</a> + <a href="c3ref/prepare.html">c3ref/prepare.html</a> + <a href="capi3ref.html#sqlite3_bind_blob">capi3ref.html#sqlite3_bind_blob</a> + <a href="capi3ref.html#sqlite3_prepare">capi3ref.html#sqlite3_prepare</a> + <a href="capi3ref.html#sqlitelimitvariablenumber">capi3ref.html#sqlitelimitvariablenumber</a> + <a href="carray.html">carray.html</a> + <a href="cintro.html">cintro.html</a> + <a href="fts3.html#f3tknzr">fts3.html#f3tknzr</a> + <a href="limits.html#max_variable_number">limits.html#max_variable_number</a> + <a href="optoverview.html#like_opt">optoverview.html#like_opt</a> + <a href="optoverview.html#rangequery">optoverview.html#rangequery</a> +<li>parameter binding → <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> + <a href="capi3ref.html#sqlite3_result_blob">capi3ref.html#sqlite3_result_blob</a> + <a href="carray.html">carray.html</a> +<li>parameters → <a href="c3ref/get_auxdata.html">c3ref/get_auxdata.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html#sqlite3_get_auxdata">capi3ref.html#sqlite3_get_auxdata</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="changes.html#version_3_32_0">changes.html#version_3_32_0</a> + <a href="cintro.html">cintro.html</a> + <a href="datatype3.html#storageclasses">datatype3.html#storageclasses</a> + <a href="limits.html#max_sql_length">limits.html#max_sql_length</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> + <a href="releaselog/3_32_0.html">releaselog/3_32_0.html</a> + <a href="releaselog/3_32_1.html">releaselog/3_32_1.html</a> + <a href="releaselog/3_32_2.html">releaselog/3_32_2.html</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> +<li>parent key → <a href="lang_createtable.html#rowid">lang_createtable.html#rowid</a> +<li>parent table → <a href="lang_altertable.html#altertabrename">lang_altertable.html#altertabrename</a> +<li>partial index → <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="changes.html#version_3_15_0">changes.html#version_3_15_0</a> + <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="changes.html#version_3_8_1">changes.html#version_3_8_1</a> + <a href="changes.html#version_3_8_7">changes.html#version_3_8_7</a> + <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="changes.html#version_3_8_8_3">changes.html#version_3_8_8_3</a> + <a href="deterministic.html">deterministic.html</a> + <a href="deterministic.html#dtexception">deterministic.html#dtexception</a> + <a href="fileformat2.html##sqltab">fileformat2.html##sqltab</a> + <a href="fullsql.html">fullsql.html</a> + <a href="lang_altertable.html#altertabdropcol">lang_altertable.html#altertabdropcol</a> + <a href="lang_createindex.html">lang_createindex.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_case_sensitive_like">pragma.html#pragma_case_sensitive_like</a> + <a href="pragma.html#pragma_index_list">pragma.html#pragma_index_list</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="releaselog/3_15_0.html">releaselog/3_15_0.html</a> + <a href="releaselog/3_15_1.html">releaselog/3_15_1.html</a> + <a href="releaselog/3_15_2.html">releaselog/3_15_2.html</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> + <a href="releaselog/3_8_1.html">releaselog/3_8_1.html</a> + <a href="releaselog/3_8_7.html">releaselog/3_8_7.html</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> +<li>partial indexes → <a href="c3ref/c_deterministic.html#sqlitedeterministic">c3ref/c_deterministic.html#sqlitedeterministic</a> + <a href="c3ref/c_deterministic.html#sqlitedirectonly">c3ref/c_deterministic.html#sqlitedirectonly</a> + <a href="c3ref/c_deterministic.html#sqliteinnocuous">c3ref/c_deterministic.html#sqliteinnocuous</a> + <a href="capi3ref.html#sqlitedeterministic">capi3ref.html#sqlitedeterministic</a> + <a href="capi3ref.html#sqlitedirectonly">capi3ref.html#sqlitedirectonly</a> + <a href="capi3ref.html#sqliteinnocuous">capi3ref.html#sqliteinnocuous</a> + <a href="changes.html#version_3_16_0">changes.html#version_3_16_0</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="changes.html#version_3_8_0">changes.html#version_3_8_0</a> + <a href="changes.html#version_3_9_0">changes.html#version_3_9_0</a> + <a href="features.html">features.html</a> + <a href="fileformat2.html#stat1tab">fileformat2.html#stat1tab</a> + <a href="pragma.html#pragma_legacy_alter_table">pragma.html#pragma_legacy_alter_table</a> + <a href="pragma.html#pragma_trusted_schema">pragma.html#pragma_trusted_schema</a> + <a href="releaselog/3_16_0.html">releaselog/3_16_0.html</a> + <a href="releaselog/3_16_1.html">releaselog/3_16_1.html</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> + <a href="releaselog/3_8_0.html">releaselog/3_8_0.html</a> + <a href="releaselog/3_8_0_1.html">releaselog/3_8_0_1.html</a> + <a href="releaselog/3_8_0_2.html">releaselog/3_8_0_2.html</a> + <a href="releaselog/3_9_0.html">releaselog/3_9_0.html</a> + <a href="releaselog/3_9_1.html">releaselog/3_9_1.html</a> + <a href="releaselog/3_9_2.html">releaselog/3_9_2.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> + <a href="versionnumbers.html">versionnumbers.html</a> +<li>partial indices → <a href="oldnews.html">oldnews.html</a> +<li>partial sorting by index → <a href="changes.html#version_3_8_5">changes.html#version_3_8_5</a> + <a href="releaselog/3_8_5.html">releaselog/3_8_5.html</a> +<li>partition → <a href="windowfunctions.html#exprrange">windowfunctions.html#exprrange</a> + <a href="windowfunctions.html#frameboundary">windowfunctions.html#frameboundary</a> +<li>patchset → <a href="session.html#sqlite3_changeset_iter">session.html#sqlite3_changeset_iter</a> + <a href="session/changeset_iter.html">session/changeset_iter.html</a> +<li>patchsets → <a href="session.html#sqlite3_changegroup">session.html#sqlite3_changegroup</a> + <a href="session/changegroup.html">session/changegroup.html</a> +<li>PENDING lock → <a href="rescode.html#ioerr_lock">rescode.html#ioerr_lock</a> +<li>permuted index → <a href="doclist.html">doclist.html</a> + <a href="keyword_index.html">keyword_index.html</a> +<li>persistent journal mode → <a href="pragma.html#pragma_journal_size_limit">pragma.html#pragma_journal_size_limit</a> +<li>persistent loadable extensions → <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> +<li>phrase queries → <a href="compile.html#fts3_max_expr_depth">compile.html#fts3_max_expr_depth</a> +<li>pi → <a href="lang_mathfunc.html">lang_mathfunc.html</a> +<li>pointer passing interface → <a href="c3ref/bind_blob.html#byteorderdeterminationrules">c3ref/bind_blob.html#byteorderdeterminationrules</a> + <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> + <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> + <a href="capi3ref.html#byteorderdeterminationrules">capi3ref.html#byteorderdeterminationrules</a> + <a href="capi3ref.html#sqlite3_result_blob">capi3ref.html#sqlite3_result_blob</a> + <a href="capi3ref.html#sqlite3_value_blob">capi3ref.html#sqlite3_value_blob</a> +<li>pointer passing interfaces → <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> +<li>pointer value → <a href="c3ref/value_dup.html">c3ref/value_dup.html</a> + <a href="capi3ref.html#sqlite3_value_dup">capi3ref.html#sqlite3_value_dup</a> +<li>pow → <a href="lang_mathfunc.html">lang_mathfunc.html</a> +<li>power-safe → <a href="fasterthanfs.html">fasterthanfs.html</a> +<li>power-safe transactions → <a href="fasterthanfs.html">fasterthanfs.html</a> +<li>powersafe overwrite → <a href="c3ref/open.html#coreuriqueryparameters">c3ref/open.html#coreuriqueryparameters</a> + <a href="capi3ref.html#coreuriqueryparameters">capi3ref.html#coreuriqueryparameters</a> + <a href="changes.html#version_3_7_10">changes.html#version_3_7_10</a> + <a href="compile.html#powersafe_overwrite">compile.html#powersafe_overwrite</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_7_10.html">releaselog/3_7_10.html</a> + <a href="uri.html#uripsow">uri.html#uripsow</a> +<li>PRAGMA → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpragma">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpragma</a> + <a href="c3ref/limit.html">c3ref/limit.html</a> + <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> + <a href="capi3ref.html#sqlite3_limit">capi3ref.html#sqlite3_limit</a> + <a href="capi3ref.html#sqlite3_set_authorizer">capi3ref.html#sqlite3_set_authorizer</a> + <a href="capi3ref.html#sqlitefcntlpragma">capi3ref.html#sqlitefcntlpragma</a> + <a href="changes.html#version_3_16_2">changes.html#version_3_16_2</a> + <a href="changes.html#version_3_7_11">changes.html#version_3_7_11</a> + <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="compile.html#debug">compile.html#debug</a> + <a href="compile.html#omit_deprecated">compile.html#omit_deprecated</a> + <a href="compile.html#omit_flag_pragmas">compile.html#omit_flag_pragmas</a> + <a href="compile.html#omit_pragma">compile.html#omit_pragma</a> + <a href="lang.html">lang.html</a> + <a href="lang_explain.html">lang_explain.html</a> + <a href="lang_transaction.html">lang_transaction.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="opcode.html#subprog">opcode.html#subprog</a> + <a href="pragma.html#pragma_defer_foreign_keys">pragma.html#pragma_defer_foreign_keys</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> + <a href="releaselog/3_7_11.html">releaselog/3_7_11.html</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> + <a href="testing.html#crashtesting">testing.html#crashtesting</a> + <a href="vtablist.html">vtablist.html</a> +<li>PRAGMA analysis_limit → <a href="changes.html#version_3_32_0">changes.html#version_3_32_0</a> + <a href="lang_analyze.html#approx">lang_analyze.html#approx</a> + <a href="pragma.html#pragma_optimize">pragma.html#pragma_optimize</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="queryplanner-ng.html#fossilcasestudy">queryplanner-ng.html#fossilcasestudy</a> + <a href="releaselog/3_32_0.html">releaselog/3_32_0.html</a> + <a href="releaselog/3_32_1.html">releaselog/3_32_1.html</a> + <a href="releaselog/3_32_2.html">releaselog/3_32_2.html</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> +<li>PRAGMA application_id → <a href="c3ref/snapshot_open.html">c3ref/snapshot_open.html</a> + <a href="capi3ref.html#sqlite3_snapshot_open">capi3ref.html#sqlite3_snapshot_open</a> + <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="fileformat2.html#appid">fileformat2.html#appid</a> + <a href="fileformat2.html#database_header">fileformat2.html#database_header</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> +<li>PRAGMA auto_vacuum → <a href="compile.html#default_autovacuum">compile.html#default_autovacuum</a> + <a href="compile.html#omit_autovacuum">compile.html#omit_autovacuum</a> + <a href="pragma.html#toc">pragma.html#toc</a> +<li>PRAGMA automatic_index → <a href="compile.html#default_automatic_index">compile.html#default_automatic_index</a> + <a href="pragma.html#toc">pragma.html#toc</a> +<li>PRAGMA busy_timeout → <a href="c3ref/busy_handler.html">c3ref/busy_handler.html</a> + <a href="c3ref/busy_timeout.html">c3ref/busy_timeout.html</a> + <a href="capi3ref.html#sqlite3_busy_handler">capi3ref.html#sqlite3_busy_handler</a> + <a href="capi3ref.html#sqlite3_busy_timeout">capi3ref.html#sqlite3_busy_timeout</a> + <a href="pragma.html#toc">pragma.html#toc</a> +<li>PRAGMA cache_size → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigpmasz">c3ref/c_config_covering_index_scan.html#sqliteconfigpmasz</a> + <a href="c3ref/pcache_methods2.html#thexcachesizepagecachemethod">c3ref/pcache_methods2.html#thexcachesizepagecachemethod</a> + <a href="capi3ref.html#sqliteconfigpmasz">capi3ref.html#sqliteconfigpmasz</a> + <a href="capi3ref.html#thexcachesizepagecachemethod">capi3ref.html#thexcachesizepagecachemethod</a> + <a href="changes.html#version_3_14_1">changes.html#version_3_14_1</a> + <a href="changes.html#version_3_7_10">changes.html#version_3_7_10</a> + <a href="changes.html#version_3_8_11_1">changes.html#version_3_8_11_1</a> + <a href="compile.html#default_cache_size">compile.html#default_cache_size</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_cache_spill">pragma.html#pragma_cache_spill</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="releaselog/3_7_10.html">releaselog/3_7_10.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> +<li>PRAGMA cache_spill → <a href="changes.html#version_3_10_0">changes.html#version_3_10_0</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_10_0.html">releaselog/3_10_0.html</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> +<li>PRAGMA case_sensitive_like → <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="changes.html#version_3_44_0">changes.html#version_3_44_0</a> + <a href="changes.html#version_3_7_7_1">changes.html#version_3_7_7_1</a> + <a href="compile.html#omit_case_sensitive_like_pragma">compile.html#omit_case_sensitive_like_pragma</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> + <a href="releaselog/3_44_0.html">releaselog/3_44_0.html</a> + <a href="releaselog/3_44_1.html">releaselog/3_44_1.html</a> + <a href="releaselog/3_44_2.html">releaselog/3_44_2.html</a> + <a href="releaselog/3_7_7_1.html">releaselog/3_7_7_1.html</a> +<li>PRAGMA cell_size_check → <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> + <a href="security.html#baddb">security.html#baddb</a> +<li>PRAGMA checkpoint_fullfsync → <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="changes.html#version_3_7_4">changes.html#version_3_7_4</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> + <a href="releaselog/3_7_4.html">releaselog/3_7_4.html</a> +<li>PRAGMA collation_list → <a href="pragma.html#toc">pragma.html#toc</a> +<li>PRAGMA compile_options → <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> +<li>PRAGMA count_changes → <a href="compile.html#omit_deprecated">compile.html#omit_deprecated</a> + <a href="pragma.html#toc">pragma.html#toc</a> +<li>PRAGMA data_store_directory → <a href="changes.html#version_3_39_3">changes.html#version_3_39_3</a> + <a href="compile.html#omit_deprecated">compile.html#omit_deprecated</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_39_3.html">releaselog/3_39_3.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> +<li>PRAGMA data_version → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntldataversion">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntldataversion</a> + <a href="c3ref/total_changes.html">c3ref/total_changes.html</a> + <a href="capi3ref.html#sqlite3_total_changes">capi3ref.html#sqlite3_total_changes</a> + <a href="capi3ref.html#sqlitefcntldataversion">capi3ref.html#sqlitefcntldataversion</a> + <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> +<li>PRAGMA database_list → <a href="pragma.html#toc">pragma.html#toc</a> +<li>PRAGMA default_cache_size → <a href="compile.html#omit_deprecated">compile.html#omit_deprecated</a> + <a href="pragma.html#toc">pragma.html#toc</a> +<li>PRAGMA defer_foreign_keys → <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> +<li>PRAGMA empty_result_callbacks → <a href="changes.html#version_3_23_1">changes.html#version_3_23_1</a> + <a href="compile.html#omit_deprecated">compile.html#omit_deprecated</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +<li>PRAGMA encoding → <a href="invalidutf.html">invalidutf.html</a> + <a href="pragma.html#toc">pragma.html#toc</a> +<li>PRAGMA foreign_key_check → <a href="changes.html#version_3_19_0">changes.html#version_3_19_0</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="changes.html#version_3_7_16">changes.html#version_3_7_16</a> + <a href="lang_altertable.html#otheralter">lang_altertable.html#otheralter</a> + <a href="pragma.html#pragma_integrity_check">pragma.html#pragma_integrity_check</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_19_0.html">releaselog/3_19_0.html</a> + <a href="releaselog/3_19_1.html">releaselog/3_19_1.html</a> + <a href="releaselog/3_19_2.html">releaselog/3_19_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> + <a href="releaselog/3_7_16.html">releaselog/3_7_16.html</a> + <a href="releaselog/3_7_16_1.html">releaselog/3_7_16_1.html</a> + <a href="releaselog/3_7_16_2.html">releaselog/3_7_16_2.html</a> +<li>PRAGMA foreign_key_list → <a href="foreignkeys.html#fk_enable">foreignkeys.html#fk_enable</a> + <a href="pragma.html#toc">pragma.html#toc</a> +<li>PRAGMA foreign_keys → <a href="faq.html#q22">faq.html#q22</a> + <a href="foreignkeys.html#fk_actions">foreignkeys.html#fk_actions</a> + <a href="foreignkeys.html#fk_enable">foreignkeys.html#fk_enable</a> + <a href="lang_altertable.html#altertabrename">lang_altertable.html#altertabrename</a> + <a href="lang_altertable.html#otheralter">lang_altertable.html#otheralter</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="quirks.html">quirks.html</a> +<li>PRAGMA freelist_count → <a href="pragma.html#toc">pragma.html#toc</a> +<li>PRAGMA full_column_names → <a href="compile.html#omit_deprecated">compile.html#omit_deprecated</a> + <a href="pragma.html#toc">pragma.html#toc</a> +<li>PRAGMA fullfsync → <a href="pragma.html#toc">pragma.html#toc</a> +<li>PRAGMA function → <a href="news.html">news.html</a> +<li>PRAGMA function_list → <a href="changes.html#version_3_30_0">changes.html#version_3_30_0</a> + <a href="compile.html#introspection_pragmas">compile.html#introspection_pragmas</a> + <a href="compile.html#omit_introspection_pragmas">compile.html#omit_introspection_pragmas</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_30_0.html">releaselog/3_30_0.html</a> + <a href="releaselog/3_30_1.html">releaselog/3_30_1.html</a> +<li>PRAGMA functions → <a href="changes.html#version_3_16_0">changes.html#version_3_16_0</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_16_0.html">releaselog/3_16_0.html</a> + <a href="releaselog/3_16_1.html">releaselog/3_16_1.html</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> + <a href="vtablist.html">vtablist.html</a> +<li>PRAGMA hard_heap_limit → <a href="c3ref/hard_heap_limit64.html">c3ref/hard_heap_limit64.html</a> + <a href="capi3ref.html#sqlite3_hard_heap_limit64">capi3ref.html#sqlite3_hard_heap_limit64</a> + <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> +<li>PRAGMA ignore_check_constraints → <a href="lang_createtable.html#ckconst">lang_createtable.html#ckconst</a> + <a href="lang_createtable.html#notnullconst">lang_createtable.html#notnullconst</a> + <a href="pragma.html#toc">pragma.html#toc</a> +<li>PRAGMA incremental_vacuum → <a href="c3ref/data_count.html">c3ref/data_count.html</a> + <a href="capi3ref.html#sqlite3_data_count">capi3ref.html#sqlite3_data_count</a> + <a href="changes.html#version_3_35_3">changes.html#version_3_35_3</a> + <a href="changes.html#version_3_7_16">changes.html#version_3_7_16</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> + <a href="releaselog/3_7_16.html">releaselog/3_7_16.html</a> + <a href="releaselog/3_7_16_1.html">releaselog/3_7_16_1.html</a> + <a href="releaselog/3_7_16_2.html">releaselog/3_7_16_2.html</a> +<li>PRAGMA index_info → <a href="pragma.html#toc">pragma.html#toc</a> + <a href="withoutrowid.html#wtu">withoutrowid.html#wtu</a> +<li>PRAGMA index_list → <a href="pragma.html#toc">pragma.html#toc</a> +<li>PRAGMA index_xinfo → <a href="changes.html#version_3_8_9">changes.html#version_3_8_9</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_8_9.html">releaselog/3_8_9.html</a> +<li>PRAGMA integrity_check → <a href="changes.html#version_3_18_0">changes.html#version_3_18_0</a> + <a href="changes.html#version_3_19_0">changes.html#version_3_19_0</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="changes.html#version_3_25_0">changes.html#version_3_25_0</a> + <a href="changes.html#version_3_33_0">changes.html#version_3_33_0</a> + <a href="changes.html#version_3_40_0">changes.html#version_3_40_0</a> + <a href="changes.html#version_3_41_0">changes.html#version_3_41_0</a> + <a href="changes.html#version_3_41_1">changes.html#version_3_41_1</a> + <a href="changes.html#version_3_42_0">changes.html#version_3_42_0</a> + <a href="changes.html#version_3_44_0">changes.html#version_3_44_0</a> + <a href="changes.html#version_3_45_1">changes.html#version_3_45_1</a> + <a href="changes.html#version_3_7_12">changes.html#version_3_7_12</a> + <a href="changes.html#version_3_7_14">changes.html#version_3_7_14</a> + <a href="changes.html#version_3_7_16">changes.html#version_3_7_16</a> + <a href="changes.html#version_3_8_10">changes.html#version_3_8_10</a> + <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="cli.html#selftest">cli.html#selftest</a> + <a href="cves.html#cvetab">cves.html#cvetab</a> + <a href="fts3.html#*fts4ickcmd">fts3.html#*fts4ickcmd</a> + <a href="invalidutf.html">invalidutf.html</a> + <a href="lang_altertable.html#caution">lang_altertable.html#caution</a> + <a href="lang_createtable.html#notnullconst">lang_createtable.html#notnullconst</a> + <a href="mmap.html">mmap.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_case_sensitive_like">pragma.html#pragma_case_sensitive_like</a> + <a href="pragma.html#pragma_quick_check">pragma.html#pragma_quick_check</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_18_0.html">releaselog/3_18_0.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> + <a href="releaselog/3_19_0.html">releaselog/3_19_0.html</a> + <a href="releaselog/3_19_1.html">releaselog/3_19_1.html</a> + <a href="releaselog/3_19_2.html">releaselog/3_19_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> + <a href="releaselog/3_25_0.html">releaselog/3_25_0.html</a> + <a href="releaselog/3_25_1.html">releaselog/3_25_1.html</a> + <a href="releaselog/3_25_2.html">releaselog/3_25_2.html</a> + <a href="releaselog/3_25_3.html">releaselog/3_25_3.html</a> + <a href="releaselog/3_33_0.html">releaselog/3_33_0.html</a> + <a href="releaselog/3_40_0.html">releaselog/3_40_0.html</a> + <a href="releaselog/3_40_1.html">releaselog/3_40_1.html</a> + <a href="releaselog/3_41_0.html">releaselog/3_41_0.html</a> + <a href="releaselog/3_41_1.html">releaselog/3_41_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> + <a href="releaselog/3_42_0.html">releaselog/3_42_0.html</a> + <a href="releaselog/3_44_0.html">releaselog/3_44_0.html</a> + <a href="releaselog/3_44_1.html">releaselog/3_44_1.html</a> + <a href="releaselog/3_44_2.html">releaselog/3_44_2.html</a> + <a href="releaselog/3_45_1.html">releaselog/3_45_1.html</a> + <a href="releaselog/3_7_12.html">releaselog/3_7_12.html</a> + <a href="releaselog/3_7_14.html">releaselog/3_7_14.html</a> + <a href="releaselog/3_7_16.html">releaselog/3_7_16.html</a> + <a href="releaselog/3_7_16_1.html">releaselog/3_7_16_1.html</a> + <a href="releaselog/3_7_16_2.html">releaselog/3_7_16_2.html</a> + <a href="releaselog/3_8_10.html">releaselog/3_8_10.html</a> + <a href="releaselog/3_8_10_1.html">releaselog/3_8_10_1.html</a> + <a href="releaselog/3_8_10_2.html">releaselog/3_8_10_2.html</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> + <a href="rtree.html#rtreecheck">rtree.html#rtreecheck</a> + <a href="security.html#baddb">security.html#baddb</a> + <a href="stricttables.html">stricttables.html</a> + <a href="testing.html#ioerrtesting">testing.html#ioerrtesting</a> + <a href="vtab.html#xintegrity">vtab.html#xintegrity</a> +<li>PRAGMA journal_mode → <a href="atomiccommit.html#sprjrnl">atomiccommit.html#sprjrnl</a> + <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfigdefensive">c3ref/c_dbconfig_defensive.html#sqlitedbconfigdefensive</a> + <a href="capi3ref.html#sqlitedbconfigdefensive">capi3ref.html#sqlitedbconfigdefensive</a> + <a href="changes.html#version_3_6_4">changes.html#version_3_6_4</a> + <a href="changes.html#version_3_8_7_1">changes.html#version_3_8_7_1</a> + <a href="dbhash.html">dbhash.html</a> + <a href="fasterthanfs.html">fasterthanfs.html</a> + <a href="fileformat2.html#walindexformat">fileformat2.html#walindexformat</a> + <a href="howtocorrupt.html#cfgerr">howtocorrupt.html#cfgerr</a> + <a href="isolation.html">isolation.html</a> + <a href="lang_transaction.html#immediate">lang_transaction.html#immediate</a> + <a href="lockingv3.html#hot_journals">lockingv3.html#hot_journals</a> + <a href="lockingv3.html#writing">lockingv3.html#writing</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_6_4.html">releaselog/3_6_4.html</a> + <a href="releaselog/3_8_7_1.html">releaselog/3_8_7_1.html</a> + <a href="tempfiles.html#superjrnl">tempfiles.html#superjrnl</a> +<li>PRAGMA journal_size_limit → <a href="pragma.html#pragma_journal_mode">pragma.html#pragma_journal_mode</a> + <a href="pragma.html#toc">pragma.html#toc</a> +<li>PRAGMA legacy_alter_table → <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfiglegacyaltertable">c3ref/c_dbconfig_defensive.html#sqlitedbconfiglegacyaltertable</a> + <a href="capi3ref.html#sqlitedbconfiglegacyaltertable">capi3ref.html#sqlitedbconfiglegacyaltertable</a> + <a href="changes.html#version_3_25_2">changes.html#version_3_25_2</a> + <a href="changes.html#version_3_26_0">changes.html#version_3_26_0</a> + <a href="lang_altertable.html#altertabrename">lang_altertable.html#altertabrename</a> + <a href="news.html">news.html</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_25_2.html">releaselog/3_25_2.html</a> + <a href="releaselog/3_25_3.html">releaselog/3_25_3.html</a> + <a href="releaselog/3_26_0.html">releaselog/3_26_0.html</a> + <a href="vtab.html#xrename">vtab.html#xrename</a> +<li>PRAGMA legacy_file_format → <a href="changes.html#version_3_7_10">changes.html#version_3_7_10</a> + <a href="compile.html#default_file_format">compile.html#default_file_format</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_7_10.html">releaselog/3_7_10.html</a> +<li>PRAGMA locking_mode → <a href="changes.html#version_3_7_4">changes.html#version_3_7_4</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_7_4.html">releaselog/3_7_4.html</a> + <a href="tempfiles.html#rollbackjrnl">tempfiles.html#rollbackjrnl</a> + <a href="tempfiles.html#shmfile">tempfiles.html#shmfile</a> + <a href="walformat.html#shm">walformat.html#shm</a> +<li>PRAGMA max_page_count → <a href="pragma.html#toc">pragma.html#toc</a> +<li>PRAGMA mmap_size → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigmmapsize">c3ref/c_config_covering_index_scan.html#sqliteconfigmmapsize</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlmmapsize">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlmmapsize</a> + <a href="capi3ref.html#sqliteconfigmmapsize">capi3ref.html#sqliteconfigmmapsize</a> + <a href="capi3ref.html#sqlitefcntlmmapsize">capi3ref.html#sqlitefcntlmmapsize</a> + <a href="changes.html#version_3_45_1">changes.html#version_3_45_1</a> + <a href="compile.html#max_mmap_size">compile.html#max_mmap_size</a> + <a href="mmap.html">mmap.html</a> + <a href="pragma.html#pragma_mmap_size">pragma.html#pragma_mmap_size</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_45_1.html">releaselog/3_45_1.html</a> + <a href="security.html#baddb">security.html#baddb</a> +<li>PRAGMA module_list → <a href="changes.html#version_3_30_0">changes.html#version_3_30_0</a> + <a href="compile.html#introspection_pragmas">compile.html#introspection_pragmas</a> + <a href="compile.html#omit_introspection_pragmas">compile.html#omit_introspection_pragmas</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_30_0.html">releaselog/3_30_0.html</a> + <a href="releaselog/3_30_1.html">releaselog/3_30_1.html</a> +<li>PRAGMA optimize → <a href="changes.html#version_3_18_0">changes.html#version_3_18_0</a> + <a href="lang_analyze.html#approx">lang_analyze.html#approx</a> + <a href="lang_analyze.html#autoanalyze">lang_analyze.html#autoanalyze</a> + <a href="news.html">news.html</a> + <a href="pragma.html#pragma_analysis_limit">pragma.html#pragma_analysis_limit</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="queryplanner-ng.html#fossilcasestudy">queryplanner-ng.html#fossilcasestudy</a> + <a href="queryplanner-ng.html#howtofix">queryplanner-ng.html#howtofix</a> + <a href="releaselog/3_18_0.html">releaselog/3_18_0.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> +<li>PRAGMA page_count → <a href="changes.html#version_3_6_1">changes.html#version_3_6_1</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_6_0.html">releaselog/3_6_0.html</a> +<li>PRAGMA page_size → <a href="compile.html#default_page_size">compile.html#default_page_size</a> + <a href="dbhash.html">dbhash.html</a> + <a href="pragma.html#pragma_cache_size">pragma.html#pragma_cache_size</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="psow.html">psow.html</a> +<li>PRAGMA parser_trace → <a href="opcode.html#subprog">opcode.html#subprog</a> + <a href="pragma.html#toc">pragma.html#toc</a> +<li>PRAGMA pragma_list → <a href="changes.html#version_3_30_0">changes.html#version_3_30_0</a> + <a href="compile.html#introspection_pragmas">compile.html#introspection_pragmas</a> + <a href="compile.html#omit_introspection_pragmas">compile.html#omit_introspection_pragmas</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_30_0.html">releaselog/3_30_0.html</a> + <a href="releaselog/3_30_1.html">releaselog/3_30_1.html</a> +<li>PRAGMA query_only → <a href="pragma.html#toc">pragma.html#toc</a> +<li>PRAGMA quick_check → <a href="changes.html#version_3_18_0">changes.html#version_3_18_0</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="changes.html#version_3_7_14">changes.html#version_3_7_14</a> + <a href="changes.html#version_3_8_10">changes.html#version_3_8_10</a> + <a href="lang_createtable.html#notnullconst">lang_createtable.html#notnullconst</a> + <a href="pragma.html#pragma_integrity_check">pragma.html#pragma_integrity_check</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_18_0.html">releaselog/3_18_0.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> + <a href="releaselog/3_7_14.html">releaselog/3_7_14.html</a> + <a href="releaselog/3_8_10.html">releaselog/3_8_10.html</a> + <a href="releaselog/3_8_10_1.html">releaselog/3_8_10_1.html</a> + <a href="releaselog/3_8_10_2.html">releaselog/3_8_10_2.html</a> + <a href="security.html#baddb">security.html#baddb</a> + <a href="stricttables.html">stricttables.html</a> + <a href="vtab.html#xintegrity">vtab.html#xintegrity</a> +<li>PRAGMA read_uncommitted → <a href="isolation.html">isolation.html</a> + <a href="pragma.html#toc">pragma.html#toc</a> +<li>PRAGMA recursive_triggers → <a href="changes.html#version_3_6_18">changes.html#version_3_6_18</a> + <a href="foreignkeys.html#fk_actions">foreignkeys.html#fk_actions</a> + <a href="limits.html#max_trigger_depth">limits.html#max_trigger_depth</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_6_18.html">releaselog/3_6_18.html</a> +<li>PRAGMA reverse_unordered_selects → <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfigreversescanorder">c3ref/c_dbconfig_defensive.html#sqlitedbconfigreversescanorder</a> + <a href="capi3ref.html#sqlitedbconfigreversescanorder">capi3ref.html#sqlitedbconfigreversescanorder</a> + <a href="changes.html#version_3_12_2">changes.html#version_3_12_2</a> + <a href="changes.html#version_3_13_0">changes.html#version_3_13_0</a> + <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="compile.html#reverse_unordered_selects">compile.html#reverse_unordered_selects</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> + <a href="releaselog/3_13_0.html">releaselog/3_13_0.html</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> +<li>PRAGMA schema_version → <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfigdefensive">c3ref/c_dbconfig_defensive.html#sqlitedbconfigdefensive</a> + <a href="capi3ref.html#sqlitedbconfigdefensive">capi3ref.html#sqlitedbconfigdefensive</a> + <a href="changes.html#version_3_40_0">changes.html#version_3_40_0</a> + <a href="howtocorrupt.html#cfgerr">howtocorrupt.html#cfgerr</a> + <a href="lang_altertable.html#caution">lang_altertable.html#caution</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_40_0.html">releaselog/3_40_0.html</a> + <a href="releaselog/3_40_1.html">releaselog/3_40_1.html</a> +<li>PRAGMA secure_delete → <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="lang_vacuum.html">lang_vacuum.html</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> +<li>PRAGMA short_column_names → <a href="compile.html#omit_deprecated">compile.html#omit_deprecated</a> + <a href="pragma.html#toc">pragma.html#toc</a> +<li>PRAGMA shrink_memory → <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#toc">pragma.html#toc</a> +<li>PRAGMA soft_heap_limit → <a href="c3ref/hard_heap_limit64.html">c3ref/hard_heap_limit64.html</a> + <a href="capi3ref.html#sqlite3_hard_heap_limit64">capi3ref.html#sqlite3_hard_heap_limit64</a> + <a href="pragma.html#toc">pragma.html#toc</a> +<li>PRAGMA stats → <a href="changes.html#version_3_8_1">changes.html#version_3_8_1</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_8_1.html">releaselog/3_8_1.html</a> +<li>PRAGMA synchronous → <a href="asyncvfs.html">asyncvfs.html</a> + <a href="atomiccommit.html#sprjrnl">atomiccommit.html#sprjrnl</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlsync">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlsync</a> + <a href="c3ref/c_sync_dataonly.html">c3ref/c_sync_dataonly.html</a> + <a href="capi3ref.html#SQLITE_SYNC_DATAONLY">capi3ref.html#SQLITE_SYNC_DATAONLY</a> + <a href="capi3ref.html#sqlitefcntlsync">capi3ref.html#sqlitefcntlsync</a> + <a href="changes.html#version_3_11_0">changes.html#version_3_11_0</a> + <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="changes.html#version_3_40_0">changes.html#version_3_40_0</a> + <a href="changes.html#version_3_7_5">changes.html#version_3_7_5</a> + <a href="compile.html#default_synchronous">compile.html#default_synchronous</a> + <a href="compile.html#default_wal_synchronous">compile.html#default_wal_synchronous</a> + <a href="compile.html#extra_durable">compile.html#extra_durable</a> + <a href="compile.html#rcmd">compile.html#rcmd</a> + <a href="faq.html#q19">faq.html#q19</a> + <a href="fasterthanfs.html">fasterthanfs.html</a> + <a href="howtocorrupt.html#cfgerr">howtocorrupt.html#cfgerr</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_11_0.html">releaselog/3_11_0.html</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> + <a href="releaselog/3_40_0.html">releaselog/3_40_0.html</a> + <a href="releaselog/3_40_1.html">releaselog/3_40_1.html</a> + <a href="releaselog/3_7_5.html">releaselog/3_7_5.html</a> + <a href="tempfiles.html#superjrnl">tempfiles.html#superjrnl</a> + <a href="wal.html#fast">wal.html#fast</a> +<li>PRAGMA table_info → <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="changes.html#version_3_26_0">changes.html#version_3_26_0</a> + <a href="changes.html#version_3_7_16">changes.html#version_3_7_16</a> + <a href="gencol.html">gencol.html</a> + <a href="pragma.html#pragma_table_xinfo">pragma.html#pragma_table_xinfo</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="releaselog/3_26_0.html">releaselog/3_26_0.html</a> + <a href="releaselog/3_7_16.html">releaselog/3_7_16.html</a> + <a href="releaselog/3_7_16_1.html">releaselog/3_7_16_1.html</a> + <a href="releaselog/3_7_16_2.html">releaselog/3_7_16_2.html</a> + <a href="vtab.html#hiddencol">vtab.html#hiddencol</a> + <a href="withoutrowid.html#wtu">withoutrowid.html#wtu</a> +<li>PRAGMA table_list → <a href="changes.html#version_3_37_0">changes.html#version_3_37_0</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_37_0.html">releaselog/3_37_0.html</a> + <a href="releaselog/3_37_1.html">releaselog/3_37_1.html</a> + <a href="releaselog/3_37_2.html">releaselog/3_37_2.html</a> +<li>PRAGMA table_xinfo → <a href="changes.html#version_3_26_0">changes.html#version_3_26_0</a> + <a href="gencol.html">gencol.html</a> + <a href="pragma.html#pragma_table_info">pragma.html#pragma_table_info</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_26_0.html">releaselog/3_26_0.html</a> + <a href="withoutrowid.html#wtu">withoutrowid.html#wtu</a> +<li>PRAGMA temp_store → <a href="changes.html#version_3_37_2">changes.html#version_3_37_2</a> + <a href="compile.html#temp_store">compile.html#temp_store</a> + <a href="howtocorrupt.html#svptbug">howtocorrupt.html#svptbug</a> + <a href="news.html">news.html</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_37_2.html">releaselog/3_37_2.html</a> +<li>PRAGMA temp_store_directory → <a href="changes.html#version_3_39_3">changes.html#version_3_39_3</a> + <a href="compile.html#omit_deprecated">compile.html#omit_deprecated</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_39_3.html">releaselog/3_39_3.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> + <a href="tempfiles.html#tempdir">tempfiles.html#tempdir</a> +<li>PRAGMA threads → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigpmasz">c3ref/c_config_covering_index_scan.html#sqliteconfigpmasz</a> + <a href="capi3ref.html#sqliteconfigpmasz">capi3ref.html#sqliteconfigpmasz</a> + <a href="changes.html#version_3_8_7">changes.html#version_3_8_7</a> + <a href="compile.html#sorter_pmasz">compile.html#sorter_pmasz</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_8_7.html">releaselog/3_8_7.html</a> +<li>PRAGMA trusted_schema → <a href="appfunc.html#sec">appfunc.html#sec</a> + <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfigtrustedschema">c3ref/c_dbconfig_defensive.html#sqlitedbconfigtrustedschema</a> + <a href="c3ref/c_deterministic.html#sqliteinnocuous">c3ref/c_deterministic.html#sqliteinnocuous</a> + <a href="capi3ref.html#sqlitedbconfigtrustedschema">capi3ref.html#sqlitedbconfigtrustedschema</a> + <a href="capi3ref.html#sqliteinnocuous">capi3ref.html#sqliteinnocuous</a> + <a href="compile.html#trusted_schema">compile.html#trusted_schema</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="security.html#baddb">security.html#baddb</a> + <a href="tclsqlite.html#enable_load_extension">tclsqlite.html#enable_load_extension</a> + <a href="tclsqlite.html#function">tclsqlite.html#function</a> +<li>PRAGMA user_version → <a href="pragma.html#toc">pragma.html#toc</a> +<li>PRAGMA vdbe_addoptrace → <a href="changes.html#version_3_7_16">changes.html#version_3_7_16</a> + <a href="opcode.html#subprog">opcode.html#subprog</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_7_16.html">releaselog/3_7_16.html</a> + <a href="releaselog/3_7_16_1.html">releaselog/3_7_16_1.html</a> + <a href="releaselog/3_7_16_2.html">releaselog/3_7_16_2.html</a> +<li>PRAGMA vdbe_debug → <a href="changes.html#version_3_7_16">changes.html#version_3_7_16</a> + <a href="opcode.html#subprog">opcode.html#subprog</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_7_16.html">releaselog/3_7_16.html</a> + <a href="releaselog/3_7_16_1.html">releaselog/3_7_16_1.html</a> + <a href="releaselog/3_7_16_2.html">releaselog/3_7_16_2.html</a> +<li>PRAGMA vdbe_listing → <a href="opcode.html#subprog">opcode.html#subprog</a> + <a href="pragma.html#toc">pragma.html#toc</a> +<li>PRAGMA vdbe_trace → <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="opcode.html#subprog">opcode.html#subprog</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> +<li>PRAGMA wal_autocheckpoint → <a href="pragma.html#toc">pragma.html#toc</a> +<li>PRAGMA wal_checkpoint → <a href="c3ref/wal_checkpoint_v2.html">c3ref/wal_checkpoint_v2.html</a> + <a href="capi3ref.html#sqlite3_wal_checkpoint_v2">capi3ref.html#sqlite3_wal_checkpoint_v2</a> + <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> +<li>PRAGMA writable_schema → <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfigdefensive">c3ref/c_dbconfig_defensive.html#sqlitedbconfigdefensive</a> + <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfigwritableschema">c3ref/c_dbconfig_defensive.html#sqlitedbconfigwritableschema</a> + <a href="capi3ref.html#sqlitedbconfigdefensive">capi3ref.html#sqlitedbconfigdefensive</a> + <a href="capi3ref.html#sqlitedbconfigwritableschema">capi3ref.html#sqlitedbconfigwritableschema</a> + <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="changes.html#version_3_38_0">changes.html#version_3_38_0</a> + <a href="changes.html#version_3_44_0">changes.html#version_3_44_0</a> + <a href="faq.html#q7">faq.html#q7</a> + <a href="howtocorrupt.html#cfgerr">howtocorrupt.html#cfgerr</a> + <a href="imposter.html">imposter.html</a> + <a href="lang_altertable.html#altertabdropcol">lang_altertable.html#altertabdropcol</a> + <a href="lang_altertable.html#caution">lang_altertable.html#caution</a> + <a href="pragma.html#toc">pragma.html#toc</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> + <a href="releaselog/3_38_0.html">releaselog/3_38_0.html</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> + <a href="releaselog/3_44_0.html">releaselog/3_44_0.html</a> + <a href="releaselog/3_44_1.html">releaselog/3_44_1.html</a> + <a href="releaselog/3_44_2.html">releaselog/3_44_2.html</a> + <a href="stricttables.html">stricttables.html</a> +<li>pragma-stmt → <a href="pragma.html#syntax">pragma.html#syntax</a> +<li>pragma-value → <a href="pragma.html#syntax">pragma.html#syntax</a> +<li>precompiled amalgamation tarballs → <a href="changes.html#version_3_43_0">changes.html#version_3_43_0</a> + <a href="releaselog/3_43_0.html">releaselog/3_43_0.html</a> + <a href="releaselog/3_43_1.html">releaselog/3_43_1.html</a> + <a href="releaselog/3_43_2.html">releaselog/3_43_2.html</a> +<li>prefix queries → <a href="fts3.html#fts4order">fts3.html#fts4order</a> + <a href="fts3.html#the_prefix_option">fts3.html#the_prefix_option</a> +<li>prepared statement → <a href="arch.html">arch.html</a> + <a href="bytecodevtab.html">bytecodevtab.html</a> + <a href="c3ref/bind_blob.html#byteorderdeterminationrules">c3ref/bind_blob.html#byteorderdeterminationrules</a> + <a href="c3ref/bind_parameter_count.html">c3ref/bind_parameter_count.html</a> + <a href="c3ref/bind_parameter_name.html">c3ref/bind_parameter_name.html</a> + <a href="c3ref/busy_handler.html">c3ref/busy_handler.html</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigmultithread">c3ref/c_config_covering_index_scan.html#sqliteconfigmultithread</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigserialized">c3ref/c_config_covering_index_scan.html#sqliteconfigserialized</a> + <a href="c3ref/c_limit_attached.html#sqlitelimitworkerthreads">c3ref/c_limit_attached.html#sqlitelimitworkerthreads</a> + <a href="c3ref/c_trace.html#sqlitetraceprofile">c3ref/c_trace.html#sqlitetraceprofile</a> + <a href="c3ref/c_trace.html#sqlitetracerow">c3ref/c_trace.html#sqlitetracerow</a> + <a href="c3ref/c_trace.html#sqlitetracestmt">c3ref/c_trace.html#sqlitetracestmt</a> + <a href="c3ref/clear_bindings.html">c3ref/clear_bindings.html</a> + <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/column_count.html">c3ref/column_count.html</a> + <a href="c3ref/column_database_name.html">c3ref/column_database_name.html</a> + <a href="c3ref/column_decltype.html">c3ref/column_decltype.html</a> + <a href="c3ref/column_name.html">c3ref/column_name.html</a> + <a href="c3ref/data_count.html">c3ref/data_count.html</a> + <a href="c3ref/db_handle.html">c3ref/db_handle.html</a> + <a href="c3ref/expanded_sql.html">c3ref/expanded_sql.html</a> + <a href="c3ref/finalize.html">c3ref/finalize.html</a> + <a href="c3ref/next_stmt.html">c3ref/next_stmt.html</a> + <a href="c3ref/prepare.html">c3ref/prepare.html</a> + <a href="c3ref/reset.html">c3ref/reset.html</a> + <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> + <a href="c3ref/step.html">c3ref/step.html</a> + <a href="c3ref/stmt_busy.html">c3ref/stmt_busy.html</a> + <a href="c3ref/stmt_explain.html">c3ref/stmt_explain.html</a> + <a href="c3ref/stmt_readonly.html">c3ref/stmt_readonly.html</a> + <a href="c3ref/stmt_status.html">c3ref/stmt_status.html</a> + <a href="capi3ref.html#byteorderdeterminationrules">capi3ref.html#byteorderdeterminationrules</a> + <a href="capi3ref.html#sqlite3_bind_parameter_count">capi3ref.html#sqlite3_bind_parameter_count</a> + <a href="capi3ref.html#sqlite3_bind_parameter_name">capi3ref.html#sqlite3_bind_parameter_name</a> + <a href="capi3ref.html#sqlite3_busy_handler">capi3ref.html#sqlite3_busy_handler</a> + <a href="capi3ref.html#sqlite3_clear_bindings">capi3ref.html#sqlite3_clear_bindings</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_column_count">capi3ref.html#sqlite3_column_count</a> + <a href="capi3ref.html#sqlite3_column_database_name">capi3ref.html#sqlite3_column_database_name</a> + <a href="capi3ref.html#sqlite3_column_decltype">capi3ref.html#sqlite3_column_decltype</a> + <a href="capi3ref.html#sqlite3_column_name">capi3ref.html#sqlite3_column_name</a> + <a href="capi3ref.html#sqlite3_data_count">capi3ref.html#sqlite3_data_count</a> + <a href="capi3ref.html#sqlite3_db_handle">capi3ref.html#sqlite3_db_handle</a> + <a href="capi3ref.html#sqlite3_expanded_sql">capi3ref.html#sqlite3_expanded_sql</a> + <a href="capi3ref.html#sqlite3_finalize">capi3ref.html#sqlite3_finalize</a> + <a href="capi3ref.html#sqlite3_next_stmt">capi3ref.html#sqlite3_next_stmt</a> + <a href="capi3ref.html#sqlite3_prepare">capi3ref.html#sqlite3_prepare</a> + <a href="capi3ref.html#sqlite3_reset">capi3ref.html#sqlite3_reset</a> + <a href="capi3ref.html#sqlite3_set_authorizer">capi3ref.html#sqlite3_set_authorizer</a> + <a href="capi3ref.html#sqlite3_step">capi3ref.html#sqlite3_step</a> + <a href="capi3ref.html#sqlite3_stmt_busy">capi3ref.html#sqlite3_stmt_busy</a> + <a href="capi3ref.html#sqlite3_stmt_explain">capi3ref.html#sqlite3_stmt_explain</a> + <a href="capi3ref.html#sqlite3_stmt_readonly">capi3ref.html#sqlite3_stmt_readonly</a> + <a href="capi3ref.html#sqlite3_stmt_status">capi3ref.html#sqlite3_stmt_status</a> + <a href="capi3ref.html#sqliteconfigmultithread">capi3ref.html#sqliteconfigmultithread</a> + <a href="capi3ref.html#sqliteconfigserialized">capi3ref.html#sqliteconfigserialized</a> + <a href="capi3ref.html#sqlitelimitworkerthreads">capi3ref.html#sqlitelimitworkerthreads</a> + <a href="capi3ref.html#sqlitetraceprofile">capi3ref.html#sqlitetraceprofile</a> + <a href="capi3ref.html#sqlitetracerow">capi3ref.html#sqlitetracerow</a> + <a href="capi3ref.html#sqlitetracestmt">capi3ref.html#sqlitetracestmt</a> + <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="cintro.html">cintro.html</a> + <a href="compile.html#default_worker_threads">compile.html#default_worker_threads</a> + <a href="compile.html#max_worker_threads">compile.html#max_worker_threads</a> + <a href="compile.html#omit_autoreset">compile.html#omit_autoreset</a> + <a href="custombuild.html">custombuild.html</a> + <a href="faq.html#q15">faq.html#q15</a> + <a href="howitworks.html">howitworks.html</a> + <a href="lang_explain.html">lang_explain.html</a> + <a href="malloc.html">malloc.html</a> + <a href="malloc.html#nofrag">malloc.html#nofrag</a> + <a href="opcode.html">opcode.html</a> + <a href="optoverview.html#like_opt">optoverview.html#like_opt</a> + <a href="pragma.html#pragma_threads">pragma.html#pragma_threads</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> + <a href="rescode.html#misuse">rescode.html#misuse</a> + <a href="rescode.html#schema">rescode.html#schema</a> + <a href="stmt.html">stmt.html</a> + <a href="threadsafe.html">threadsafe.html</a> + <a href="vfs.html">vfs.html</a> + <a href="vtablist.html">vtablist.html</a> +<li>prepared statements → <a href="35to36.html">35to36.html</a> + <a href="bytecodevtab.html">bytecodevtab.html</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigmultithread">c3ref/c_config_covering_index_scan.html#sqliteconfigmultithread</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigserialized">c3ref/c_config_covering_index_scan.html#sqliteconfigserialized</a> + <a href="c3ref/close.html">c3ref/close.html</a> + <a href="capi3ref.html#sqlite3_close">capi3ref.html#sqlite3_close</a> + <a href="capi3ref.html#sqliteconfigmultithread">capi3ref.html#sqliteconfigmultithread</a> + <a href="capi3ref.html#sqliteconfigserialized">capi3ref.html#sqliteconfigserialized</a> + <a href="changes.html#version_3_6_20">changes.html#version_3_6_20</a> + <a href="cintro.html">cintro.html</a> + <a href="compile.html#enable_explain_comments">compile.html#enable_explain_comments</a> + <a href="compile.html#rcmd">compile.html#rcmd</a> + <a href="compile.html#threadsafe">compile.html#threadsafe</a> + <a href="custombuild.html">custombuild.html</a> + <a href="datatype3.html#storageclasses">datatype3.html#storageclasses</a> + <a href="malloc.html">malloc.html</a> + <a href="malloc.html#lookaside">malloc.html#lookaside</a> + <a href="malloc.html#nofrag">malloc.html#nofrag</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_6_20.html">releaselog/3_6_20.html</a> + <a href="stmt.html">stmt.html</a> +<li>PRIMARY KEY → <a href="expridx.html">expridx.html</a> + <a href="fileformat2.html#ffschema">fileformat2.html#ffschema</a> + <a href="fileformat2.html#intschema">fileformat2.html#intschema</a> + <a href="fts5.html">fts5.html</a> + <a href="gencol.html">gencol.html</a> + <a href="lang_conflict.html">lang_conflict.html</a> + <a href="rowidtable.html">rowidtable.html</a> + <a href="schematab.html">schematab.html</a> + <a href="sqldiff.html">sqldiff.html</a> + <a href="withoutrowid.html">withoutrowid.html</a> +<li>PRIMARY KEY constraint → <a href="optoverview.html#autoindex">optoverview.html#autoindex</a> + <a href="pragma.html#pragma_index_info">pragma.html#pragma_index_info</a> + <a href="pragma.html#pragma_index_list">pragma.html#pragma_index_list</a> + <a href="pragma.html#pragma_index_xinfo">pragma.html#pragma_index_xinfo</a> + <a href="rescode.html#constraint_primarykey">rescode.html#constraint_primarykey</a> +<li>printf → <a href="changes.html#version_3_8_3">changes.html#version_3_8_3</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_8_3.html">releaselog/3_8_3.html</a> +<li>printf SQL function → <a href="c3ref/mprintf.html">c3ref/mprintf.html</a> + <a href="capi3ref.html#sqlite3_mprintf">capi3ref.html#sqlite3_mprintf</a> + <a href="changes.html#version_3_18_0">changes.html#version_3_18_0</a> + <a href="changes.html#version_3_38_0">changes.html#version_3_38_0</a> + <a href="compile.html#printf_precision_limit">compile.html#printf_precision_limit</a> + <a href="releaselog/3_18_0.html">releaselog/3_18_0.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> + <a href="releaselog/3_38_0.html">releaselog/3_38_0.html</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> + <a href="security.html">security.html</a> +<li>professional support → <a href="about.html">about.html</a> + <a href="support.html#prosupport">support.html#prosupport</a> +<li>protected sqlite3_value → <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> + <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> + <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> + <a href="c3ref/value_dup.html">c3ref/value_dup.html</a> + <a href="c3ref/vtab_in_first.html">c3ref/vtab_in_first.html</a> + <a href="capi3ref.html#sqlite3_preupdate_blobwrite">capi3ref.html#sqlite3_preupdate_blobwrite</a> + <a href="capi3ref.html#sqlite3_result_blob">capi3ref.html#sqlite3_result_blob</a> + <a href="capi3ref.html#sqlite3_value_blob">capi3ref.html#sqlite3_value_blob</a> + <a href="capi3ref.html#sqlite3_value_dup">capi3ref.html#sqlite3_value_dup</a> + <a href="capi3ref.html#sqlite3_vtab_in_first">capi3ref.html#sqlite3_vtab_in_first</a> +<li>PSOW → <a href="atomiccommit.html#hardware">atomiccommit.html#hardware</a> +<li>public-domain → <a href="index.html">index.html</a> +<li>push-down optimization → <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="changes.html#version_3_35_0">changes.html#version_3_35_0</a> + <a href="changes.html#version_3_35_4">changes.html#version_3_35_4</a> + <a href="changes.html#version_3_42_0">changes.html#version_3_42_0</a> + <a href="lang_with.html#mathint">lang_with.html#mathint</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> + <a href="releaselog/3_35_0.html">releaselog/3_35_0.html</a> + <a href="releaselog/3_35_1.html">releaselog/3_35_1.html</a> + <a href="releaselog/3_35_2.html">releaselog/3_35_2.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> + <a href="releaselog/3_42_0.html">releaselog/3_42_0.html</a> +<li>Q → <a href="c3ref/mprintf.html">c3ref/mprintf.html</a> + <a href="capi3ref.html#sqlite3_mprintf">capi3ref.html#sqlite3_mprintf</a> + <a href="printf.html">printf.html</a> +<li>q → <a href="c3ref/mprintf.html">c3ref/mprintf.html</a> + <a href="capi3ref.html#sqlite3_mprintf">capi3ref.html#sqlite3_mprintf</a> + <a href="printf.html">printf.html</a> +<li>qbox → <a href="changes.html#version_3_38_0">changes.html#version_3_38_0</a> + <a href="releaselog/3_38_0.html">releaselog/3_38_0.html</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> +<li>qualified-table-name → <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_delete.html">lang_delete.html</a> + <a href="lang_indexedby.html">lang_indexedby.html</a> + <a href="lang_update.html">lang_update.html</a> +<li>queries against graphs → <a href="changes.html#version_3_34_0">changes.html#version_3_34_0</a> + <a href="releaselog/3_34_0.html">releaselog/3_34_0.html</a> + <a href="releaselog/3_34_1.html">releaselog/3_34_1.html</a> +<li>query flattener → <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="changes.html#version_3_30_1">changes.html#version_3_30_1</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> + <a href="releaselog/3_30_1.html">releaselog/3_30_1.html</a> +<li>query parameters with special meaning to SQLite → <a href="c3ref/open.html#coreuriqueryparameters">c3ref/open.html#coreuriqueryparameters</a> + <a href="capi3ref.html#coreuriqueryparameters">capi3ref.html#coreuriqueryparameters</a> +<li>query planner → <a href="arch.html">arch.html</a> + <a href="changes.html#version_3_11_0">changes.html#version_3_11_0</a> + <a href="changes.html#version_3_29_0">changes.html#version_3_29_0</a> + <a href="compile.html#enable_stat4">compile.html#enable_stat4</a> + <a href="fullsql.html">fullsql.html</a> + <a href="queryplanner-ng.html">queryplanner-ng.html</a> + <a href="releaselog/3_11_0.html">releaselog/3_11_0.html</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> + <a href="releaselog/3_29_0.html">releaselog/3_29_0.html</a> +<li>query planner checklist → <a href="lang_indexedby.html">lang_indexedby.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="optoverview.html#crossjoin">optoverview.html#crossjoin</a> + <a href="queryplanner-ng.html#hazards">queryplanner-ng.html#hazards</a> +<li>query planner stability guarantee → <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfigenableqpsg">c3ref/c_dbconfig_defensive.html#sqlitedbconfigenableqpsg</a> + <a href="capi3ref.html#sqlitedbconfigenableqpsg">capi3ref.html#sqlitedbconfigenableqpsg</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="compile.html#enable_qpsg">compile.html#enable_qpsg</a> + <a href="compile.html#enable_stat4">compile.html#enable_stat4</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> +<li>query_only pragma → <a href="changes.html#version_3_8_0">changes.html#version_3_8_0</a> + <a href="releaselog/3_8_0.html">releaselog/3_8_0.html</a> + <a href="releaselog/3_8_0_1.html">releaselog/3_8_0_1.html</a> + <a href="releaselog/3_8_0_2.html">releaselog/3_8_0_2.html</a> +<li>quick_check → <a href="changes.html#version_3_7_9">changes.html#version_3_7_9</a> + <a href="releaselog/3_7_9.html">releaselog/3_7_9.html</a> +<li>quickstart → <a href="c3ref/intro.html">c3ref/intro.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>Quirks → <a href="omitted.html">omitted.html</a> +<li>quote → <a href="lang_corefunc.html">lang_corefunc.html</a> +<li>quote SQL function → <a href="nulinstr.html">nulinstr.html</a> + <a href="undoredo.html">undoredo.html</a> +<li>R-Tree extension → <a href="changes.html#version_3_17_0">changes.html#version_3_17_0</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="changes.html#version_3_24_0">changes.html#version_3_24_0</a> + <a href="changes.html#version_3_8_2">changes.html#version_3_8_2</a> + <a href="changes.html#version_3_8_5">changes.html#version_3_8_5</a> + <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="floatingpoint.html#fpapprox">floatingpoint.html#fpapprox</a> + <a href="geopoly.html">geopoly.html</a> + <a href="geopoly.html#ccw">geopoly.html#ccw</a> + <a href="howtocompile.html#dll">howtocompile.html#dll</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_17_0.html">releaselog/3_17_0.html</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> + <a href="releaselog/3_24_0.html">releaselog/3_24_0.html</a> + <a href="releaselog/3_8_2.html">releaselog/3_8_2.html</a> + <a href="releaselog/3_8_5.html">releaselog/3_8_5.html</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> + <a href="rescode.html#locked_vtab">rescode.html#locked_vtab</a> +<li>R-Trees → <a href="fullsql.html">fullsql.html</a> + <a href="th3.html">th3.html</a> + <a href="vtab.html">vtab.html</a> + <a href="vtablist.html">vtablist.html</a> +<li>radians → <a href="lang_mathfunc.html">lang_mathfunc.html</a> +<li>RAISE function → <a href="rescode.html#constraint_trigger">rescode.html#constraint_trigger</a> +<li>raise-function → <a href="lang_aggfunc.html">lang_aggfunc.html</a> + <a href="lang_altertable.html">lang_altertable.html</a> + <a href="lang_attach.html">lang_attach.html</a> + <a href="lang_createindex.html">lang_createindex.html</a> + <a href="lang_createtable.html">lang_createtable.html</a> + <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_createtrigger.html#raise">lang_createtrigger.html#raise</a> + <a href="lang_createview.html">lang_createview.html</a> + <a href="lang_delete.html">lang_delete.html</a> + <a href="lang_expr.html">lang_expr.html</a> + <a href="lang_insert.html">lang_insert.html</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_select.html">lang_select.html</a> + <a href="lang_select.html#compound">lang_select.html#compound</a> + <a href="lang_select.html#simpleselect">lang_select.html#simpleselect</a> + <a href="lang_update.html">lang_update.html</a> + <a href="lang_upsert.html">lang_upsert.html</a> + <a href="lang_with.html">lang_with.html</a> + <a href="partialindex.html">partialindex.html</a> + <a href="windowfunctions.html">windowfunctions.html</a> + <a href="windowfunctions.html#framespec">windowfunctions.html#framespec</a> + <a href="windowfunctions.html#wexcls">windowfunctions.html#wexcls</a> +<li>random → <a href="c3ref/c_deterministic.html#sqliteinnocuous">c3ref/c_deterministic.html#sqliteinnocuous</a> + <a href="c3ref/create_function.html">c3ref/create_function.html</a> + <a href="capi3ref.html#sqlite3_create_function">capi3ref.html#sqlite3_create_function</a> + <a href="capi3ref.html#sqliteinnocuous">capi3ref.html#sqliteinnocuous</a> + <a href="deterministic.html">deterministic.html</a> + <a href="expridx.html">expridx.html</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="lang_createindex.html#indexexpr">lang_createindex.html#indexexpr</a> +<li>randomblob → <a href="c3ref/c_deterministic.html#sqlitedeterministic">c3ref/c_deterministic.html#sqlitedeterministic</a> + <a href="capi3ref.html#sqlitedeterministic">capi3ref.html#sqlitedeterministic</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> +<li>RANGE n FOLLOWING → <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> +<li>RANGE n PRECEDING → <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> + <a href="windowfunctions.html#rangetype">windowfunctions.html#rangetype</a> +<li>RBU → <a href="amalgamation.html">amalgamation.html</a> + <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="changes.html#version_3_30_0">changes.html#version_3_30_0</a> + <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> + <a href="releaselog/3_30_0.html">releaselog/3_30_0.html</a> + <a href="releaselog/3_30_1.html">releaselog/3_30_1.html</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> +<li>RBU Database Contents → <a href="rbu.html#rbu_updates">rbu.html#rbu_updates</a> +<li>RBU Database Tables → <a href="rbu.html#rbu_updates">rbu.html#rbu_updates</a> +<li>RBU extension → <a href="changes.html#version_3_18_0">changes.html#version_3_18_0</a> + <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="compile.html#enable_rbu">compile.html#enable_rbu</a> + <a href="releaselog/3_18_0.html">releaselog/3_18_0.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> +<li>RBU FTS3/4 Tables → <a href="rbu.html#database_tables">rbu.html#database_tables</a> +<li>RBU Update → <a href="rbu.html">rbu.html</a> +<li>RBU Vacuum → <a href="rbu.html">rbu.html</a> +<li>read-only WAL databases → <a href="wal.html#advantages">wal.html#advantages</a> +<li>read_uncommitted → <a href="sharedcache.html#dontuse">sharedcache.html#dontuse</a> +<li>read_uncommitted pragma → <a href="isolation.html">isolation.html</a> +<li>recommended by the US Library of Congress → <a href="aff_short.html">aff_short.html</a> + <a href="appfileformat.html">appfileformat.html</a> +<li>recommended compile-time option → <a href="changes.html#version_3_29_0">changes.html#version_3_29_0</a> + <a href="releaselog/3_29_0.html">releaselog/3_29_0.html</a> +<li>recommended compile-time options → <a href="fasterthanfs.html">fasterthanfs.html</a> +<li>recommended storage format → <a href="about.html">about.html</a> + <a href="famous.html">famous.html</a> + <a href="index.html">index.html</a> + <a href="lang_altertable.html#altertableishard">lang_altertable.html#altertableishard</a> + <a href="lts.html">lts.html</a> + <a href="onefile.html">onefile.html</a> +<li>record format → <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="fileformat2.html#stat4tab">fileformat2.html#stat4tab</a> + <a href="opcode.html#codes">opcode.html#codes</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> +<li>recovery → <a href="walformat.html#locks">walformat.html#locks</a> +<li>recovery extension → <a href="changes.html#version_3_40_0">changes.html#version_3_40_0</a> + <a href="changes.html#version_3_41_0">changes.html#version_3_41_0</a> + <a href="changes.html#version_3_41_2">changes.html#version_3_41_2</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_40_0.html">releaselog/3_40_0.html</a> + <a href="releaselog/3_40_1.html">releaselog/3_40_1.html</a> + <a href="releaselog/3_41_0.html">releaselog/3_41_0.html</a> + <a href="releaselog/3_41_1.html">releaselog/3_41_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> +<li>recursive common table expression → <a href="series.html">series.html</a> +<li>recursive common table expressions → <a href="changes.html#version_3_34_0">changes.html#version_3_34_0</a> + <a href="cves.html#cvetab">cves.html#cvetab</a> + <a href="fullsql.html">fullsql.html</a> + <a href="releaselog/3_34_0.html">releaselog/3_34_0.html</a> + <a href="releaselog/3_34_1.html">releaselog/3_34_1.html</a> +<li>recursive-cte → <a href="lang_with.html#recursivecte">lang_with.html#recursivecte</a> +<li>recursive_triggers pragma → <a href="lang_conflict.html">lang_conflict.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>REGEXP → <a href="changes.html#version_3_10_0">changes.html#version_3_10_0</a> + <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="changes.html#version_3_39_1">changes.html#version_3_39_1</a> + <a href="cli.html#base85">cli.html#base85</a> + <a href="releaselog/3_10_0.html">releaselog/3_10_0.html</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="releaselog/3_39_1.html">releaselog/3_39_1.html</a> + <a href="releaselog/3_39_2.html">releaselog/3_39_2.html</a> + <a href="releaselog/3_39_3.html">releaselog/3_39_3.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> + <a href="vtab.html#xfindfunction">vtab.html#xfindfunction</a> +<li>REINDEX → <a href="compile.html#omit_reindex">compile.html#omit_reindex</a> + <a href="dbhash.html">dbhash.html</a> + <a href="deterministic.html#dtexception">deterministic.html#dtexception</a> + <a href="fts3.html#*fts4rebuidcmd">fts3.html#*fts4rebuidcmd</a> + <a href="fullsql.html">fullsql.html</a> + <a href="imposter.html">imposter.html</a> + <a href="lang.html">lang.html</a> + <a href="lang_naming.html">lang_naming.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_case_sensitive_like">pragma.html#pragma_case_sensitive_like</a> + <a href="rescode.html#corrupt_index">rescode.html#corrupt_index</a> +<li>reindex-stmt → <a href="lang_reindex.html">lang_reindex.html</a> +<li>RELEASE → <a href="c3ref/stmt_readonly.html">c3ref/stmt_readonly.html</a> + <a href="capi3ref.html#sqlite3_stmt_readonly">capi3ref.html#sqlite3_stmt_readonly</a> + <a href="changes.html#version_3_7_12">changes.html#version_3_7_12</a> + <a href="fullsql.html">fullsql.html</a> + <a href="lang_transaction.html">lang_transaction.html</a> + <a href="releaselog/3_7_12.html">releaselog/3_7_12.html</a> +<li>release history → <a href="versionnumbers.html">versionnumbers.html</a> +<li>release testing checklists → <a href="qmplan.html">qmplan.html</a> +<li>release-stmt → <a href="lang_savepoint.html">lang_savepoint.html</a> +<li>relfootprint → <a href="compile.html">compile.html</a> + <a href="compile.html#omitfeatures">compile.html#omitfeatures</a> +<li>rename column → <a href="lang_altertable.html#otheralter">lang_altertable.html#otheralter</a> +<li>rename table → <a href="lang_altertable.html#caution">lang_altertable.html#caution</a> + <a href="lang_altertable.html#otheralter">lang_altertable.html#otheralter</a> +<li>REPLACE → <a href="c3ref/changes.html">c3ref/changes.html</a> + <a href="capi3ref.html#sqlite3_changes">capi3ref.html#sqlite3_changes</a> + <a href="changes.html#version_3_16_2">changes.html#version_3_16_2</a> + <a href="changes.html#version_3_19_0">changes.html#version_3_19_0</a> + <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="changes.html#version_3_7_7">changes.html#version_3_7_7</a> + <a href="fullsql.html">fullsql.html</a> + <a href="lang.html">lang.html</a> + <a href="news.html">news.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> + <a href="releaselog/3_19_0.html">releaselog/3_19_0.html</a> + <a href="releaselog/3_19_1.html">releaselog/3_19_1.html</a> + <a href="releaselog/3_19_2.html">releaselog/3_19_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> + <a href="releaselog/3_7_7.html">releaselog/3_7_7.html</a> +<li>replace → <a href="changes.html#version_3_19_0">changes.html#version_3_19_0</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="invalidutf.html">invalidutf.html</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="releaselog/3_19_0.html">releaselog/3_19_0.html</a> + <a href="releaselog/3_19_1.html">releaselog/3_19_1.html</a> + <a href="releaselog/3_19_2.html">releaselog/3_19_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> +<li>replace SQL function → <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +<li>reserve bytes → <a href="cksumvfs.html">cksumvfs.html</a> +<li>reset the WAL → <a href="walformat.html#locks">walformat.html#locks</a> + <a href="walformat.html#mxframe">walformat.html#mxframe</a> + <a href="walformat.html#nbackfill">walformat.html#nbackfill</a> +<li>result code → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfiglog">c3ref/c_config_covering_index_scan.html#sqliteconfiglog</a> + <a href="c3ref/c_fail.html">c3ref/c_fail.html</a> + <a href="c3ref/errcode.html">c3ref/errcode.html</a> + <a href="capi3ref.html#SQLITE_FAIL">capi3ref.html#SQLITE_FAIL</a> + <a href="capi3ref.html#sqlite3_errcode">capi3ref.html#sqlite3_errcode</a> + <a href="capi3ref.html#sqliteconfiglog">capi3ref.html#sqliteconfiglog</a> +<li>result code definitions → <a href="rescode.html#pve">rescode.html#pve</a> +<li>result codes → <a href="c3ref/c_abort_rollback.html">c3ref/c_abort_rollback.html</a> + <a href="c3ref/intro.html">c3ref/intro.html</a> + <a href="c3ref/step.html">c3ref/step.html</a> + <a href="capi3ref.html#SQLITE_ABORT_ROLLBACK">capi3ref.html#SQLITE_ABORT_ROLLBACK</a> + <a href="capi3ref.html#sqlite3_step">capi3ref.html#sqlite3_step</a> +<li>result-column → <a href="lang_aggfunc.html">lang_aggfunc.html</a> + <a href="lang_altertable.html">lang_altertable.html</a> + <a href="lang_attach.html">lang_attach.html</a> + <a href="lang_createindex.html">lang_createindex.html</a> + <a href="lang_createtable.html">lang_createtable.html</a> + <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_createview.html">lang_createview.html</a> + <a href="lang_delete.html">lang_delete.html</a> + <a href="lang_expr.html">lang_expr.html</a> + <a href="lang_insert.html">lang_insert.html</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_select.html">lang_select.html</a> + <a href="lang_select.html#compound">lang_select.html#compound</a> + <a href="lang_select.html#simpleselect">lang_select.html#simpleselect</a> + <a href="lang_update.html">lang_update.html</a> + <a href="lang_upsert.html">lang_upsert.html</a> + <a href="lang_with.html">lang_with.html</a> + <a href="partialindex.html">partialindex.html</a> + <a href="windowfunctions.html">windowfunctions.html</a> + <a href="windowfunctions.html#framespec">windowfunctions.html#framespec</a> + <a href="windowfunctions.html#wexcls">windowfunctions.html#wexcls</a> +<li>RETURNING → <a href="c3ref/reset.html">c3ref/reset.html</a> + <a href="capi3ref.html#sqlite3_reset">capi3ref.html#sqlite3_reset</a> + <a href="changes.html#version_3_35_0">changes.html#version_3_35_0</a> + <a href="changes.html#version_3_35_4">changes.html#version_3_35_4</a> + <a href="releaselog/3_35_0.html">releaselog/3_35_0.html</a> + <a href="releaselog/3_35_1.html">releaselog/3_35_1.html</a> + <a href="releaselog/3_35_2.html">releaselog/3_35_2.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> +<li>RETURNING clause → <a href="lang.html">lang.html</a> + <a href="lang_delete.html">lang_delete.html</a> +<li>returning-clause → <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_delete.html">lang_delete.html</a> + <a href="lang_insert.html">lang_insert.html</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_update.html">lang_update.html</a> +<li>reverse_unordered_selects pragma → <a href="changes.html#version_3_6_12">changes.html#version_3_6_12</a> + <a href="releaselog/3_6_12.html">releaselog/3_6_12.html</a> +<li>RIGHT and FULL OUTER JOIN → <a href="changes.html#version_3_39_0">changes.html#version_3_39_0</a> + <a href="releaselog/3_39_0.html">releaselog/3_39_0.html</a> + <a href="releaselog/3_39_1.html">releaselog/3_39_1.html</a> + <a href="releaselog/3_39_2.html">releaselog/3_39_2.html</a> + <a href="releaselog/3_39_3.html">releaselog/3_39_3.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> +<li>Robson proof → <a href="malloc.html#memstatus">malloc.html#memstatus</a> + <a href="malloc.html#memsys5">malloc.html#memsys5</a> + <a href="malloc.html#nofrag">malloc.html#nofrag</a> + <a href="malloc.html#pagecache">malloc.html#pagecache</a> +<li>ROLLBACK → <a href="asyncvfs.html">asyncvfs.html</a> + <a href="c3ref/c_txn_none.html#sqlitetxnread">c3ref/c_txn_none.html#sqlitetxnread</a> + <a href="c3ref/c_txn_none.html#sqlitetxnwrite">c3ref/c_txn_none.html#sqlitetxnwrite</a> + <a href="c3ref/commit_hook.html">c3ref/commit_hook.html</a> + <a href="c3ref/get_autocommit.html">c3ref/get_autocommit.html</a> + <a href="c3ref/stmt_readonly.html">c3ref/stmt_readonly.html</a> + <a href="capi3ref.html#sqlite3_commit_hook">capi3ref.html#sqlite3_commit_hook</a> + <a href="capi3ref.html#sqlite3_get_autocommit">capi3ref.html#sqlite3_get_autocommit</a> + <a href="capi3ref.html#sqlite3_stmt_readonly">capi3ref.html#sqlite3_stmt_readonly</a> + <a href="capi3ref.html#sqlitetxnread">capi3ref.html#sqlitetxnread</a> + <a href="capi3ref.html#sqlitetxnwrite">capi3ref.html#sqlitetxnwrite</a> + <a href="changes.html#version_3_6_5">changes.html#version_3_6_5</a> + <a href="changes.html#version_3_7_11">changes.html#version_3_7_11</a> + <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="changes.html#version_3_8_7_2">changes.html#version_3_8_7_2</a> + <a href="foreignkeys.html#fk_enable">foreignkeys.html#fk_enable</a> + <a href="fullsql.html">fullsql.html</a> + <a href="isolation.html">isolation.html</a> + <a href="lang.html">lang.html</a> + <a href="lang_savepoint.html">lang_savepoint.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_journal_mode">pragma.html#pragma_journal_mode</a> + <a href="releaselog/3_6_5.html">releaselog/3_6_5.html</a> + <a href="releaselog/3_7_11.html">releaselog/3_7_11.html</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> + <a href="releaselog/3_8_7_2.html">releaselog/3_8_7_2.html</a> + <a href="rescode.html#abort">rescode.html#abort</a> + <a href="rescode.html#abort_rollback">rescode.html#abort_rollback</a> + <a href="wal.html#advantages">wal.html#advantages</a> +<li>rollback journal → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntljournalpointer">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntljournalpointer</a> + <a href="capi3ref.html#sqlitefcntljournalpointer">capi3ref.html#sqlitefcntljournalpointer</a> + <a href="compile.html#default_journal_size_limit">compile.html#default_journal_size_limit</a> + <a href="compile.html#enable_batch_atomic_write">compile.html#enable_batch_atomic_write</a> + <a href="errlog.html">errlog.html</a> + <a href="news.html">news.html</a> + <a href="pragma.html#pragma_journal_size_limit">pragma.html#pragma_journal_size_limit</a> + <a href="pragma.html#pragma_synchronous">pragma.html#pragma_synchronous</a> + <a href="rescode.html#readonly_dbmoved">rescode.html#readonly_dbmoved</a> + <a href="shortnames.html">shortnames.html</a> + <a href="shortnames.html#db83corrupt">shortnames.html#db83corrupt</a> + <a href="wal.html">wal.html</a> +<li>rollback-stmt → <a href="lang_savepoint.html">lang_savepoint.html</a> + <a href="lang_transaction.html">lang_transaction.html</a> +<li>round → <a href="changes.html#version_3_29_0">changes.html#version_3_29_0</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="releaselog/3_29_0.html">releaselog/3_29_0.html</a> +<li>row value → <a href="changes.html#version_3_15_2">changes.html#version_3_15_2</a> + <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="fullsql.html">fullsql.html</a> + <a href="lang_expr.html#in_op">lang_expr.html#in_op</a> + <a href="lang_expr.html#subq">lang_expr.html#subq</a> + <a href="lang_update.html">lang_update.html</a> + <a href="releaselog/3_15_2.html">releaselog/3_15_2.html</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +<li>row value IN operator → <a href="changes.html#version_3_38_1">changes.html#version_3_38_1</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> +<li>row values → <a href="changes.html#version_3_15_0">changes.html#version_3_15_0</a> + <a href="changes.html#version_3_15_1">changes.html#version_3_15_1</a> + <a href="changes.html#version_3_16_1">changes.html#version_3_16_1</a> + <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_15_0.html">releaselog/3_15_0.html</a> + <a href="releaselog/3_15_1.html">releaselog/3_15_1.html</a> + <a href="releaselog/3_15_2.html">releaselog/3_15_2.html</a> + <a href="releaselog/3_16_1.html">releaselog/3_16_1.html</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +<li>ROWID → <a href="autoinc.html">autoinc.html</a> + <a href="c3ref/last_insert_rowid.html">c3ref/last_insert_rowid.html</a> + <a href="c3ref/randomness.html">c3ref/randomness.html</a> + <a href="capi3ref.html#sqlite3_last_insert_rowid">capi3ref.html#sqlite3_last_insert_rowid</a> + <a href="capi3ref.html#sqlite3_randomness">capi3ref.html#sqlite3_randomness</a> + <a href="compile.html#enable_sorter_references">compile.html#enable_sorter_references</a> + <a href="gencol.html">gencol.html</a> + <a href="imposter.html">imposter.html</a> + <a href="lang_corefunc.html#last_insert_rowid">lang_corefunc.html#last_insert_rowid</a> + <a href="lang_vacuum.html#howvacuumworks">lang_vacuum.html#howvacuumworks</a> + <a href="rbu.html#database_tables">rbu.html#database_tables</a> + <a href="vtab.html#worid">vtab.html#worid</a> +<li>rowid → <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> + <a href="c3ref/last_insert_rowid.html">c3ref/last_insert_rowid.html</a> + <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> + <a href="c3ref/table_column_metadata.html">c3ref/table_column_metadata.html</a> + <a href="c3ref/update_hook.html">c3ref/update_hook.html</a> + <a href="capi3ref.html#sqlite3_blob_open">capi3ref.html#sqlite3_blob_open</a> + <a href="capi3ref.html#sqlite3_last_insert_rowid">capi3ref.html#sqlite3_last_insert_rowid</a> + <a href="capi3ref.html#sqlite3_preupdate_blobwrite">capi3ref.html#sqlite3_preupdate_blobwrite</a> + <a href="capi3ref.html#sqlite3_table_column_metadata">capi3ref.html#sqlite3_table_column_metadata</a> + <a href="capi3ref.html#sqlite3_update_hook">capi3ref.html#sqlite3_update_hook</a> + <a href="changes.html#version_3_19_0">changes.html#version_3_19_0</a> + <a href="changes.html#version_3_36_0">changes.html#version_3_36_0</a> + <a href="changes.html#version_3_8_7_1">changes.html#version_3_8_7_1</a> + <a href="fileformat2.html##sqltab">fileformat2.html##sqltab</a> + <a href="fileformat2.html#btypes">fileformat2.html#btypes</a> + <a href="fileformat2.html#varint">fileformat2.html#varint</a> + <a href="foreignkeys.html#parentchild">foreignkeys.html#parentchild</a> + <a href="lang_createtable.html#createtabas">lang_createtable.html#createtabas</a> + <a href="lang_createtable.html#primkeyconst">lang_createtable.html#primkeyconst</a> + <a href="lang_expr.html#in_op">lang_expr.html#in_op</a> + <a href="lang_indexedby.html">lang_indexedby.html</a> + <a href="optoverview.html#covidx">optoverview.html#covidx</a> + <a href="pragma.html#pragma_foreign_key_check">pragma.html#pragma_foreign_key_check</a> + <a href="pragma.html#pragma_index_info">pragma.html#pragma_index_info</a> + <a href="pragma.html#pragma_index_xinfo">pragma.html#pragma_index_xinfo</a> + <a href="queryplanner.html#searching">queryplanner.html#searching</a> + <a href="releaselog/3_19_0.html">releaselog/3_19_0.html</a> + <a href="releaselog/3_19_1.html">releaselog/3_19_1.html</a> + <a href="releaselog/3_19_2.html">releaselog/3_19_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> + <a href="releaselog/3_36_0.html">releaselog/3_36_0.html</a> + <a href="releaselog/3_8_7_1.html">releaselog/3_8_7_1.html</a> + <a href="rescode.html#constraint_rowid">rescode.html#constraint_rowid</a> + <a href="rescode.html#mismatch">rescode.html#mismatch</a> + <a href="rowidtable.html">rowidtable.html</a> + <a href="sqldiff.html">sqldiff.html</a> + <a href="stricttables.html">stricttables.html</a> + <a href="vtab.html#xrowid">vtab.html#xrowid</a> + <a href="vtab.html#xupdate">vtab.html#xupdate</a> + <a href="withoutrowid.html">withoutrowid.html</a> + <a href="withoutrowid.html#bene">withoutrowid.html#bene</a> +<li>rowid table → <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> + <a href="c3ref/update_hook.html">c3ref/update_hook.html</a> + <a href="capi3ref.html#sqlite3_preupdate_blobwrite">capi3ref.html#sqlite3_preupdate_blobwrite</a> + <a href="capi3ref.html#sqlite3_update_hook">capi3ref.html#sqlite3_update_hook</a> + <a href="changes.html#version_3_13_0">changes.html#version_3_13_0</a> + <a href="compile.html#enable_preupdate_hook">compile.html#enable_preupdate_hook</a> + <a href="releaselog/3_13_0.html">releaselog/3_13_0.html</a> +<li>rowid tables → <a href="sessionintro.html">sessionintro.html</a> + <a href="unionvtab.html">unionvtab.html</a> +<li>RTREE → <a href="aff_short.html">aff_short.html</a> + <a href="amalgamation.html">amalgamation.html</a> + <a href="changes.html#version_3_44_0">changes.html#version_3_44_0</a> + <a href="changes.html#version_3_7_13">changes.html#version_3_7_13</a> + <a href="changes.html#version_3_7_16">changes.html#version_3_7_16</a> + <a href="changes.html#version_3_7_7">changes.html#version_3_7_7</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_44_0.html">releaselog/3_44_0.html</a> + <a href="releaselog/3_44_1.html">releaselog/3_44_1.html</a> + <a href="releaselog/3_44_2.html">releaselog/3_44_2.html</a> + <a href="releaselog/3_7_13.html">releaselog/3_7_13.html</a> + <a href="releaselog/3_7_16.html">releaselog/3_7_16.html</a> + <a href="releaselog/3_7_16_1.html">releaselog/3_7_16_1.html</a> + <a href="releaselog/3_7_16_2.html">releaselog/3_7_16_2.html</a> + <a href="releaselog/3_7_7.html">releaselog/3_7_7.html</a> + <a href="vtab.html#xintegrity">vtab.html#xintegrity</a> + <a href="vtab.html#xshadowname">vtab.html#xshadowname</a> +<li>rtree → <a href="35to36.html">35to36.html</a> + <a href="changes.html#version_3_6_1">changes.html#version_3_6_1</a> + <a href="changes.html#version_3_7_12">changes.html#version_3_7_12</a> + <a href="compile.html#enable_rtree">compile.html#enable_rtree</a> + <a href="fts5.html#fts5shadowtables">fts5.html#fts5shadowtables</a> + <a href="releaselog/3_6_0.html">releaselog/3_6_0.html</a> + <a href="releaselog/3_7_12.html">releaselog/3_7_12.html</a> + <a href="sqldiff.html">sqldiff.html</a> +<li>rtree shadow tables → <a href="vtab.html#xshadowname">vtab.html#xshadowname</a> +<li>rtreecheck → <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> +<li>rtrim → <a href="lang_corefunc.html">lang_corefunc.html</a> +<li>rules for determining column affinity → <a href="lang_expr.html#castexpr">lang_expr.html#castexpr</a> +<li>Run-Time Loadable Extensions → <a href="cli.html#dotload">cli.html#dotload</a> +<li>safe command-line option → <a href="changes.html#version_3_40_1">changes.html#version_3_40_1</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_40_1.html">releaselog/3_40_1.html</a> +<li>SAVEPOINT → <a href="c3ref/stmt_readonly.html">c3ref/stmt_readonly.html</a> + <a href="capi3ref.html#sqlite3_stmt_readonly">capi3ref.html#sqlite3_stmt_readonly</a> + <a href="changes.html#version_3_12_1">changes.html#version_3_12_1</a> + <a href="changes.html#version_3_13_0">changes.html#version_3_13_0</a> + <a href="changes.html#version_3_37_2">changes.html#version_3_37_2</a> + <a href="changes.html#version_3_6_8">changes.html#version_3_6_8</a> + <a href="changes.html#version_3_7_7">changes.html#version_3_7_7</a> + <a href="changes.html#version_3_7_9">changes.html#version_3_7_9</a> + <a href="foreignkeys.html#fk_enable">foreignkeys.html#fk_enable</a> + <a href="fullsql.html">fullsql.html</a> + <a href="howtocorrupt.html#svptbug">howtocorrupt.html#svptbug</a> + <a href="lang.html">lang.html</a> + <a href="lang_transaction.html">lang_transaction.html</a> + <a href="news.html">news.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_foreign_keys">pragma.html#pragma_foreign_keys</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> + <a href="releaselog/3_13_0.html">releaselog/3_13_0.html</a> + <a href="releaselog/3_37_2.html">releaselog/3_37_2.html</a> + <a href="releaselog/3_6_8.html">releaselog/3_6_8.html</a> + <a href="releaselog/3_7_7.html">releaselog/3_7_7.html</a> + <a href="releaselog/3_7_9.html">releaselog/3_7_9.html</a> + <a href="session.html#SQLITE_CHANGESETAPPLY_FKNOACTION">session.html#SQLITE_CHANGESETAPPLY_FKNOACTION</a> + <a href="session/c_changesetapply_fknoaction.html">session/c_changesetapply_fknoaction.html</a> +<li>SAVEPOINT bug → <a href="changes.html#version_3_37_2">changes.html#version_3_37_2</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_37_2.html">releaselog/3_37_2.html</a> +<li>savepoint-stmt → <a href="lang_savepoint.html">lang_savepoint.html</a> +<li>scalar functions → <a href="lang_aggfunc.html#aggorderby">lang_aggfunc.html#aggorderby</a> + <a href="lang_mathfunc.html">lang_mathfunc.html</a> + <a href="windowfunctions.html">windowfunctions.html</a> +<li>scanstatus options → <a href="c3ref/stmt_scanstatus.html">c3ref/stmt_scanstatus.html</a> + <a href="capi3ref.html#sqlite3_stmt_scanstatus">capi3ref.html#sqlite3_stmt_scanstatus</a> +<li>schema format → <a href="fileformat2.html#serialtype">fileformat2.html#serialtype</a> +<li>schema format number → <a href="changes.html#version_3_7_10">changes.html#version_3_7_10</a> + <a href="compile.html#default_file_format">compile.html#default_file_format</a> + <a href="lang_createindex.html#descidx">lang_createindex.html#descidx</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_7_10.html">releaselog/3_7_10.html</a> +<li>schema storage → <a href="schematab.html">schematab.html</a> +<li>schema_version → <a href="compile.html#omit_schema_version_pragmas">compile.html#omit_schema_version_pragmas</a> +<li>schema_version pragma → <a href="pragma.html#pragma_user_version">pragma.html#pragma_user_version</a> +<li>search application tips → <a href="fts3.html#matchinfo-b">fts3.html#matchinfo-b</a> +<li>secure_delete pragma → <a href="changes.html#version_3_6_23">changes.html#version_3_6_23</a> + <a href="compile.html#secure_delete">compile.html#secure_delete</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_6_23.html">releaselog/3_6_23.html</a> +<li>security → <a href="hirely.html">hirely.html</a> +<li>segment btree → <a href="fts3.html#fts4">fts3.html#fts4</a> +<li>SELECT → <a href="35to36.html">35to36.html</a> + <a href="c3ref/c_limit_attached.html#sqlitelimitcolumn">c3ref/c_limit_attached.html#sqlitelimitcolumn</a> + <a href="c3ref/column_database_name.html">c3ref/column_database_name.html</a> + <a href="c3ref/column_decltype.html">c3ref/column_decltype.html</a> + <a href="c3ref/column_name.html">c3ref/column_name.html</a> + <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> + <a href="c3ref/stmt_readonly.html">c3ref/stmt_readonly.html</a> + <a href="capi3ref.html#sqlite3_column_database_name">capi3ref.html#sqlite3_column_database_name</a> + <a href="capi3ref.html#sqlite3_column_decltype">capi3ref.html#sqlite3_column_decltype</a> + <a href="capi3ref.html#sqlite3_column_name">capi3ref.html#sqlite3_column_name</a> + <a href="capi3ref.html#sqlite3_set_authorizer">capi3ref.html#sqlite3_set_authorizer</a> + <a href="capi3ref.html#sqlite3_stmt_readonly">capi3ref.html#sqlite3_stmt_readonly</a> + <a href="capi3ref.html#sqlitelimitcolumn">capi3ref.html#sqlitelimitcolumn</a> + <a href="changes.html#version_3_8_3">changes.html#version_3_8_3</a> + <a href="changes.html#version_3_9_0">changes.html#version_3_9_0</a> + <a href="compile.html#omit_compound_select">compile.html#omit_compound_select</a> + <a href="compile.html#reverse_unordered_selects">compile.html#reverse_unordered_selects</a> + <a href="datatype3.html#affcompoundview">datatype3.html#affcompoundview</a> + <a href="datatype3.html#affview">datatype3.html#affview</a> + <a href="datatype3.html#colrules">datatype3.html#colrules</a> + <a href="fts3.html#simple_fts_queries">fts3.html#simple_fts_queries</a> + <a href="isolation.html">isolation.html</a> + <a href="lang.html">lang.html</a> + <a href="lang_analyze.html#req">lang_analyze.html#req</a> + <a href="lang_createview.html">lang_createview.html</a> + <a href="lang_expr.html#cosub">lang_expr.html#cosub</a> + <a href="lang_expr.html#subq">lang_expr.html#subq</a> + <a href="lang_indexedby.html">lang_indexedby.html</a> + <a href="lang_insert.html">lang_insert.html</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_transaction.html#immediate">lang_transaction.html#immediate</a> + <a href="lang_upsert.html#parseambig">lang_upsert.html#parseambig</a> + <a href="lang_with.html">lang_with.html</a> + <a href="lang_with.html#mathint">lang_with.html#mathint</a> + <a href="limits.html#max_compound_select">limits.html#max_compound_select</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html">pragma.html</a> + <a href="pragma.html#pragfunc">pragma.html#pragfunc</a> + <a href="pragma.html#pragma_full_column_names">pragma.html#pragma_full_column_names</a> + <a href="pragma.html#pragma_reverse_unordered_selects">pragma.html#pragma_reverse_unordered_selects</a> + <a href="pragma.html#pragma_short_column_names">pragma.html#pragma_short_column_names</a> + <a href="releaselog/3_8_3.html">releaselog/3_8_3.html</a> + <a href="releaselog/3_9_0.html">releaselog/3_9_0.html</a> + <a href="releaselog/3_9_1.html">releaselog/3_9_1.html</a> + <a href="releaselog/3_9_2.html">releaselog/3_9_2.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> + <a href="unionvtab.html">unionvtab.html</a> + <a href="vtab.html#hiddencol">vtab.html#hiddencol</a> + <a href="vtab.html#tabfunc2">vtab.html#tabfunc2</a> +<li>SELECT statement → <a href="changes.html#version_3_39_0">changes.html#version_3_39_0</a> + <a href="releaselog/3_39_0.html">releaselog/3_39_0.html</a> + <a href="releaselog/3_39_1.html">releaselog/3_39_1.html</a> + <a href="releaselog/3_39_2.html">releaselog/3_39_2.html</a> + <a href="releaselog/3_39_3.html">releaselog/3_39_3.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> +<li>select-core → <a href="lang_select.html">lang_select.html</a> + <a href="lang_select.html#compound">lang_select.html#compound</a> + <a href="lang_select.html#simpleselect">lang_select.html#simpleselect</a> +<li>select-stmt → <a href="changes.html#version_3_35_3">changes.html#version_3_35_3</a> + <a href="lang_aggfunc.html">lang_aggfunc.html</a> + <a href="lang_altertable.html">lang_altertable.html</a> + <a href="lang_attach.html">lang_attach.html</a> + <a href="lang_createindex.html">lang_createindex.html</a> + <a href="lang_createtable.html">lang_createtable.html</a> + <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_createview.html">lang_createview.html</a> + <a href="lang_delete.html">lang_delete.html</a> + <a href="lang_expr.html">lang_expr.html</a> + <a href="lang_insert.html">lang_insert.html</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_select.html">lang_select.html</a> + <a href="lang_select.html#compound">lang_select.html#compound</a> + <a href="lang_select.html#simpleselect">lang_select.html#simpleselect</a> + <a href="lang_update.html">lang_update.html</a> + <a href="lang_upsert.html">lang_upsert.html</a> + <a href="lang_with.html">lang_with.html</a> + <a href="lang_with.html#recursivecte">lang_with.html#recursivecte</a> + <a href="partialindex.html">partialindex.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> + <a href="windowfunctions.html">windowfunctions.html</a> + <a href="windowfunctions.html#framespec">windowfunctions.html#framespec</a> + <a href="windowfunctions.html#wexcls">windowfunctions.html#wexcls</a> +<li>self-contained → <a href="index.html">index.html</a> +<li>serial types → <a href="fileformat2.html#schemaformat">fileformat2.html#schemaformat</a> +<li>series → <a href="vtablist.html">vtablist.html</a> +<li>server-side database → <a href="whentouse.html#dbcklst">whentouse.html#dbcklst</a> +<li>serverless → <a href="different.html#serverless">different.html#serverless</a> + <a href="howitworks.html">howitworks.html</a> + <a href="quirks.html">quirks.html</a> +<li>session → <a href="amalgamation.html">amalgamation.html</a> + <a href="changes.html#version_3_13_0">changes.html#version_3_13_0</a> + <a href="changes.html#version_3_26_0">changes.html#version_3_26_0</a> + <a href="compile.html#enable_preupdate_hook">compile.html#enable_preupdate_hook</a> + <a href="releaselog/3_13_0.html">releaselog/3_13_0.html</a> + <a href="releaselog/3_26_0.html">releaselog/3_26_0.html</a> + <a href="session.html#sqlite3_session">session.html#sqlite3_session</a> + <a href="session/intro.html">session/intro.html</a> + <a href="session/session.html">session/session.html</a> +<li>session extension → <a href="changes.html#version_3_17_0">changes.html#version_3_17_0</a> + <a href="changes.html#version_3_42_0">changes.html#version_3_42_0</a> + <a href="compile.html#enable_session">compile.html#enable_session</a> + <a href="cves.html#cvetab">cves.html#cvetab</a> + <a href="releaselog/3_17_0.html">releaselog/3_17_0.html</a> + <a href="releaselog/3_42_0.html">releaselog/3_42_0.html</a> + <a href="session.html">session.html</a> + <a href="session/intro.html">session/intro.html</a> + <a href="sqldiff.html">sqldiff.html</a> +<li>Session Extension C-language Interface → <a href="sessionintro.html">sessionintro.html</a> +<li>shadow tables → <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfigdefensive">c3ref/c_dbconfig_defensive.html#sqlitedbconfigdefensive</a> + <a href="capi3ref.html#sqlitedbconfigdefensive">capi3ref.html#sqlitedbconfigdefensive</a> + <a href="changes.html#version_3_26_0">changes.html#version_3_26_0</a> + <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="changes.html#version_3_39_4">changes.html#version_3_39_4</a> + <a href="cves.html#cvetab">cves.html#cvetab</a> + <a href="fileformat2.html#btypes">fileformat2.html#btypes</a> + <a href="fts5.html#fts5shadowtables">fts5.html#fts5shadowtables</a> + <a href="pragma.html#pragma_secure_delete">pragma.html#pragma_secure_delete</a> + <a href="pragma.html#pragma_table_list">pragma.html#pragma_table_list</a> + <a href="releaselog/3_26_0.html">releaselog/3_26_0.html</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> + <a href="rtree.html">rtree.html</a> + <a href="rtree.html#xshadow">rtree.html#xshadow</a> + <a href="vtab.html#xrename">vtab.html#xrename</a> +<li>shared cache → <a href="c3ref/open.html">c3ref/open.html</a> + <a href="capi3ref.html#sqlite3_open">capi3ref.html#sqlite3_open</a> + <a href="changes.html#version_3_7_13">changes.html#version_3_7_13</a> + <a href="changes.html#version_3_7_15">changes.html#version_3_7_15</a> + <a href="compile.html#rcmd">compile.html#rcmd</a> + <a href="inmemorydb.html#sharedmemdb">inmemorydb.html#sharedmemdb</a> + <a href="isolation.html">isolation.html</a> + <a href="pragma.html#pragma_data_version">pragma.html#pragma_data_version</a> + <a href="releaselog/3_7_13.html">releaselog/3_7_13.html</a> + <a href="releaselog/3_7_15.html">releaselog/3_7_15.html</a> + <a href="rescode.html#busy">rescode.html#busy</a> + <a href="rescode.html#locked">rescode.html#locked</a> +<li>shared cache mode → <a href="c3ref/backup_finish.html#sqlite3backuppagecount">c3ref/backup_finish.html#sqlite3backuppagecount</a> + <a href="c3ref/c_dbstatus_options.html#sqlitedbstatusschemaused">c3ref/c_dbstatus_options.html#sqlitedbstatusschemaused</a> + <a href="capi3ref.html#sqlite3backuppagecount">capi3ref.html#sqlite3backuppagecount</a> + <a href="capi3ref.html#sqlitedbstatusschemaused">capi3ref.html#sqlitedbstatusschemaused</a> + <a href="changes.html#version_3_6_17">changes.html#version_3_6_17</a> + <a href="changes.html#version_3_6_18">changes.html#version_3_6_18</a> + <a href="changes.html#version_3_7_15">changes.html#version_3_7_15</a> + <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="changes.html#version_3_8_7_3">changes.html#version_3_8_7_3</a> + <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="compile.html#omit_shared_cache">compile.html#omit_shared_cache</a> + <a href="isolation.html">isolation.html</a> + <a href="lang_detach.html">lang_detach.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_6_17.html">releaselog/3_6_17.html</a> + <a href="releaselog/3_6_18.html">releaselog/3_6_18.html</a> + <a href="releaselog/3_7_15.html">releaselog/3_7_15.html</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> + <a href="releaselog/3_8_7_3.html">releaselog/3_8_7_3.html</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> + <a href="rescode.html#locked_sharedcache">rescode.html#locked_sharedcache</a> + <a href="uri.html#uricache">uri.html#uricache</a> + <a href="vtab.html#epoonlyvtab">vtab.html#epoonlyvtab</a> +<li>shared lock → <a href="c3ref/backup_finish.html#sqlite3backupstep">c3ref/backup_finish.html#sqlite3backupstep</a> + <a href="capi3ref.html#sqlite3backupstep">capi3ref.html#sqlite3backupstep</a> +<li>shims → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntltrace">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntltrace</a> + <a href="capi3ref.html#sqlitefcntltrace">capi3ref.html#sqlitefcntltrace</a> +<li>shm file → <a href="changes.html#version_3_33_0">changes.html#version_3_33_0</a> + <a href="changes.html#version_3_43_0">changes.html#version_3_43_0</a> + <a href="compile.html#use_seh">compile.html#use_seh</a> + <a href="releaselog/3_33_0.html">releaselog/3_33_0.html</a> + <a href="releaselog/3_43_0.html">releaselog/3_43_0.html</a> + <a href="releaselog/3_43_1.html">releaselog/3_43_1.html</a> + <a href="releaselog/3_43_2.html">releaselog/3_43_2.html</a> + <a href="rescode.html#ioerr_shmsize">rescode.html#ioerr_shmsize</a> +<li>short filenames → <a href="changes.html#version_3_7_7">changes.html#version_3_7_7</a> + <a href="releaselog/3_7_7.html">releaselog/3_7_7.html</a> +<li>short_column_names → <a href="pragma.html#pragma_full_column_names">pragma.html#pragma_full_column_names</a> +<li>shrink_memory pragma → <a href="changes.html#version_3_7_10">changes.html#version_3_7_10</a> + <a href="releaselog/3_7_10.html">releaselog/3_7_10.html</a> +<li>sign → <a href="lang_corefunc.html">lang_corefunc.html</a> +<li>signed-number → <a href="lang_aggfunc.html">lang_aggfunc.html</a> + <a href="lang_altertable.html">lang_altertable.html</a> + <a href="lang_attach.html">lang_attach.html</a> + <a href="lang_createindex.html">lang_createindex.html</a> + <a href="lang_createtable.html">lang_createtable.html</a> + <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_createview.html">lang_createview.html</a> + <a href="lang_delete.html">lang_delete.html</a> + <a href="lang_expr.html">lang_expr.html</a> + <a href="lang_insert.html">lang_insert.html</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_select.html">lang_select.html</a> + <a href="lang_select.html#compound">lang_select.html#compound</a> + <a href="lang_select.html#simpleselect">lang_select.html#simpleselect</a> + <a href="lang_update.html">lang_update.html</a> + <a href="lang_upsert.html">lang_upsert.html</a> + <a href="lang_with.html">lang_with.html</a> + <a href="partialindex.html">partialindex.html</a> + <a href="pragma.html#syntax">pragma.html#syntax</a> + <a href="windowfunctions.html">windowfunctions.html</a> + <a href="windowfunctions.html#framespec">windowfunctions.html#framespec</a> + <a href="windowfunctions.html#wexcls">windowfunctions.html#wexcls</a> +<li>simple fts queries → <a href="fts3.html#fts4">fts3.html#fts4</a> + <a href="fts3.html#full_text_index_queries">fts3.html#full_text_index_queries</a> + <a href="fts3.html#termprefix">fts3.html#termprefix</a> +<li>simple SELECT → <a href="lang_select.html">lang_select.html</a> + <a href="lang_select.html#compound">lang_select.html#compound</a> + <a href="lang_select.html#limitoffset">lang_select.html#limitoffset</a> + <a href="lang_select.html#orderby">lang_select.html#orderby</a> +<li>simple-function-invocation → <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="lang_expr.html#*funcinexpr">lang_expr.html#*funcinexpr</a> +<li>simple-select-stmt → <a href="lang_select.html#simpleselect">lang_select.html#simpleselect</a> +<li>sin → <a href="lang_mathfunc.html">lang_mathfunc.html</a> +<li>sinh → <a href="lang_mathfunc.html">lang_mathfunc.html</a> +<li>skip-scan → <a href="changes.html#version_3_8_7">changes.html#version_3_8_7</a> + <a href="releaselog/3_8_7.html">releaselog/3_8_7.html</a> +<li>skip-scan optimization → <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="changes.html#version_3_8_2">changes.html#version_3_8_2</a> + <a href="changes.html#version_3_8_4_1">changes.html#version_3_8_4_1</a> + <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="fileformat2.html#stat1tab">fileformat2.html#stat1tab</a> + <a href="oldnews.html">oldnews.html</a> + <a href="optoverview.html#where_clause">optoverview.html#where_clause</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> + <a href="releaselog/3_8_2.html">releaselog/3_8_2.html</a> + <a href="releaselog/3_8_4_1.html">releaselog/3_8_4_1.html</a> + <a href="releaselog/3_8_4_2.html">releaselog/3_8_4_2.html</a> + <a href="releaselog/3_8_4_3.html">releaselog/3_8_4_3.html</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> +<li>snapshot → <a href="c3ref/snapshot_open.html">c3ref/snapshot_open.html</a> + <a href="capi3ref.html#sqlite3_snapshot_open">capi3ref.html#sqlite3_snapshot_open</a> +<li>snippet → <a href="bindptr.html">bindptr.html</a> + <a href="bindptr.html#ptrtyp">bindptr.html#ptrtyp</a> + <a href="cves.html#cvetab">cves.html#cvetab</a> + <a href="fts3.html#appendix_a">fts3.html#appendix_a</a> + <a href="fts3.html#simple_fts_queries">fts3.html#simple_fts_queries</a> +<li>soft_heap_limit pragma → <a href="changes.html#version_3_8_1">changes.html#version_3_8_1</a> + <a href="pragma.html#pragma_hard_heap_limit">pragma.html#pragma_hard_heap_limit</a> + <a href="releaselog/3_8_1.html">releaselog/3_8_1.html</a> +<li>solve Sudoku puzzles → <a href="oldnews.html">oldnews.html</a> +<li>sort order → <a href="lang_createindex.html#descidx">lang_createindex.html#descidx</a> +<li>sorting → <a href="eqp.html#or-opt">eqp.html#or-opt</a> +<li>soundex → <a href="lang_corefunc.html">lang_corefunc.html</a> +<li>soundex SQL function → <a href="compile.html#soundex">compile.html#soundex</a> +<li>spellfix1 → <a href="changes.html#version_3_11_1">changes.html#version_3_11_1</a> + <a href="changes.html#version_3_7_16">changes.html#version_3_7_16</a> + <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="changes.html#version_3_8_3">changes.html#version_3_8_3</a> + <a href="changes.html#version_3_8_7">changes.html#version_3_8_7</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> + <a href="releaselog/3_7_16.html">releaselog/3_7_16.html</a> + <a href="releaselog/3_7_16_1.html">releaselog/3_7_16_1.html</a> + <a href="releaselog/3_7_16_2.html">releaselog/3_7_16_2.html</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> + <a href="releaselog/3_8_3.html">releaselog/3_8_3.html</a> + <a href="releaselog/3_8_7.html">releaselog/3_8_7.html</a> + <a href="vtablist.html">vtablist.html</a> +<li>SQL Archive → <a href="compile.html#have_zlib">compile.html#have_zlib</a> +<li>SQL fuzzing → <a href="changes.html#version_3_8_10">changes.html#version_3_8_10</a> + <a href="releaselog/3_8_10.html">releaselog/3_8_10.html</a> + <a href="releaselog/3_8_10_1.html">releaselog/3_8_10_1.html</a> + <a href="releaselog/3_8_10_2.html">releaselog/3_8_10_2.html</a> +<li>SQL keywords → <a href="lang.html">lang.html</a> +<li>SQL Logic Tests → <a href="qmplan.html">qmplan.html</a> +<li>SQL parameter → <a href="c3ref/bind_parameter_name.html">c3ref/bind_parameter_name.html</a> + <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> + <a href="capi3ref.html#sqlite3_bind_parameter_name">capi3ref.html#sqlite3_bind_parameter_name</a> + <a href="capi3ref.html#sqlite3_result_blob">capi3ref.html#sqlite3_result_blob</a> +<li>SQL parameters → <a href="c3ref/bind_parameter_count.html">c3ref/bind_parameter_count.html</a> + <a href="capi3ref.html#sqlite3_bind_parameter_count">capi3ref.html#sqlite3_bind_parameter_count</a> +<li>sql-stmt → <a href="lang.html">lang.html</a> + <a href="lang_explain.html">lang_explain.html</a> +<li>sql-stmt-list → <a href="lang.html">lang.html</a> +<li>SQLAR → <a href="index.html">index.html</a> +<li>sqldiff → <a href="changes.html#version_3_10_0">changes.html#version_3_10_0</a> + <a href="changes.html#version_3_14_1">changes.html#version_3_14_1</a> + <a href="changes.html#version_3_35_2">changes.html#version_3_35_2</a> + <a href="rbu.html#sqldiff">rbu.html#sqldiff</a> + <a href="releaselog/3_10_0.html">releaselog/3_10_0.html</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="releaselog/3_35_2.html">releaselog/3_35_2.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> +<li>sqldiff --rbu → <a href="rbu.html#database_contents">rbu.html#database_contents</a> +<li>sqldiff.exe → <a href="changes.html#version_3_8_10">changes.html#version_3_8_10</a> + <a href="releaselog/3_8_10.html">releaselog/3_8_10.html</a> + <a href="releaselog/3_8_10_1.html">releaselog/3_8_10_1.html</a> + <a href="releaselog/3_8_10_2.html">releaselog/3_8_10_2.html</a> +<li>SQLite amalgamation source file → <a href="lang_mathfunc.html">lang_mathfunc.html</a> +<li>SQLite Archive → <a href="appfileformat.html">appfileformat.html</a> + <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> + <a href="whentouse.html#container">whentouse.html#container</a> + <a href="whynotgit.html">whynotgit.html</a> +<li>SQLite Archive files → <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> + <a href="whentouse.html#container">whentouse.html#container</a> +<li>SQLite Archive format → <a href="cli.html#sqlar">cli.html#sqlar</a> +<li>SQLite Archive smaller than ZIP → <a href="appfileformat.html">appfileformat.html</a> +<li>SQLite Consortium → <a href="oldnews.html">oldnews.html</a> +<li>SQLite database file format → <a href="lang_altertable.html#altertableishard">lang_altertable.html#altertableishard</a> +<li>SQLite extension → <a href="c3ref/auto_extension.html">c3ref/auto_extension.html</a> + <a href="c3ref/load_extension.html">c3ref/load_extension.html</a> + <a href="capi3ref.html#sqlite3_auto_extension">capi3ref.html#sqlite3_auto_extension</a> + <a href="capi3ref.html#sqlite3_load_extension">capi3ref.html#sqlite3_load_extension</a> +<li>SQLite extensions → <a href="lang_corefunc.html#load_extension">lang_corefunc.html#load_extension</a> +<li>SQLite query planner → <a href="cli.html#expert">cli.html#expert</a> + <a href="howitworks.html">howitworks.html</a> + <a href="lang_indexedby.html">lang_indexedby.html</a> + <a href="queryplanner.html">queryplanner.html</a> +<li>SQLite Shared-Cache Mode → <a href="c3ref/enable_shared_cache.html">c3ref/enable_shared_cache.html</a> + <a href="c3ref/unlock_notify.html">c3ref/unlock_notify.html</a> + <a href="capi3ref.html#sqlite3_enable_shared_cache">capi3ref.html#sqlite3_enable_shared_cache</a> + <a href="capi3ref.html#sqlite3_unlock_notify">capi3ref.html#sqlite3_unlock_notify</a> + <a href="pragma.html#pragma_read_uncommitted">pragma.html#pragma_read_uncommitted</a> +<li>SQLite source code repositories → <a href="cli.html#fileio">cli.html#fileio</a> +<li>sqlite3 → <a href="backup.html">backup.html</a> + <a href="c3ref/close.html">c3ref/close.html</a> + <a href="c3ref/intro.html">c3ref/intro.html</a> + <a href="c3ref/objlist.html">c3ref/objlist.html</a> + <a href="c3ref/open.html">c3ref/open.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_close">capi3ref.html#sqlite3_close</a> + <a href="capi3ref.html#sqlite3_open">capi3ref.html#sqlite3_open</a> + <a href="cintro.html">cintro.html</a> + <a href="isolation.html">isolation.html</a> + <a href="sharedcache.html#dontuse">sharedcache.html#dontuse</a> + <a href="tclsqlite.html#trace_v2">tclsqlite.html#trace_v2</a> + <a href="unlock_notify.html">unlock_notify.html</a> + <a href="windowfunctions.html#udfwinfunc">windowfunctions.html#udfwinfunc</a> +<li>sqlite3.exe → <a href="cves.html#cvetab">cves.html#cvetab</a> +<li>sqlite3.exe command-line shell → <a href="sqlar.html#cltools">sqlar.html#cltools</a> + <a href="whentouse.html#container">whentouse.html#container</a> +<li>sqlite3_aggregate_context → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/context.html">c3ref/context.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_context">capi3ref.html#sqlite3_context</a> + <a href="cintro.html">cintro.html</a> + <a href="windowfunctions.html#udfwinfunc">windowfunctions.html#udfwinfunc</a> +<li>sqlite3_aggregate_count → <a href="compile.html#omit_deprecated">compile.html#omit_deprecated</a> +<li>sqlite3_analyzer → <a href="vtablist.html">vtablist.html</a> +<li>sqlite3_analyzer.exe → <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="dbstat.html">dbstat.html</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> +<li>sqlite3_api_routines → <a href="c3ref/objlist.html">c3ref/objlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>sqlite3_auto_extension → <a href="c3ref/cancel_auto_extension.html">c3ref/cancel_auto_extension.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/reset_auto_extension.html">c3ref/reset_auto_extension.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_cancel_auto_extension">capi3ref.html#sqlite3_cancel_auto_extension</a> + <a href="capi3ref.html#sqlite3_reset_auto_extension">capi3ref.html#sqlite3_reset_auto_extension</a> + <a href="changes.html#version_3_6_7">changes.html#version_3_6_7</a> + <a href="loadext.html#persist">loadext.html#persist</a> + <a href="loadext.html#statext">loadext.html#statext</a> + <a href="releaselog/3_6_7.html">releaselog/3_6_7.html</a> +<li>sqlite3_autovacuum_pages → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="changes.html#version_3_37_0">changes.html#version_3_37_0</a> + <a href="releaselog/3_37_0.html">releaselog/3_37_0.html</a> + <a href="releaselog/3_37_1.html">releaselog/3_37_1.html</a> + <a href="releaselog/3_37_2.html">releaselog/3_37_2.html</a> +<li>sqlite3_backup → <a href="backup.html">backup.html</a> + <a href="c3ref/backup_finish.html#sqlite3backupfinish">c3ref/backup_finish.html#sqlite3backupfinish</a> + <a href="c3ref/backup_finish.html#sqlite3backupinit">c3ref/backup_finish.html#sqlite3backupinit</a> + <a href="c3ref/backup_finish.html#sqlite3backuppagecount">c3ref/backup_finish.html#sqlite3backuppagecount</a> + <a href="c3ref/backup_finish.html#sqlite3backupstep">c3ref/backup_finish.html#sqlite3backupstep</a> + <a href="c3ref/close.html">c3ref/close.html</a> + <a href="c3ref/objlist.html">c3ref/objlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_close">capi3ref.html#sqlite3_close</a> + <a href="capi3ref.html#sqlite3backupfinish">capi3ref.html#sqlite3backupfinish</a> + <a href="capi3ref.html#sqlite3backupinit">capi3ref.html#sqlite3backupinit</a> + <a href="capi3ref.html#sqlite3backuppagecount">capi3ref.html#sqlite3backuppagecount</a> + <a href="capi3ref.html#sqlite3backupstep">capi3ref.html#sqlite3backupstep</a> + <a href="changes.html#version_3_6_14_1">changes.html#version_3_6_14_1</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_6_14_1.html">releaselog/3_6_14_1.html</a> +<li>sqlite3_backup_finish → <a href="backup.html">backup.html</a> + <a href="c3ref/backup.html">c3ref/backup.html</a> + <a href="c3ref/close.html">c3ref/close.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_backup">capi3ref.html#sqlite3_backup</a> + <a href="capi3ref.html#sqlite3_close">capi3ref.html#sqlite3_close</a> +<li>sqlite3_backup_init → <a href="backup.html">backup.html</a> + <a href="c3ref/backup.html">c3ref/backup.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_backup">capi3ref.html#sqlite3_backup</a> + <a href="changes.html#version_3_6_11">changes.html#version_3_6_11</a> + <a href="releaselog/3_6_11.html">releaselog/3_6_11.html</a> +<li>sqlite3_backup_pagecount → <a href="backup.html">backup.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>sqlite3_backup_remaining → <a href="backup.html">backup.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>sqlite3_backup_step → <a href="backup.html">backup.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#done">rescode.html#done</a> +<li>sqlite3_bind_blob → <a href="bindptr.html">bindptr.html</a> + <a href="c3ref/bind_parameter_count.html">c3ref/bind_parameter_count.html</a> + <a href="c3ref/bind_parameter_index.html">c3ref/bind_parameter_index.html</a> + <a href="c3ref/bind_parameter_name.html">c3ref/bind_parameter_name.html</a> + <a href="c3ref/clear_bindings.html">c3ref/clear_bindings.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/reset.html">c3ref/reset.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3.html">capi3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_bind_parameter_count">capi3ref.html#sqlite3_bind_parameter_count</a> + <a href="capi3ref.html#sqlite3_bind_parameter_index">capi3ref.html#sqlite3_bind_parameter_index</a> + <a href="capi3ref.html#sqlite3_bind_parameter_name">capi3ref.html#sqlite3_bind_parameter_name</a> + <a href="capi3ref.html#sqlite3_clear_bindings">capi3ref.html#sqlite3_clear_bindings</a> + <a href="capi3ref.html#sqlite3_reset">capi3ref.html#sqlite3_reset</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="fts3.html#f3tknzr">fts3.html#f3tknzr</a> + <a href="lang_expr.html#varparam">lang_expr.html#varparam</a> + <a href="limits.html#max_sql_length">limits.html#max_sql_length</a> + <a href="rescode.html#range">rescode.html#range</a> +<li>sqlite3_bind_blob64 → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="changes.html#version_3_8_7">changes.html#version_3_8_7</a> + <a href="releaselog/3_8_7.html">releaselog/3_8_7.html</a> +<li>sqlite3_bind_double → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="compile.html#omit_floating_point">compile.html#omit_floating_point</a> +<li>sqlite3_bind_int → <a href="arch.html">arch.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="capi3ref.html#sqlite3_value_blob">capi3ref.html#sqlite3_value_blob</a> + <a href="cintro.html">cintro.html</a> + <a href="cli.html#param">cli.html#param</a> +<li>sqlite3_bind_int64 → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> +<li>sqlite3_bind_null → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> +<li>sqlite3_bind_parameter_count → <a href="c3ref/bind_blob.html#byteorderdeterminationrules">c3ref/bind_blob.html#byteorderdeterminationrules</a> + <a href="c3ref/bind_parameter_index.html">c3ref/bind_parameter_index.html</a> + <a href="c3ref/bind_parameter_name.html">c3ref/bind_parameter_name.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#byteorderdeterminationrules">capi3ref.html#byteorderdeterminationrules</a> + <a href="capi3ref.html#sqlite3_bind_parameter_index">capi3ref.html#sqlite3_bind_parameter_index</a> + <a href="capi3ref.html#sqlite3_bind_parameter_name">capi3ref.html#sqlite3_bind_parameter_name</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> +<li>sqlite3_bind_parameter_index → <a href="c3ref/bind_blob.html">c3ref/bind_blob.html</a> + <a href="c3ref/bind_blob.html#byteorderdeterminationrules">c3ref/bind_blob.html#byteorderdeterminationrules</a> + <a href="c3ref/bind_parameter_count.html">c3ref/bind_parameter_count.html</a> + <a href="c3ref/bind_parameter_name.html">c3ref/bind_parameter_name.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#byteorderdeterminationrules">capi3ref.html#byteorderdeterminationrules</a> + <a href="capi3ref.html#sqlite3_bind_blob">capi3ref.html#sqlite3_bind_blob</a> + <a href="capi3ref.html#sqlite3_bind_parameter_count">capi3ref.html#sqlite3_bind_parameter_count</a> + <a href="capi3ref.html#sqlite3_bind_parameter_name">capi3ref.html#sqlite3_bind_parameter_name</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="lang_expr.html#varparam">lang_expr.html#varparam</a> +<li>sqlite3_bind_parameter_name → <a href="c3ref/bind_blob.html#byteorderdeterminationrules">c3ref/bind_blob.html#byteorderdeterminationrules</a> + <a href="c3ref/bind_parameter_count.html">c3ref/bind_parameter_count.html</a> + <a href="c3ref/bind_parameter_index.html">c3ref/bind_parameter_index.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#byteorderdeterminationrules">capi3ref.html#byteorderdeterminationrules</a> + <a href="capi3ref.html#sqlite3_bind_parameter_count">capi3ref.html#sqlite3_bind_parameter_count</a> + <a href="capi3ref.html#sqlite3_bind_parameter_index">capi3ref.html#sqlite3_bind_parameter_index</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="lang_expr.html#varparam">lang_expr.html#varparam</a> +<li>sqlite3_bind_pointer → <a href="bindptr.html">bindptr.html</a> + <a href="bindptr.html#ptrleak">bindptr.html#ptrleak</a> + <a href="bindptr.html#ptrtyp">bindptr.html#ptrtyp</a> + <a href="bytecodevtab.html">bytecodevtab.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="capi3ref.html#sqlite3_value_blob">capi3ref.html#sqlite3_value_blob</a> + <a href="carray.html">carray.html</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="fts5.html#extending_fts5">fts5.html#extending_fts5</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> +<li>sqlite3_bind_text → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/prepare.html">c3ref/prepare.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_prepare">capi3ref.html#sqlite3_prepare</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="fts3.html#f3tknzr">fts3.html#f3tknzr</a> + <a href="fts3.html#limitations">fts3.html#limitations</a> + <a href="optoverview.html#like_opt">optoverview.html#like_opt</a> +<li>sqlite3_bind_text16 → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_result_blob">capi3ref.html#sqlite3_result_blob</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="compile.html#omit_utf16">compile.html#omit_utf16</a> +<li>sqlite3_bind_text64 → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="changes.html#version_3_8_7">changes.html#version_3_8_7</a> + <a href="releaselog/3_8_7.html">releaselog/3_8_7.html</a> +<li>sqlite3_bind_value → <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="c3ref/value.html">c3ref/value.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="capi3ref.html#sqlite3_value">capi3ref.html#sqlite3_value</a> +<li>sqlite3_bind_zeroblob → <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_blob_open">capi3ref.html#sqlite3_blob_open</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="changes.html#version_3_4_0">changes.html#version_3_4_0</a> + <a href="releaselog/3_4_0.html">releaselog/3_4_0.html</a> +<li>sqlite3_bind_zeroblob64 → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> +<li>sqlite3_blob → <a href="c3ref/objlist.html">c3ref/objlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_17_0">changes.html#version_3_17_0</a> + <a href="changes.html#version_3_19_0">changes.html#version_3_19_0</a> + <a href="changes.html#version_3_7_4">changes.html#version_3_7_4</a> + <a href="compile.html#omit_incrblob">compile.html#omit_incrblob</a> + <a href="lang_transaction.html#immediate">lang_transaction.html#immediate</a> + <a href="malloc.html#nofrag">malloc.html#nofrag</a> + <a href="releaselog/3_17_0.html">releaselog/3_17_0.html</a> + <a href="releaselog/3_19_0.html">releaselog/3_19_0.html</a> + <a href="releaselog/3_19_1.html">releaselog/3_19_1.html</a> + <a href="releaselog/3_19_2.html">releaselog/3_19_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> + <a href="releaselog/3_7_4.html">releaselog/3_7_4.html</a> + <a href="withoutrowid.html">withoutrowid.html</a> +<li>sqlite3_blob_bytes → <a href="c3ref/blob.html">c3ref/blob.html</a> + <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> + <a href="c3ref/blob_read.html">c3ref/blob_read.html</a> + <a href="c3ref/blob_reopen.html">c3ref/blob_reopen.html</a> + <a href="c3ref/blob_write.html">c3ref/blob_write.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_blob">capi3ref.html#sqlite3_blob</a> + <a href="capi3ref.html#sqlite3_blob_open">capi3ref.html#sqlite3_blob_open</a> + <a href="capi3ref.html#sqlite3_blob_read">capi3ref.html#sqlite3_blob_read</a> + <a href="capi3ref.html#sqlite3_blob_reopen">capi3ref.html#sqlite3_blob_reopen</a> + <a href="capi3ref.html#sqlite3_blob_write">capi3ref.html#sqlite3_blob_write</a> +<li>sqlite3_blob_close → <a href="c3ref/blob.html">c3ref/blob.html</a> + <a href="c3ref/blob_bytes.html">c3ref/blob_bytes.html</a> + <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> + <a href="c3ref/blob_read.html">c3ref/blob_read.html</a> + <a href="c3ref/blob_write.html">c3ref/blob_write.html</a> + <a href="c3ref/close.html">c3ref/close.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_blob">capi3ref.html#sqlite3_blob</a> + <a href="capi3ref.html#sqlite3_blob_bytes">capi3ref.html#sqlite3_blob_bytes</a> + <a href="capi3ref.html#sqlite3_blob_open">capi3ref.html#sqlite3_blob_open</a> + <a href="capi3ref.html#sqlite3_blob_read">capi3ref.html#sqlite3_blob_read</a> + <a href="capi3ref.html#sqlite3_blob_write">capi3ref.html#sqlite3_blob_write</a> + <a href="capi3ref.html#sqlite3_close">capi3ref.html#sqlite3_close</a> + <a href="lang_transaction.html#immediate">lang_transaction.html#immediate</a> +<li>sqlite3_blob_open → <a href="c3ref/bind_blob.html#byteorderdeterminationrules">c3ref/bind_blob.html#byteorderdeterminationrules</a> + <a href="c3ref/blob.html">c3ref/blob.html</a> + <a href="c3ref/blob_bytes.html">c3ref/blob_bytes.html</a> + <a href="c3ref/blob_close.html">c3ref/blob_close.html</a> + <a href="c3ref/blob_read.html">c3ref/blob_read.html</a> + <a href="c3ref/blob_reopen.html">c3ref/blob_reopen.html</a> + <a href="c3ref/blob_write.html">c3ref/blob_write.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#byteorderdeterminationrules">capi3ref.html#byteorderdeterminationrules</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_blob">capi3ref.html#sqlite3_blob</a> + <a href="capi3ref.html#sqlite3_blob_bytes">capi3ref.html#sqlite3_blob_bytes</a> + <a href="capi3ref.html#sqlite3_blob_close">capi3ref.html#sqlite3_blob_close</a> + <a href="capi3ref.html#sqlite3_blob_read">capi3ref.html#sqlite3_blob_read</a> + <a href="capi3ref.html#sqlite3_blob_reopen">capi3ref.html#sqlite3_blob_reopen</a> + <a href="capi3ref.html#sqlite3_blob_write">capi3ref.html#sqlite3_blob_write</a> + <a href="changes.html#version_3_4_0">changes.html#version_3_4_0</a> + <a href="lang_corefunc.html#zeroblob">lang_corefunc.html#zeroblob</a> + <a href="releaselog/3_4_0.html">releaselog/3_4_0.html</a> + <a href="unionvtab.html">unionvtab.html</a> + <a href="withoutrowid.html">withoutrowid.html</a> +<li>sqlite3_blob_read → <a href="c3ref/blob.html">c3ref/blob.html</a> + <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> + <a href="c3ref/blob_reopen.html">c3ref/blob_reopen.html</a> + <a href="c3ref/blob_write.html">c3ref/blob_write.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_blob">capi3ref.html#sqlite3_blob</a> + <a href="capi3ref.html#sqlite3_blob_open">capi3ref.html#sqlite3_blob_open</a> + <a href="capi3ref.html#sqlite3_blob_reopen">capi3ref.html#sqlite3_blob_reopen</a> + <a href="capi3ref.html#sqlite3_blob_write">capi3ref.html#sqlite3_blob_write</a> + <a href="changes.html#version_3_8_9">changes.html#version_3_8_9</a> + <a href="fasterthanfs.html">fasterthanfs.html</a> + <a href="releaselog/3_8_9.html">releaselog/3_8_9.html</a> +<li>sqlite3_blob_reopen → <a href="c3ref/blob.html">c3ref/blob.html</a> + <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> + <a href="c3ref/blob_reopen.html">c3ref/blob_reopen.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_blob">capi3ref.html#sqlite3_blob</a> + <a href="capi3ref.html#sqlite3_blob_open">capi3ref.html#sqlite3_blob_open</a> + <a href="capi3ref.html#sqlite3_blob_reopen">capi3ref.html#sqlite3_blob_reopen</a> + <a href="changes.html#version_3_17_0">changes.html#version_3_17_0</a> + <a href="changes.html#version_3_7_4">changes.html#version_3_7_4</a> + <a href="compile.html#enable_null_trim">compile.html#enable_null_trim</a> + <a href="releaselog/3_17_0.html">releaselog/3_17_0.html</a> + <a href="releaselog/3_7_4.html">releaselog/3_7_4.html</a> +<li>sqlite3_blob_write → <a href="c3ref/blob.html">c3ref/blob.html</a> + <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> + <a href="c3ref/blob_read.html">c3ref/blob_read.html</a> + <a href="c3ref/blob_reopen.html">c3ref/blob_reopen.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_blob">capi3ref.html#sqlite3_blob</a> + <a href="capi3ref.html#sqlite3_blob_open">capi3ref.html#sqlite3_blob_open</a> + <a href="capi3ref.html#sqlite3_blob_read">capi3ref.html#sqlite3_blob_read</a> + <a href="capi3ref.html#sqlite3_blob_reopen">capi3ref.html#sqlite3_blob_reopen</a> + <a href="capi3ref.html#sqlite3_preupdate_blobwrite">capi3ref.html#sqlite3_preupdate_blobwrite</a> + <a href="changes.html#version_3_8_9">changes.html#version_3_8_9</a> + <a href="releaselog/3_8_9.html">releaselog/3_8_9.html</a> +<li>sqlite3_busy_handler → <a href="backup.html">backup.html</a> + <a href="c3ref/backup_finish.html#sqlite3backupstep">c3ref/backup_finish.html#sqlite3backupstep</a> + <a href="c3ref/busy_timeout.html">c3ref/busy_timeout.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="c3ref/wal_checkpoint_v2.html">c3ref/wal_checkpoint_v2.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_busy_timeout">capi3ref.html#sqlite3_busy_timeout</a> + <a href="capi3ref.html#sqlite3_wal_checkpoint_v2">capi3ref.html#sqlite3_wal_checkpoint_v2</a> + <a href="capi3ref.html#sqlite3backupstep">capi3ref.html#sqlite3backupstep</a> + <a href="faq.html#q5">faq.html#q5</a> + <a href="pragma.html#pragma_busy_timeout">pragma.html#pragma_busy_timeout</a> + <a href="pragma.html#pragma_wal_checkpoint">pragma.html#pragma_wal_checkpoint</a> + <a href="rescode.html#busy">rescode.html#busy</a> +<li>sqlite3_busy_timeout → <a href="34to35.html">34to35.html</a> + <a href="backup.html">backup.html</a> + <a href="c3ref/busy_handler.html">c3ref/busy_handler.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_busy_handler">capi3ref.html#sqlite3_busy_handler</a> + <a href="faq.html#q5">faq.html#q5</a> + <a href="pragma.html#pragma_busy_timeout">pragma.html#pragma_busy_timeout</a> + <a href="rescode.html#busy">rescode.html#busy</a> +<li>sqlite3_cancel_auto_extension → <a href="c3ref/auto_extension.html">c3ref/auto_extension.html</a> + <a href="c3ref/cancel_auto_extension.html">c3ref/cancel_auto_extension.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_auto_extension">capi3ref.html#sqlite3_auto_extension</a> + <a href="capi3ref.html#sqlite3_cancel_auto_extension">capi3ref.html#sqlite3_cancel_auto_extension</a> + <a href="changes.html#version_3_8_0">changes.html#version_3_8_0</a> + <a href="releaselog/3_8_0.html">releaselog/3_8_0.html</a> + <a href="releaselog/3_8_0_1.html">releaselog/3_8_0_1.html</a> + <a href="releaselog/3_8_0_2.html">releaselog/3_8_0_2.html</a> +<li>sqlite3_carray_bind → <a href="changes.html#version_3_34_0">changes.html#version_3_34_0</a> + <a href="releaselog/3_34_0.html">releaselog/3_34_0.html</a> + <a href="releaselog/3_34_1.html">releaselog/3_34_1.html</a> +<li>sqlite3_changegroup → <a href="session.html">session.html</a> + <a href="session/objlist.html">session/objlist.html</a> + <a href="sessionintro.html#changeset">sessionintro.html#changeset</a> +<li>sqlite3_changes → <a href="c3ref/changes.html">c3ref/changes.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="c3ref/total_changes.html">c3ref/total_changes.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_changes">capi3ref.html#sqlite3_changes</a> + <a href="capi3ref.html#sqlite3_total_changes">capi3ref.html#sqlite3_total_changes</a> + <a href="changes.html#version_3_6_5">changes.html#version_3_6_5</a> + <a href="changes.html#version_3_8_11_1">changes.html#version_3_8_11_1</a> + <a href="lang_conflict.html">lang_conflict.html</a> + <a href="lang_createtrigger.html#instead_of_trigger">lang_createtrigger.html#instead_of_trigger</a> + <a href="lang_delete.html#truncateopt">lang_delete.html#truncateopt</a> + <a href="pragma.html#pragma_count_changes">pragma.html#pragma_count_changes</a> + <a href="releaselog/3_6_5.html">releaselog/3_6_5.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> +<li>sqlite3_changes64 → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="changes.html#version_3_37_0">changes.html#version_3_37_0</a> + <a href="lang_corefunc.html#changes">lang_corefunc.html#changes</a> + <a href="releaselog/3_37_0.html">releaselog/3_37_0.html</a> + <a href="releaselog/3_37_1.html">releaselog/3_37_1.html</a> + <a href="releaselog/3_37_2.html">releaselog/3_37_2.html</a> +<li>sqlite3_changeset_iter → <a href="session.html">session.html</a> + <a href="session/objlist.html">session/objlist.html</a> +<li>sqlite3_clear_bindings → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/reset.html">c3ref/reset.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_reset">capi3ref.html#sqlite3_reset</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> +<li>sqlite3_close → <a href="backup.html">backup.html</a> + <a href="c3ref/close.html">c3ref/close.html</a> + <a href="c3ref/create_collation.html">c3ref/create_collation.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/open.html">c3ref/open.html</a> + <a href="c3ref/snapshot_recover.html">c3ref/snapshot_recover.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="c3ref/unlock_notify.html">c3ref/unlock_notify.html</a> + <a href="capi3.html">capi3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_close">capi3ref.html#sqlite3_close</a> + <a href="capi3ref.html#sqlite3_create_collation">capi3ref.html#sqlite3_create_collation</a> + <a href="capi3ref.html#sqlite3_open">capi3ref.html#sqlite3_open</a> + <a href="capi3ref.html#sqlite3_snapshot_recover">capi3ref.html#sqlite3_snapshot_recover</a> + <a href="capi3ref.html#sqlite3_unlock_notify">capi3ref.html#sqlite3_unlock_notify</a> + <a href="cintro.html">cintro.html</a> + <a href="howtocorrupt.html#fork">howtocorrupt.html#fork</a> + <a href="malloc.html">malloc.html</a> + <a href="quickstart.html">quickstart.html</a> + <a href="stmt.html">stmt.html</a> + <a href="tempfiles.html#tempdb">tempfiles.html#tempdb</a> + <a href="wal.html#walfile">wal.html#walfile</a> + <a href="walformat.html#locks">walformat.html#locks</a> + <a href="walformat.html#shm">walformat.html#shm</a> +<li>sqlite3_close_v2 → <a href="c3ref/close.html">c3ref/close.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_close">capi3ref.html#sqlite3_close</a> + <a href="changes.html#version_3_7_14">changes.html#version_3_7_14</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_7_14.html">releaselog/3_7_14.html</a> + <a href="walformat.html#locks">walformat.html#locks</a> +<li>sqlite3_collation_needed → <a href="c3ref/create_collation.html">c3ref/create_collation.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_create_collation">capi3ref.html#sqlite3_create_collation</a> +<li>sqlite3_collation_needed16 → <a href="c3ref/create_collation.html">c3ref/create_collation.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_create_collation">capi3ref.html#sqlite3_create_collation</a> +<li>sqlite3_column_blob → <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3.html">capi3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="changes.html#version_3_4_0">changes.html#version_3_4_0</a> + <a href="cintro.html">cintro.html</a> + <a href="releaselog/3_4_0.html">releaselog/3_4_0.html</a> +<li>sqlite3_column_bytes → <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="cintro.html">cintro.html</a> +<li>sqlite3_column_bytes16 → <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="cintro.html">cintro.html</a> +<li>sqlite3_column_count → <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/data_count.html">c3ref/data_count.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3.html">capi3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_data_count">capi3ref.html#sqlite3_data_count</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="changes.html#version_3_16_2">changes.html#version_3_16_2</a> + <a href="cintro.html">cintro.html</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> +<li>sqlite3_column_database_name → <a href="c3ref/column_database_name.html">c3ref/column_database_name.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_column_database_name">capi3ref.html#sqlite3_column_database_name</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="compile.html#enable_column_metadata">compile.html#enable_column_metadata</a> +<li>sqlite3_column_database_name16 → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="compile.html#enable_column_metadata">compile.html#enable_column_metadata</a> +<li>sqlite3_column_decltype → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="compile.html#omit_decltype">compile.html#omit_decltype</a> +<li>sqlite3_column_decltype16 → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="compile.html#omit_decltype">compile.html#omit_decltype</a> +<li>sqlite3_column_double → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="cintro.html">cintro.html</a> + <a href="compile.html#omit_floating_point">compile.html#omit_floating_point</a> +<li>sqlite3_column_int → <a href="c3ref/data_count.html">c3ref/data_count.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_data_count">capi3ref.html#sqlite3_data_count</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="cintro.html">cintro.html</a> + <a href="opcode.html">opcode.html</a> + <a href="rescode.html#range">rescode.html#range</a> +<li>sqlite3_column_int64 → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="cintro.html">cintro.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>sqlite3_column_name → <a href="c3ref/exec.html">c3ref/exec.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_exec">capi3ref.html#sqlite3_exec</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="faq.html#q28">faq.html#q28</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> +<li>sqlite3_column_name16 → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> +<li>sqlite3_column_origin_name → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="compile.html#enable_column_metadata">compile.html#enable_column_metadata</a> +<li>sqlite3_column_origin_name16 → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="compile.html#enable_column_metadata">compile.html#enable_column_metadata</a> +<li>sqlite3_column_table_name → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="compile.html#enable_column_metadata">compile.html#enable_column_metadata</a> +<li>sqlite3_column_table_name16 → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="compile.html#enable_column_metadata">compile.html#enable_column_metadata</a> +<li>sqlite3_column_text → <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/exec.html">c3ref/exec.html</a> + <a href="c3ref/free_table.html">c3ref/free_table.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_exec">capi3ref.html#sqlite3_exec</a> + <a href="capi3ref.html#sqlite3_free_table">capi3ref.html#sqlite3_free_table</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="cintro.html">cintro.html</a> + <a href="invalidutf.html">invalidutf.html</a> + <a href="opcode.html">opcode.html</a> +<li>sqlite3_column_text16 → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="cintro.html">cintro.html</a> + <a href="compile.html#omit_utf16">compile.html#omit_utf16</a> + <a href="invalidutf.html">invalidutf.html</a> +<li>sqlite3_column_type → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3.html">capi3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="cintro.html">cintro.html</a> +<li>sqlite3_column_value → <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="c3ref/value.html">c3ref/value.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="capi3ref.html#sqlite3_value">capi3ref.html#sqlite3_value</a> + <a href="cintro.html">cintro.html</a> +<li>sqlite3_commit_hook → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="c3ref/update_hook.html">c3ref/update_hook.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_update_hook">capi3ref.html#sqlite3_update_hook</a> + <a href="rescode.html#constraint_commithook">rescode.html#constraint_commithook</a> +<li>sqlite3_compileoption_get → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_6_23">changes.html#version_3_6_23</a> + <a href="compile.html#omit_compileoption_diags">compile.html#omit_compileoption_diags</a> + <a href="lang_corefunc.html#sqlite_compileoption_get">lang_corefunc.html#sqlite_compileoption_get</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_compile_options">pragma.html#pragma_compile_options</a> + <a href="releaselog/3_6_23.html">releaselog/3_6_23.html</a> + <a href="th3.html">th3.html</a> +<li>sqlite3_compileoption_used → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_6_23">changes.html#version_3_6_23</a> + <a href="changes.html#version_3_8_10_1">changes.html#version_3_8_10_1</a> + <a href="compile.html#omit_compileoption_diags">compile.html#omit_compileoption_diags</a> + <a href="lang_corefunc.html#sqlite_compileoption_used">lang_corefunc.html#sqlite_compileoption_used</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_6_23.html">releaselog/3_6_23.html</a> + <a href="releaselog/3_8_10_1.html">releaselog/3_8_10_1.html</a> + <a href="releaselog/3_8_10_2.html">releaselog/3_8_10_2.html</a> +<li>sqlite3_complete → <a href="arch.html">arch.html</a> + <a href="c3ref/complete.html">c3ref/complete.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_complete">capi3ref.html#sqlite3_complete</a> + <a href="compile.html#omit_complete">compile.html#omit_complete</a> +<li>sqlite3_complete16 → <a href="c3ref/complete.html">c3ref/complete.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_complete">capi3ref.html#sqlite3_complete</a> + <a href="compile.html#omit_complete">compile.html#omit_complete</a> +<li>sqlite3_config → <a href="35to36.html">35to36.html</a> + <a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfiggetmutex">c3ref/c_config_covering_index_scan.html#sqliteconfiggetmutex</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigmalloc">c3ref/c_config_covering_index_scan.html#sqliteconfigmalloc</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigmultithread">c3ref/c_config_covering_index_scan.html#sqliteconfigmultithread</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigmutex">c3ref/c_config_covering_index_scan.html#sqliteconfigmutex</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigserialized">c3ref/c_config_covering_index_scan.html#sqliteconfigserialized</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigsinglethread">c3ref/c_config_covering_index_scan.html#sqliteconfigsinglethread</a> + <a href="c3ref/db_config.html">c3ref/db_config.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/hard_heap_limit64.html">c3ref/hard_heap_limit64.html</a> + <a href="c3ref/initialize.html">c3ref/initialize.html</a> + <a href="c3ref/log.html">c3ref/log.html</a> + <a href="c3ref/mem_methods.html">c3ref/mem_methods.html</a> + <a href="c3ref/open.html#urifilenamesinsqlite3open">c3ref/open.html#urifilenamesinsqlite3open</a> + <a href="c3ref/pcache_methods2.html">c3ref/pcache_methods2.html</a> + <a href="c3ref/threadsafe.html">c3ref/threadsafe.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_CONFIG_COVERING_INDEX_SCAN">capi3ref.html#SQLITE_CONFIG_COVERING_INDEX_SCAN</a> + <a href="capi3ref.html#sqlite3_db_config">capi3ref.html#sqlite3_db_config</a> + <a href="capi3ref.html#sqlite3_hard_heap_limit64">capi3ref.html#sqlite3_hard_heap_limit64</a> + <a href="capi3ref.html#sqlite3_initialize">capi3ref.html#sqlite3_initialize</a> + <a href="capi3ref.html#sqlite3_log">capi3ref.html#sqlite3_log</a> + <a href="capi3ref.html#sqlite3_mem_methods">capi3ref.html#sqlite3_mem_methods</a> + <a href="capi3ref.html#sqlite3_pcache_methods2">capi3ref.html#sqlite3_pcache_methods2</a> + <a href="capi3ref.html#sqlite3_threadsafe">capi3ref.html#sqlite3_threadsafe</a> + <a href="capi3ref.html#sqliteconfiggetmutex">capi3ref.html#sqliteconfiggetmutex</a> + <a href="capi3ref.html#sqliteconfigmalloc">capi3ref.html#sqliteconfigmalloc</a> + <a href="capi3ref.html#sqliteconfigmultithread">capi3ref.html#sqliteconfigmultithread</a> + <a href="capi3ref.html#sqliteconfigmutex">capi3ref.html#sqliteconfigmutex</a> + <a href="capi3ref.html#sqliteconfigserialized">capi3ref.html#sqliteconfigserialized</a> + <a href="capi3ref.html#sqliteconfigsinglethread">capi3ref.html#sqliteconfigsinglethread</a> + <a href="capi3ref.html#urifilenamesinsqlite3open">capi3ref.html#urifilenamesinsqlite3open</a> + <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="changes.html#version_3_42_0">changes.html#version_3_42_0</a> + <a href="changes.html#version_3_6_1">changes.html#version_3_6_1</a> + <a href="changes.html#version_3_6_23">changes.html#version_3_6_23</a> + <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="cintro.html">cintro.html</a> + <a href="compile.html#default_lookaside">compile.html#default_lookaside</a> + <a href="compile.html#default_memstatus">compile.html#default_memstatus</a> + <a href="compile.html#default_mmap_size">compile.html#default_mmap_size</a> + <a href="compile.html#enable_memsys3">compile.html#enable_memsys3</a> + <a href="compile.html#enable_memsys5">compile.html#enable_memsys5</a> + <a href="compile.html#enable_sorter_references">compile.html#enable_sorter_references</a> + <a href="compile.html#enable_sqllog">compile.html#enable_sqllog</a> + <a href="compile.html#max_memory">compile.html#max_memory</a> + <a href="compile.html#memdb_default_maxsize">compile.html#memdb_default_maxsize</a> + <a href="compile.html#threadsafe">compile.html#threadsafe</a> + <a href="compile.html#zero_malloc">compile.html#zero_malloc</a> + <a href="custombuild.html">custombuild.html</a> + <a href="errlog.html">errlog.html</a> + <a href="lang_vacuum.html#vacuuminto">lang_vacuum.html#vacuuminto</a> + <a href="loadext.html#statext">loadext.html#statext</a> + <a href="malloc.html#lookaside">malloc.html#lookaside</a> + <a href="malloc.html#memstatus">malloc.html#memstatus</a> + <a href="malloc.html#memsys5">malloc.html#memsys5</a> + <a href="malloc.html#memsysx">malloc.html#memsysx</a> + <a href="malloc.html#pagecache">malloc.html#pagecache</a> + <a href="mmap.html">mmap.html</a> + <a href="news.html">news.html</a> + <a href="pragma.html#pragma_mmap_size">pragma.html#pragma_mmap_size</a> + <a href="privatebranch.html">privatebranch.html</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> + <a href="releaselog/3_42_0.html">releaselog/3_42_0.html</a> + <a href="releaselog/3_6_0.html">releaselog/3_6_0.html</a> + <a href="releaselog/3_6_1.html">releaselog/3_6_1.html</a> + <a href="releaselog/3_6_23.html">releaselog/3_6_23.html</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> + <a href="security.html">security.html</a> + <a href="testing.html#oomtesting">testing.html#oomtesting</a> + <a href="threadsafe.html">threadsafe.html</a> + <a href="uri.html">uri.html</a> +<li>sqlite3_context → <a href="c3ref/aggregate_context.html">c3ref/aggregate_context.html</a> + <a href="c3ref/objlist.html">c3ref/objlist.html</a> + <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> + <a href="c3ref/result_subtype.html">c3ref/result_subtype.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_aggregate_context">capi3ref.html#sqlite3_aggregate_context</a> + <a href="capi3ref.html#sqlite3_result_blob">capi3ref.html#sqlite3_result_blob</a> + <a href="capi3ref.html#sqlite3_result_subtype">capi3ref.html#sqlite3_result_subtype</a> + <a href="changes.html#version_3_8_10">changes.html#version_3_8_10</a> + <a href="releaselog/3_8_10.html">releaselog/3_8_10.html</a> + <a href="releaselog/3_8_10_1.html">releaselog/3_8_10_1.html</a> + <a href="releaselog/3_8_10_2.html">releaselog/3_8_10_2.html</a> + <a href="windowfunctions.html#udfwinfunc">windowfunctions.html#udfwinfunc</a> +<li>sqlite3_context_db_handle → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/context.html">c3ref/context.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_context">capi3ref.html#sqlite3_context</a> + <a href="changes.html#version_3_5_8">changes.html#version_3_5_8</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_5_8.html">releaselog/3_5_8.html</a> +<li>sqlite3_create_collation → <a href="c3ref/collation_needed.html">c3ref/collation_needed.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_collation_needed">capi3ref.html#sqlite3_collation_needed</a> + <a href="cintro.html">cintro.html</a> + <a href="datatype3.html#collation">datatype3.html#collation</a> + <a href="faq.html#q18">faq.html#q18</a> + <a href="fileformat2.html#serialtype">fileformat2.html#serialtype</a> + <a href="fullsql.html">fullsql.html</a> +<li>sqlite3_create_collation16 → <a href="c3ref/collation_needed.html">c3ref/collation_needed.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_collation_needed">capi3ref.html#sqlite3_collation_needed</a> +<li>sqlite3_create_collation_v2 → <a href="c3ref/collation_needed.html">c3ref/collation_needed.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_collation_needed">capi3ref.html#sqlite3_collation_needed</a> +<li>sqlite3_create_filename → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/uri_boolean.html">c3ref/uri_boolean.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_uri_boolean">capi3ref.html#sqlite3_uri_boolean</a> + <a href="changes.html#version_3_32_0">changes.html#version_3_32_0</a> + <a href="releaselog/3_32_0.html">releaselog/3_32_0.html</a> + <a href="releaselog/3_32_1.html">releaselog/3_32_1.html</a> + <a href="releaselog/3_32_2.html">releaselog/3_32_2.html</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> +<li>sqlite3_create_function → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/c_deterministic.html">c3ref/c_deterministic.html</a> + <a href="c3ref/context_db_handle.html">c3ref/context_db_handle.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> + <a href="c3ref/result_subtype.html">c3ref/result_subtype.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="c3ref/user_data.html">c3ref/user_data.html</a> + <a href="c3ref/value_subtype.html">c3ref/value_subtype.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_DETERMINISTIC">capi3ref.html#SQLITE_DETERMINISTIC</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_context_db_handle">capi3ref.html#sqlite3_context_db_handle</a> + <a href="capi3ref.html#sqlite3_result_blob">capi3ref.html#sqlite3_result_blob</a> + <a href="capi3ref.html#sqlite3_result_subtype">capi3ref.html#sqlite3_result_subtype</a> + <a href="capi3ref.html#sqlite3_user_data">capi3ref.html#sqlite3_user_data</a> + <a href="capi3ref.html#sqlite3_value_subtype">capi3ref.html#sqlite3_value_subtype</a> + <a href="changes.html#version_3_6_15">changes.html#version_3_6_15</a> + <a href="changes.html#version_3_8_3">changes.html#version_3_8_3</a> + <a href="cintro.html">cintro.html</a> + <a href="faq.html#q18">faq.html#q18</a> + <a href="fts3.html#appendix_a">fts3.html#appendix_a</a> + <a href="fts3.html#the_compress_and_uncompress_options">fts3.html#the_compress_and_uncompress_options</a> + <a href="lang_aggfunc.html">lang_aggfunc.html</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="lang_corefunc.html#glob">lang_corefunc.html#glob</a> + <a href="lang_corefunc.html#like">lang_corefunc.html#like</a> + <a href="lang_expr.html#*funcinexpr">lang_expr.html#*funcinexpr</a> + <a href="news.html">news.html</a> + <a href="optoverview.html#like_opt">optoverview.html#like_opt</a> + <a href="pragma.html#pragma_case_sensitive_like">pragma.html#pragma_case_sensitive_like</a> + <a href="releaselog/3_6_15.html">releaselog/3_6_15.html</a> + <a href="releaselog/3_8_3.html">releaselog/3_8_3.html</a> + <a href="rtree.html#readwrite">rtree.html#readwrite</a> +<li>sqlite3_create_function16 → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/c_deterministic.html">c3ref/c_deterministic.html</a> + <a href="c3ref/context_db_handle.html">c3ref/context_db_handle.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="c3ref/user_data.html">c3ref/user_data.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_DETERMINISTIC">capi3ref.html#SQLITE_DETERMINISTIC</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_context_db_handle">capi3ref.html#sqlite3_context_db_handle</a> + <a href="capi3ref.html#sqlite3_result_blob">capi3ref.html#sqlite3_result_blob</a> + <a href="capi3ref.html#sqlite3_user_data">capi3ref.html#sqlite3_user_data</a> +<li>sqlite3_create_function_v2 → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/c_deterministic.html">c3ref/c_deterministic.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_DETERMINISTIC">capi3ref.html#SQLITE_DETERMINISTIC</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="changes.html#version_3_7_3">changes.html#version_3_7_3</a> + <a href="deterministic.html#dtexception">deterministic.html#dtexception</a> + <a href="oldnews.html">oldnews.html</a> + <a href="rbu.html#sqldiff">rbu.html#sqldiff</a> + <a href="releaselog/3_7_3.html">releaselog/3_7_3.html</a> +<li>sqlite3_create_module → <a href="c3ref/drop_modules.html">c3ref/drop_modules.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/module.html">c3ref/module.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_drop_modules">capi3ref.html#sqlite3_drop_modules</a> + <a href="capi3ref.html#sqlite3_module">capi3ref.html#sqlite3_module</a> + <a href="changes.html#version_3_7_13">changes.html#version_3_7_13</a> + <a href="cintro.html">cintro.html</a> + <a href="lang_createvtab.html">lang_createvtab.html</a> + <a href="releaselog/3_7_13.html">releaselog/3_7_13.html</a> + <a href="rtree.html">rtree.html</a> + <a href="vtab.html">vtab.html</a> + <a href="vtab.html#customvtab">vtab.html#customvtab</a> + <a href="vtab.html#epoonlyvtab">vtab.html#epoonlyvtab</a> + <a href="vtab.html#xcreate">vtab.html#xcreate</a> +<li>sqlite3_create_module_v2 → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/module.html">c3ref/module.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_module">capi3ref.html#sqlite3_module</a> + <a href="changes.html#version_3_7_13">changes.html#version_3_7_13</a> + <a href="lang_createvtab.html">lang_createvtab.html</a> + <a href="releaselog/3_7_13.html">releaselog/3_7_13.html</a> + <a href="vtab.html#customvtab">vtab.html#customvtab</a> + <a href="vtab.html#epoonlyvtab">vtab.html#epoonlyvtab</a> + <a href="vtab.html#xcreate">vtab.html#xcreate</a> +<li>sqlite3_create_window_function → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="windowfunctions.html">windowfunctions.html</a> + <a href="windowfunctions.html#udfwinfunc">windowfunctions.html#udfwinfunc</a> +<li>sqlite3_data_count → <a href="c3ref/column_count.html">c3ref/column_count.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3.html">capi3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_column_count">capi3ref.html#sqlite3_column_count</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="changes.html#version_3_7_9">changes.html#version_3_7_9</a> + <a href="releaselog/3_7_9.html">releaselog/3_7_9.html</a> +<li>sqlite3_data_directory → <a href="c3ref/objlist.html">c3ref/objlist.html</a> + <a href="c3ref/win32_set_directory.html">c3ref/win32_set_directory.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_win32_set_directory">capi3ref.html#sqlite3_win32_set_directory</a> + <a href="pragma.html#pragma_data_store_directory">pragma.html#pragma_data_store_directory</a> +<li>sqlite3_database_file_object → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_32_0">changes.html#version_3_32_0</a> + <a href="releaselog/3_32_0.html">releaselog/3_32_0.html</a> + <a href="releaselog/3_32_1.html">releaselog/3_32_1.html</a> + <a href="releaselog/3_32_2.html">releaselog/3_32_2.html</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> +<li>sqlite3_db_cacheflush → <a href="c3ref/db_cacheflush.html">c3ref/db_cacheflush.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_db_cacheflush">capi3ref.html#sqlite3_db_cacheflush</a> + <a href="changes.html#version_3_10_0">changes.html#version_3_10_0</a> + <a href="releaselog/3_10_0.html">releaselog/3_10_0.html</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> +<li>sqlite3_db_config → <a href="appfunc.html#sec">appfunc.html#sec</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfiglookaside">c3ref/c_config_covering_index_scan.html#sqliteconfiglookaside</a> + <a href="c3ref/c_dbconfig_defensive.html">c3ref/c_dbconfig_defensive.html</a> + <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfiglookaside">c3ref/c_dbconfig_defensive.html#sqlitedbconfiglookaside</a> + <a href="c3ref/enable_load_extension.html">c3ref/enable_load_extension.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/load_extension.html">c3ref/load_extension.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_DBCONFIG_DEFENSIVE">capi3ref.html#SQLITE_DBCONFIG_DEFENSIVE</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_enable_load_extension">capi3ref.html#sqlite3_enable_load_extension</a> + <a href="capi3ref.html#sqlite3_load_extension">capi3ref.html#sqlite3_load_extension</a> + <a href="capi3ref.html#sqliteconfiglookaside">capi3ref.html#sqliteconfiglookaside</a> + <a href="capi3ref.html#sqlitedbconfiglookaside">capi3ref.html#sqlitedbconfiglookaside</a> + <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="changes.html#version_3_13_0">changes.html#version_3_13_0</a> + <a href="changes.html#version_3_16_0">changes.html#version_3_16_0</a> + <a href="changes.html#version_3_24_0">changes.html#version_3_24_0</a> + <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="changes.html#version_3_29_0">changes.html#version_3_29_0</a> + <a href="changes.html#version_3_30_0">changes.html#version_3_30_0</a> + <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="changes.html#version_3_42_0">changes.html#version_3_42_0</a> + <a href="changes.html#version_3_6_1">changes.html#version_3_6_1</a> + <a href="cintro.html">cintro.html</a> + <a href="compile.html#default_lookaside">compile.html#default_lookaside</a> + <a href="compile.html#enable_fts3_tokenizer">compile.html#enable_fts3_tokenizer</a> + <a href="compile.html#enable_qpsg">compile.html#enable_qpsg</a> + <a href="fts3.html#f3tknzr">fts3.html#f3tknzr</a> + <a href="lang_altertable.html#altertabrename">lang_altertable.html#altertabrename</a> + <a href="loadext.html">loadext.html</a> + <a href="malloc.html#lookaside">malloc.html#lookaside</a> + <a href="news.html">news.html</a> + <a href="pragma.html#pragma_legacy_alter_table">pragma.html#pragma_legacy_alter_table</a> + <a href="pragma.html#pragma_legacy_file_format">pragma.html#pragma_legacy_file_format</a> + <a href="pragma.html#pragma_trusted_schema">pragma.html#pragma_trusted_schema</a> + <a href="privatebranch.html">privatebranch.html</a> + <a href="queryplanner-ng.html#qpstab">queryplanner-ng.html#qpstab</a> + <a href="quirks.html#dblquote">quirks.html#dblquote</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> + <a href="releaselog/3_13_0.html">releaselog/3_13_0.html</a> + <a href="releaselog/3_16_0.html">releaselog/3_16_0.html</a> + <a href="releaselog/3_16_1.html">releaselog/3_16_1.html</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> + <a href="releaselog/3_24_0.html">releaselog/3_24_0.html</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> + <a href="releaselog/3_29_0.html">releaselog/3_29_0.html</a> + <a href="releaselog/3_30_0.html">releaselog/3_30_0.html</a> + <a href="releaselog/3_30_1.html">releaselog/3_30_1.html</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> + <a href="releaselog/3_42_0.html">releaselog/3_42_0.html</a> + <a href="releaselog/3_6_1.html">releaselog/3_6_1.html</a> + <a href="security.html#baddb">security.html#baddb</a> + <a href="tclsqlite.html#config">tclsqlite.html#config</a> + <a href="vtab.html#xshadowname">vtab.html#xshadowname</a> +<li>sqlite3_db_filename → <a href="c3ref/filename_database.html">c3ref/filename_database.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="c3ref/uri_boolean.html">c3ref/uri_boolean.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_filename_database">capi3ref.html#sqlite3_filename_database</a> + <a href="capi3ref.html#sqlite3_uri_boolean">capi3ref.html#sqlite3_uri_boolean</a> + <a href="changes.html#version_3_7_10">changes.html#version_3_7_10</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_7_10.html">releaselog/3_7_10.html</a> +<li>sqlite3_db_handle → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="unlock_notify.html">unlock_notify.html</a> +<li>sqlite3_db_mutex → <a href="c3ref/errcode.html">c3ref/errcode.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_errcode">capi3ref.html#sqlite3_errcode</a> + <a href="changes.html#version_3_6_5">changes.html#version_3_6_5</a> + <a href="releaselog/3_6_5.html">releaselog/3_6_5.html</a> +<li>sqlite3_db_name → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="changes.html#version_3_39_0">changes.html#version_3_39_0</a> + <a href="releaselog/3_39_0.html">releaselog/3_39_0.html</a> + <a href="releaselog/3_39_1.html">releaselog/3_39_1.html</a> + <a href="releaselog/3_39_2.html">releaselog/3_39_2.html</a> + <a href="releaselog/3_39_3.html">releaselog/3_39_3.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> +<li>sqlite3_db_readonly → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/open.html">c3ref/open.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_open">capi3ref.html#sqlite3_open</a> + <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="changes.html#version_3_34_0">changes.html#version_3_34_0</a> + <a href="changes.html#version_3_7_11">changes.html#version_3_7_11</a> + <a href="changes.html#version_3_8_5">changes.html#version_3_8_5</a> + <a href="pragma.html#pragma_query_only">pragma.html#pragma_query_only</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> + <a href="releaselog/3_34_0.html">releaselog/3_34_0.html</a> + <a href="releaselog/3_34_1.html">releaselog/3_34_1.html</a> + <a href="releaselog/3_7_11.html">releaselog/3_7_11.html</a> + <a href="releaselog/3_8_5.html">releaselog/3_8_5.html</a> +<li>sqlite3_db_release_memory → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/release_memory.html">c3ref/release_memory.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_release_memory">capi3ref.html#sqlite3_release_memory</a> + <a href="changes.html#version_3_7_10">changes.html#version_3_7_10</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_shrink_memory">pragma.html#pragma_shrink_memory</a> + <a href="releaselog/3_7_10.html">releaselog/3_7_10.html</a> +<li>sqlite3_db_status → <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfiglookaside">c3ref/c_dbconfig_defensive.html#sqlitedbconfiglookaside</a> + <a href="c3ref/c_dbstatus_options.html">c3ref/c_dbstatus_options.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="c3ref/status.html">c3ref/status.html</a> + <a href="c3ref/stmt_status.html">c3ref/stmt_status.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_DBSTATUS options">capi3ref.html#SQLITE_DBSTATUS options</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_status">capi3ref.html#sqlite3_status</a> + <a href="capi3ref.html#sqlite3_stmt_status">capi3ref.html#sqlite3_stmt_status</a> + <a href="capi3ref.html#sqlitedbconfiglookaside">capi3ref.html#sqlitedbconfiglookaside</a> + <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="changes.html#version_3_6_1">changes.html#version_3_6_1</a> + <a href="changes.html#version_3_7_0">changes.html#version_3_7_0</a> + <a href="changes.html#version_3_7_1">changes.html#version_3_7_1</a> + <a href="changes.html#version_3_7_12">changes.html#version_3_7_12</a> + <a href="changes.html#version_3_7_5">changes.html#version_3_7_5</a> + <a href="changes.html#version_3_7_9">changes.html#version_3_7_9</a> + <a href="changes.html#version_3_8_0">changes.html#version_3_8_0</a> + <a href="malloc.html#memstatus">malloc.html#memstatus</a> + <a href="memstat.html">memstat.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_defer_foreign_keys">pragma.html#pragma_defer_foreign_keys</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> + <a href="releaselog/3_6_1.html">releaselog/3_6_1.html</a> + <a href="releaselog/3_7_0.html">releaselog/3_7_0.html</a> + <a href="releaselog/3_7_1.html">releaselog/3_7_1.html</a> + <a href="releaselog/3_7_12.html">releaselog/3_7_12.html</a> + <a href="releaselog/3_7_5.html">releaselog/3_7_5.html</a> + <a href="releaselog/3_7_9.html">releaselog/3_7_9.html</a> + <a href="releaselog/3_8_0.html">releaselog/3_8_0.html</a> + <a href="releaselog/3_8_0_1.html">releaselog/3_8_0_1.html</a> + <a href="releaselog/3_8_0_2.html">releaselog/3_8_0_2.html</a> + <a href="vtablist.html">vtablist.html</a> +<li>sqlite3_declare_vtab → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/vtab_collation.html">c3ref/vtab_collation.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_vtab_collation">capi3ref.html#sqlite3_vtab_collation</a> + <a href="csv.html">csv.html</a> + <a href="fts3.html#simple_fts_queries">fts3.html#simple_fts_queries</a> + <a href="vtab.html#hiddencol">vtab.html#hiddencol</a> + <a href="vtab.html#worid">vtab.html#worid</a> + <a href="vtab.html#xbestindex">vtab.html#xbestindex</a> + <a href="vtab.html#xconnect">vtab.html#xconnect</a> + <a href="vtab.html#xcreate">vtab.html#xcreate</a> + <a href="vtab.html#xupdate">vtab.html#xupdate</a> +<li>sqlite3_deserialize → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigmemdbmaxsize">c3ref/c_config_covering_index_scan.html#sqliteconfigmemdbmaxsize</a> + <a href="c3ref/c_deserialize_freeonclose.html">c3ref/c_deserialize_freeonclose.html</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlsizelimit">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlsizelimit</a> + <a href="c3ref/c_serialize_nocopy.html">c3ref/c_serialize_nocopy.html</a> + <a href="c3ref/db_name.html">c3ref/db_name.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/serialize.html">c3ref/serialize.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_DESERIALIZE_FREEONCLOSE">capi3ref.html#SQLITE_DESERIALIZE_FREEONCLOSE</a> + <a href="capi3ref.html#SQLITE_SERIALIZE_NOCOPY">capi3ref.html#SQLITE_SERIALIZE_NOCOPY</a> + <a href="capi3ref.html#sqlite3_db_name">capi3ref.html#sqlite3_db_name</a> + <a href="capi3ref.html#sqlite3_serialize">capi3ref.html#sqlite3_serialize</a> + <a href="capi3ref.html#sqliteconfigmemdbmaxsize">capi3ref.html#sqliteconfigmemdbmaxsize</a> + <a href="capi3ref.html#sqlitefcntlsizelimit">capi3ref.html#sqlitefcntlsizelimit</a> + <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="changes.html#version_3_26_0">changes.html#version_3_26_0</a> + <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="changes.html#version_3_36_0">changes.html#version_3_36_0</a> + <a href="changes.html#version_3_37_0">changes.html#version_3_37_0</a> + <a href="changes.html#version_3_41_0">changes.html#version_3_41_0</a> + <a href="cli.html#dotopen">cli.html#dotopen</a> + <a href="compile.html#enable_deserialize">compile.html#enable_deserialize</a> + <a href="compile.html#memdb_default_maxsize">compile.html#memdb_default_maxsize</a> + <a href="compile.html#omit_deserialize">compile.html#omit_deserialize</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> + <a href="releaselog/3_26_0.html">releaselog/3_26_0.html</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> + <a href="releaselog/3_36_0.html">releaselog/3_36_0.html</a> + <a href="releaselog/3_37_0.html">releaselog/3_37_0.html</a> + <a href="releaselog/3_37_1.html">releaselog/3_37_1.html</a> + <a href="releaselog/3_37_2.html">releaselog/3_37_2.html</a> + <a href="releaselog/3_41_0.html">releaselog/3_41_0.html</a> + <a href="releaselog/3_41_1.html">releaselog/3_41_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> +<li>sqlite3_drop_modules → <a href="c3ref/create_module.html">c3ref/create_module.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_create_module">capi3ref.html#sqlite3_create_module</a> + <a href="changes.html#version_3_30_0">changes.html#version_3_30_0</a> + <a href="releaselog/3_30_0.html">releaselog/3_30_0.html</a> + <a href="releaselog/3_30_1.html">releaselog/3_30_1.html</a> +<li>sqlite3_enable_load_extension → <a href="34to35.html">34to35.html</a> + <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfigenableloadextension">c3ref/c_dbconfig_defensive.html#sqlitedbconfigenableloadextension</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/load_extension.html">c3ref/load_extension.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_load_extension">capi3ref.html#sqlite3_load_extension</a> + <a href="capi3ref.html#sqlitedbconfigenableloadextension">capi3ref.html#sqlitedbconfigenableloadextension</a> + <a href="compile.html#omit_load_extension">compile.html#omit_load_extension</a> + <a href="lang_corefunc.html#load_extension">lang_corefunc.html#load_extension</a> + <a href="loadext.html">loadext.html</a> + <a href="tclsqlite.html#enable_load_extension">tclsqlite.html#enable_load_extension</a> +<li>sqlite3_enable_shared_cache → <a href="34to35.html">34to35.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/open.html">c3ref/open.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_open">capi3ref.html#sqlite3_open</a> + <a href="changes.html#version_3_5_0">changes.html#version_3_5_0</a> + <a href="compile.html#omit_shared_cache">compile.html#omit_shared_cache</a> + <a href="pragma.html#pragma_read_uncommitted">pragma.html#pragma_read_uncommitted</a> + <a href="releaselog/3_5_0.html">releaselog/3_5_0.html</a> + <a href="sharedcache.html#dontuse">sharedcache.html#dontuse</a> +<li>sqlite3_errcode → <a href="backup.html">backup.html</a> + <a href="c3ref/backup_finish.html#sqlite3backupinit">c3ref/backup_finish.html#sqlite3backupinit</a> + <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> + <a href="c3ref/blob_write.html">c3ref/blob_write.html</a> + <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/db_cacheflush.html">c3ref/db_cacheflush.html</a> + <a href="c3ref/file_control.html">c3ref/file_control.html</a> + <a href="c3ref/free_table.html">c3ref/free_table.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> + <a href="c3ref/wal_checkpoint_v2.html">c3ref/wal_checkpoint_v2.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_blob_open">capi3ref.html#sqlite3_blob_open</a> + <a href="capi3ref.html#sqlite3_blob_write">capi3ref.html#sqlite3_blob_write</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_db_cacheflush">capi3ref.html#sqlite3_db_cacheflush</a> + <a href="capi3ref.html#sqlite3_file_control">capi3ref.html#sqlite3_file_control</a> + <a href="capi3ref.html#sqlite3_free_table">capi3ref.html#sqlite3_free_table</a> + <a href="capi3ref.html#sqlite3_value_blob">capi3ref.html#sqlite3_value_blob</a> + <a href="capi3ref.html#sqlite3_wal_checkpoint_v2">capi3ref.html#sqlite3_wal_checkpoint_v2</a> + <a href="capi3ref.html#sqlite3backupinit">capi3ref.html#sqlite3backupinit</a> +<li>sqlite3_errmsg → <a href="backup.html">backup.html</a> + <a href="c3ref/backup_finish.html#sqlite3backupinit">c3ref/backup_finish.html#sqlite3backupinit</a> + <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> + <a href="c3ref/blob_write.html">c3ref/blob_write.html</a> + <a href="c3ref/db_cacheflush.html">c3ref/db_cacheflush.html</a> + <a href="c3ref/file_control.html">c3ref/file_control.html</a> + <a href="c3ref/free_table.html">c3ref/free_table.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/open.html">c3ref/open.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="c3ref/step.html">c3ref/step.html</a> + <a href="c3ref/wal_checkpoint_v2.html">c3ref/wal_checkpoint_v2.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_blob_open">capi3ref.html#sqlite3_blob_open</a> + <a href="capi3ref.html#sqlite3_blob_write">capi3ref.html#sqlite3_blob_write</a> + <a href="capi3ref.html#sqlite3_db_cacheflush">capi3ref.html#sqlite3_db_cacheflush</a> + <a href="capi3ref.html#sqlite3_file_control">capi3ref.html#sqlite3_file_control</a> + <a href="capi3ref.html#sqlite3_free_table">capi3ref.html#sqlite3_free_table</a> + <a href="capi3ref.html#sqlite3_open">capi3ref.html#sqlite3_open</a> + <a href="capi3ref.html#sqlite3_step">capi3ref.html#sqlite3_step</a> + <a href="capi3ref.html#sqlite3_wal_checkpoint_v2">capi3ref.html#sqlite3_wal_checkpoint_v2</a> + <a href="capi3ref.html#sqlite3backupinit">capi3ref.html#sqlite3backupinit</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="invalidutf.html">invalidutf.html</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> + <a href="rescode.html#constraint">rescode.html#constraint</a> +<li>sqlite3_errmsg16 → <a href="c3ref/backup_finish.html#sqlite3backupinit">c3ref/backup_finish.html#sqlite3backupinit</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/open.html">c3ref/open.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_open">capi3ref.html#sqlite3_open</a> + <a href="capi3ref.html#sqlite3backupinit">capi3ref.html#sqlite3backupinit</a> + <a href="rescode.html#constraint">rescode.html#constraint</a> +<li>sqlite3_error_offset → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="changes.html#version_3_38_0">changes.html#version_3_38_0</a> + <a href="changes.html#version_3_41_2">changes.html#version_3_41_2</a> + <a href="releaselog/3_38_0.html">releaselog/3_38_0.html</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> +<li>sqlite3_errstr → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="changes.html#version_3_7_15">changes.html#version_3_7_15</a> + <a href="releaselog/3_7_15.html">releaselog/3_7_15.html</a> +<li>sqlite3_exec → <a href="backup.html">backup.html</a> + <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfigresetdatabase">c3ref/c_dbconfig_defensive.html#sqlitedbconfigresetdatabase</a> + <a href="c3ref/free_table.html">c3ref/free_table.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="c3ref/stmt_readonly.html">c3ref/stmt_readonly.html</a> + <a href="capi3.html">capi3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_free_table">capi3ref.html#sqlite3_free_table</a> + <a href="capi3ref.html#sqlite3_stmt_readonly">capi3ref.html#sqlite3_stmt_readonly</a> + <a href="capi3ref.html#sqlitedbconfigresetdatabase">capi3ref.html#sqlitedbconfigresetdatabase</a> + <a href="cintro.html">cintro.html</a> + <a href="cli.html#dotrules">cli.html#dotrules</a> + <a href="faq.html#q15">faq.html#q15</a> + <a href="lang.html">lang.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_empty_result_callbacks">pragma.html#pragma_empty_result_callbacks</a> + <a href="quickstart.html">quickstart.html</a> + <a href="rescode.html#abort">rescode.html#abort</a> +<li>sqlite3_expanded_sql → <a href="c3ref/c_trace.html#sqlitetracestmt">c3ref/c_trace.html#sqlitetracestmt</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="capi3ref.html#sqlitetracestmt">capi3ref.html#sqlitetracestmt</a> + <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> +<li>sqlite3_expired → <a href="compile.html#omit_deprecated">compile.html#omit_deprecated</a> +<li>sqlite3_extended_errcode → <a href="c3ref/c_abort_rollback.html">c3ref/c_abort_rollback.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_ABORT_ROLLBACK">capi3ref.html#SQLITE_ABORT_ROLLBACK</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="changes.html#version_3_6_5">changes.html#version_3_6_5</a> + <a href="releaselog/3_6_5.html">releaselog/3_6_5.html</a> + <a href="rescode.html#pve">rescode.html#pve</a> +<li>sqlite3_extended_result_codes → <a href="c3ref/c_abort_rollback.html">c3ref/c_abort_rollback.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/open.html#openexrescode">c3ref/open.html#openexrescode</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_ABORT_ROLLBACK">capi3ref.html#SQLITE_ABORT_ROLLBACK</a> + <a href="capi3ref.html#openexrescode">capi3ref.html#openexrescode</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="rescode.html#pve">rescode.html#pve</a> +<li>sqlite3_file → <a href="34to35.html">34to35.html</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlbeginatomicwrite">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlbeginatomicwrite</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlfilepointer">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlfilepointer</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntljournalpointer">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntljournalpointer</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpragma">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpragma</a> + <a href="c3ref/database_file_object.html">c3ref/database_file_object.html</a> + <a href="c3ref/file.html">c3ref/file.html</a> + <a href="c3ref/file_control.html">c3ref/file_control.html</a> + <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> + <a href="c3ref/objlist.html">c3ref/objlist.html</a> + <a href="c3ref/vfs.html">c3ref/vfs.html</a> + <a href="c3ref/vfs.html#sqlite3vfsxopen">c3ref/vfs.html#sqlite3vfsxopen</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_database_file_object">capi3ref.html#sqlite3_database_file_object</a> + <a href="capi3ref.html#sqlite3_file">capi3ref.html#sqlite3_file</a> + <a href="capi3ref.html#sqlite3_file_control">capi3ref.html#sqlite3_file_control</a> + <a href="capi3ref.html#sqlite3_io_methods">capi3ref.html#sqlite3_io_methods</a> + <a href="capi3ref.html#sqlite3_vfs">capi3ref.html#sqlite3_vfs</a> + <a href="capi3ref.html#sqlite3vfsxopen">capi3ref.html#sqlite3vfsxopen</a> + <a href="capi3ref.html#sqlitefcntlbeginatomicwrite">capi3ref.html#sqlitefcntlbeginatomicwrite</a> + <a href="capi3ref.html#sqlitefcntlfilepointer">capi3ref.html#sqlitefcntlfilepointer</a> + <a href="capi3ref.html#sqlitefcntljournalpointer">capi3ref.html#sqlitefcntljournalpointer</a> + <a href="capi3ref.html#sqlitefcntlpragma">capi3ref.html#sqlitefcntlpragma</a> + <a href="vfs.html#shim">vfs.html#shim</a> +<li>sqlite3_file_control → <a href="34to35.html">34to35.html</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigmemdbmaxsize">c3ref/c_config_covering_index_scan.html#sqliteconfigmemdbmaxsize</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html">c3ref/c_fcntl_begin_atomic_write.html</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlchunksize">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlchunksize</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlcommitphasetwo">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlcommitphasetwo</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpersistwal">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpersistwal</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpowersafeoverwrite">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpowersafeoverwrite</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlsync">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlsync</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlvfsname">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlvfsname</a> + <a href="c3ref/file_control.html">c3ref/file_control.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_FCNTL_BEGIN_ATOMIC_WRITE">capi3ref.html#SQLITE_FCNTL_BEGIN_ATOMIC_WRITE</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_file_control">capi3ref.html#sqlite3_file_control</a> + <a href="capi3ref.html#sqlite3_io_methods">capi3ref.html#sqlite3_io_methods</a> + <a href="capi3ref.html#sqliteconfigmemdbmaxsize">capi3ref.html#sqliteconfigmemdbmaxsize</a> + <a href="capi3ref.html#sqlitefcntlchunksize">capi3ref.html#sqlitefcntlchunksize</a> + <a href="capi3ref.html#sqlitefcntlcommitphasetwo">capi3ref.html#sqlitefcntlcommitphasetwo</a> + <a href="capi3ref.html#sqlitefcntlpersistwal">capi3ref.html#sqlitefcntlpersistwal</a> + <a href="capi3ref.html#sqlitefcntlpowersafeoverwrite">capi3ref.html#sqlitefcntlpowersafeoverwrite</a> + <a href="capi3ref.html#sqlitefcntlsync">capi3ref.html#sqlitefcntlsync</a> + <a href="capi3ref.html#sqlitefcntlvfsname">capi3ref.html#sqlitefcntlvfsname</a> + <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="changes.html#version_3_41_0">changes.html#version_3_41_0</a> + <a href="changes.html#version_3_7_1">changes.html#version_3_7_1</a> + <a href="changes.html#version_3_7_4">changes.html#version_3_7_4</a> + <a href="changes.html#version_3_7_5">changes.html#version_3_7_5</a> + <a href="compile.html#enable_batch_atomic_write">compile.html#enable_batch_atomic_write</a> + <a href="compile.html#memdb_default_maxsize">compile.html#memdb_default_maxsize</a> + <a href="memstat.html">memstat.html</a> + <a href="pragma.html">pragma.html</a> + <a href="psow.html#tornpage">psow.html#tornpage</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> + <a href="releaselog/3_41_0.html">releaselog/3_41_0.html</a> + <a href="releaselog/3_41_1.html">releaselog/3_41_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> + <a href="releaselog/3_7_1.html">releaselog/3_7_1.html</a> + <a href="releaselog/3_7_4.html">releaselog/3_7_4.html</a> + <a href="releaselog/3_7_5.html">releaselog/3_7_5.html</a> + <a href="rescode.html#notfound">rescode.html#notfound</a> + <a href="walformat.html#locks">walformat.html#locks</a> + <a href="walformat.html#shm">walformat.html#shm</a> +<li>sqlite3_filename → <a href="c3ref/filename.html">c3ref/filename.html</a> + <a href="c3ref/objlist.html">c3ref/objlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_filename">capi3ref.html#sqlite3_filename</a> + <a href="changes.html#version_3_40_0">changes.html#version_3_40_0</a> + <a href="releaselog/3_40_0.html">releaselog/3_40_0.html</a> + <a href="releaselog/3_40_1.html">releaselog/3_40_1.html</a> +<li>sqlite3_filename_database → <a href="c3ref/create_filename.html">c3ref/create_filename.html</a> + <a href="c3ref/db_filename.html">c3ref/db_filename.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_create_filename">capi3ref.html#sqlite3_create_filename</a> + <a href="capi3ref.html#sqlite3_db_filename">capi3ref.html#sqlite3_db_filename</a> + <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> +<li>sqlite3_filename_journal → <a href="c3ref/create_filename.html">c3ref/create_filename.html</a> + <a href="c3ref/db_filename.html">c3ref/db_filename.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_create_filename">capi3ref.html#sqlite3_create_filename</a> + <a href="capi3ref.html#sqlite3_db_filename">capi3ref.html#sqlite3_db_filename</a> + <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> +<li>sqlite3_filename_wal → <a href="c3ref/create_filename.html">c3ref/create_filename.html</a> + <a href="c3ref/db_filename.html">c3ref/db_filename.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_create_filename">capi3ref.html#sqlite3_create_filename</a> + <a href="capi3ref.html#sqlite3_db_filename">capi3ref.html#sqlite3_db_filename</a> + <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> +<li>sqlite3_finalize → <a href="c3ref/c_prepare_normalize.html#sqlitepreparepersistent">c3ref/c_prepare_normalize.html#sqlitepreparepersistent</a> + <a href="c3ref/close.html">c3ref/close.html</a> + <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/column_database_name.html">c3ref/column_database_name.html</a> + <a href="c3ref/column_name.html">c3ref/column_name.html</a> + <a href="c3ref/exec.html">c3ref/exec.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/get_auxdata.html">c3ref/get_auxdata.html</a> + <a href="c3ref/prepare.html">c3ref/prepare.html</a> + <a href="c3ref/step.html">c3ref/step.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_close">capi3ref.html#sqlite3_close</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_column_database_name">capi3ref.html#sqlite3_column_database_name</a> + <a href="capi3ref.html#sqlite3_column_name">capi3ref.html#sqlite3_column_name</a> + <a href="capi3ref.html#sqlite3_exec">capi3ref.html#sqlite3_exec</a> + <a href="capi3ref.html#sqlite3_get_auxdata">capi3ref.html#sqlite3_get_auxdata</a> + <a href="capi3ref.html#sqlite3_prepare">capi3ref.html#sqlite3_prepare</a> + <a href="capi3ref.html#sqlite3_step">capi3ref.html#sqlite3_step</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="capi3ref.html#sqlitepreparepersistent">capi3ref.html#sqlitepreparepersistent</a> + <a href="changes.html#version_3_7_6">changes.html#version_3_7_6</a> + <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="cintro.html">cintro.html</a> + <a href="lang_transaction.html#immediate">lang_transaction.html#immediate</a> + <a href="malloc.html">malloc.html</a> + <a href="opcode.html">opcode.html</a> + <a href="pragma.html">pragma.html</a> + <a href="releaselog/3_7_6.html">releaselog/3_7_6.html</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> + <a href="rescode.html#misuse">rescode.html#misuse</a> + <a href="stmt.html">stmt.html</a> +<li>sqlite3_free → <a href="34to35.html">34to35.html</a> + <a href="c3ref/auto_extension.html">c3ref/auto_extension.html</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntltempfilename">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntltempfilename</a> + <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/data_directory.html">c3ref/data_directory.html</a> + <a href="c3ref/deserialize.html">c3ref/deserialize.html</a> + <a href="c3ref/exec.html">c3ref/exec.html</a> + <a href="c3ref/expanded_sql.html">c3ref/expanded_sql.html</a> + <a href="c3ref/free.html">c3ref/free.html</a> + <a href="c3ref/free_table.html">c3ref/free_table.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/index_info.html">c3ref/index_info.html</a> + <a href="c3ref/load_extension.html">c3ref/load_extension.html</a> + <a href="c3ref/memory_highwater.html">c3ref/memory_highwater.html</a> + <a href="c3ref/mprintf.html">c3ref/mprintf.html</a> + <a href="c3ref/str_finish.html">c3ref/str_finish.html</a> + <a href="c3ref/temp_directory.html">c3ref/temp_directory.html</a> + <a href="c3ref/vtab.html">c3ref/vtab.html</a> + <a href="c3ref/win32_set_directory.html">c3ref/win32_set_directory.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_auto_extension">capi3ref.html#sqlite3_auto_extension</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_data_directory">capi3ref.html#sqlite3_data_directory</a> + <a href="capi3ref.html#sqlite3_deserialize">capi3ref.html#sqlite3_deserialize</a> + <a href="capi3ref.html#sqlite3_exec">capi3ref.html#sqlite3_exec</a> + <a href="capi3ref.html#sqlite3_expanded_sql">capi3ref.html#sqlite3_expanded_sql</a> + <a href="capi3ref.html#sqlite3_free">capi3ref.html#sqlite3_free</a> + <a href="capi3ref.html#sqlite3_free_table">capi3ref.html#sqlite3_free_table</a> + <a href="capi3ref.html#sqlite3_index_info">capi3ref.html#sqlite3_index_info</a> + <a href="capi3ref.html#sqlite3_load_extension">capi3ref.html#sqlite3_load_extension</a> + <a href="capi3ref.html#sqlite3_memory_highwater">capi3ref.html#sqlite3_memory_highwater</a> + <a href="capi3ref.html#sqlite3_mprintf">capi3ref.html#sqlite3_mprintf</a> + <a href="capi3ref.html#sqlite3_str_finish">capi3ref.html#sqlite3_str_finish</a> + <a href="capi3ref.html#sqlite3_temp_directory">capi3ref.html#sqlite3_temp_directory</a> + <a href="capi3ref.html#sqlite3_vtab">capi3ref.html#sqlite3_vtab</a> + <a href="capi3ref.html#sqlite3_win32_set_directory">capi3ref.html#sqlite3_win32_set_directory</a> + <a href="capi3ref.html#sqlitefcntltempfilename">capi3ref.html#sqlitefcntltempfilename</a> + <a href="custombuild.html">custombuild.html</a> + <a href="malloc.html">malloc.html</a> + <a href="printf.html#percentz">printf.html#percentz</a> + <a href="session.html#sqlite3session_changeset">session.html#sqlite3session_changeset</a> + <a href="session/sqlite3session_changeset.html">session/sqlite3session_changeset.html</a> + <a href="vtab.html#colUsed">vtab.html#colUsed</a> + <a href="vtab.html#epoonlyvtab">vtab.html#epoonlyvtab</a> + <a href="vtab.html#xconnect">vtab.html#xconnect</a> + <a href="vtab.html#xcreate">vtab.html#xcreate</a> + <a href="vtab.html#xintegrity">vtab.html#xintegrity</a> +<li>sqlite3_free_filename → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_32_0">changes.html#version_3_32_0</a> + <a href="releaselog/3_32_0.html">releaselog/3_32_0.html</a> + <a href="releaselog/3_32_1.html">releaselog/3_32_1.html</a> + <a href="releaselog/3_32_2.html">releaselog/3_32_2.html</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> +<li>sqlite3_free_table → <a href="c3ref/free_table.html">c3ref/free_table.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_free_table">capi3ref.html#sqlite3_free_table</a> + <a href="compile.html#omit_get_table">compile.html#omit_get_table</a> +<li>sqlite3_get_autocommit → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="lang_transaction.html#immediate">lang_transaction.html#immediate</a> +<li>sqlite3_get_auxdata → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/context.html">c3ref/context.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/get_clientdata.html">c3ref/get_clientdata.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_context">capi3ref.html#sqlite3_context</a> + <a href="capi3ref.html#sqlite3_get_clientdata">capi3ref.html#sqlite3_get_clientdata</a> +<li>sqlite3_get_clientdata → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/get_auxdata.html">c3ref/get_auxdata.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_get_auxdata">capi3ref.html#sqlite3_get_auxdata</a> + <a href="changes.html#version_3_44_0">changes.html#version_3_44_0</a> + <a href="releaselog/3_44_0.html">releaselog/3_44_0.html</a> + <a href="releaselog/3_44_1.html">releaselog/3_44_1.html</a> + <a href="releaselog/3_44_2.html">releaselog/3_44_2.html</a> +<li>sqlite3_get_table → <a href="arch.html">arch.html</a> + <a href="c3ref/free_table.html">c3ref/free_table.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_free_table">capi3ref.html#sqlite3_free_table</a> + <a href="cintro.html">cintro.html</a> + <a href="compile.html#omit_get_table">compile.html#omit_get_table</a> + <a href="lang.html">lang.html</a> +<li>sqlite3_global_recover → <a href="compile.html#omit_deprecated">compile.html#omit_deprecated</a> +<li>sqlite3_hard_heap_limit64 → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigmemstatus">c3ref/c_config_covering_index_scan.html#sqliteconfigmemstatus</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqliteconfigmemstatus">capi3ref.html#sqliteconfigmemstatus</a> + <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="pragma.html#pragma_hard_heap_limit">pragma.html#pragma_hard_heap_limit</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> + <a href="security.html">security.html</a> +<li>sqlite3_index_info → <a href="c3ref/c_index_constraint_eq.html">c3ref/c_index_constraint_eq.html</a> + <a href="c3ref/c_index_scan_unique.html">c3ref/c_index_scan_unique.html</a> + <a href="c3ref/objlist.html">c3ref/objlist.html</a> + <a href="c3ref/vtab_collation.html">c3ref/vtab_collation.html</a> + <a href="c3ref/vtab_distinct.html">c3ref/vtab_distinct.html</a> + <a href="c3ref/vtab_in.html">c3ref/vtab_in.html</a> + <a href="c3ref/vtab_rhs_value.html">c3ref/vtab_rhs_value.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_INDEX_CONSTRAINT_EQ">capi3ref.html#SQLITE_INDEX_CONSTRAINT_EQ</a> + <a href="capi3ref.html#SQLITE_INDEX_SCAN_UNIQUE">capi3ref.html#SQLITE_INDEX_SCAN_UNIQUE</a> + <a href="capi3ref.html#sqlite3_vtab_collation">capi3ref.html#sqlite3_vtab_collation</a> + <a href="capi3ref.html#sqlite3_vtab_distinct">capi3ref.html#sqlite3_vtab_distinct</a> + <a href="capi3ref.html#sqlite3_vtab_in">capi3ref.html#sqlite3_vtab_in</a> + <a href="capi3ref.html#sqlite3_vtab_rhs_value">capi3ref.html#sqlite3_vtab_rhs_value</a> + <a href="changes.html#version_3_10_0">changes.html#version_3_10_0</a> + <a href="changes.html#version_3_8_2">changes.html#version_3_8_2</a> + <a href="releaselog/3_10_0.html">releaselog/3_10_0.html</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> + <a href="releaselog/3_8_2.html">releaselog/3_8_2.html</a> + <a href="vtab.html#colUsed">vtab.html#colUsed</a> + <a href="vtab.html#epoonlyvtab">vtab.html#epoonlyvtab</a> + <a href="vtab.html#xbestindex">vtab.html#xbestindex</a> + <a href="vtab.html#xfilter">vtab.html#xfilter</a> + <a href="vtab.html#xfindfunction">vtab.html#xfindfunction</a> +<li>sqlite3_initialize → <a href="35to36.html">35to36.html</a> + <a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> + <a href="c3ref/complete.html">c3ref/complete.html</a> + <a href="c3ref/config.html">c3ref/config.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/mutex_methods.html">c3ref/mutex_methods.html</a> + <a href="c3ref/pcache_methods2.html#thexinitpagecachemethod">c3ref/pcache_methods2.html#thexinitpagecachemethod</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_CONFIG_COVERING_INDEX_SCAN">capi3ref.html#SQLITE_CONFIG_COVERING_INDEX_SCAN</a> + <a href="capi3ref.html#sqlite3_complete">capi3ref.html#sqlite3_complete</a> + <a href="capi3ref.html#sqlite3_config">capi3ref.html#sqlite3_config</a> + <a href="capi3ref.html#sqlite3_mutex_methods">capi3ref.html#sqlite3_mutex_methods</a> + <a href="capi3ref.html#thexinitpagecachemethod">capi3ref.html#thexinitpagecachemethod</a> + <a href="changes.html#version_3_42_0">changes.html#version_3_42_0</a> + <a href="changes.html#version_3_6_1">changes.html#version_3_6_1</a> + <a href="changes.html#version_3_9_0">changes.html#version_3_9_0</a> + <a href="compile.html#omit_autoinit">compile.html#omit_autoinit</a> + <a href="compile.html#rcmd">compile.html#rcmd</a> + <a href="custombuild.html">custombuild.html</a> + <a href="loadext.html#statext">loadext.html#statext</a> + <a href="releaselog/3_42_0.html">releaselog/3_42_0.html</a> + <a href="releaselog/3_6_0.html">releaselog/3_6_0.html</a> + <a href="releaselog/3_9_0.html">releaselog/3_9_0.html</a> + <a href="releaselog/3_9_1.html">releaselog/3_9_1.html</a> + <a href="releaselog/3_9_2.html">releaselog/3_9_2.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> +<li>sqlite3_int64 → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigmemdbmaxsize">c3ref/c_config_covering_index_scan.html#sqliteconfigmemdbmaxsize</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlsizelimit">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlsizelimit</a> + <a href="c3ref/c_scanstat_est.html#sqlitescanstatnloop">c3ref/c_scanstat_est.html#sqlitescanstatnloop</a> + <a href="c3ref/c_scanstat_est.html#sqlitescanstatnvisit">c3ref/c_scanstat_est.html#sqlitescanstatnvisit</a> + <a href="c3ref/objlist.html">c3ref/objlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqliteconfigmemdbmaxsize">capi3ref.html#sqliteconfigmemdbmaxsize</a> + <a href="capi3ref.html#sqlitefcntlsizelimit">capi3ref.html#sqlitefcntlsizelimit</a> + <a href="capi3ref.html#sqlitescanstatnloop">capi3ref.html#sqlitescanstatnloop</a> + <a href="capi3ref.html#sqlitescanstatnvisit">capi3ref.html#sqlitescanstatnvisit</a> + <a href="windowfunctions.html#udfwinfunc">windowfunctions.html#udfwinfunc</a> +<li>sqlite3_interrupt → <a href="arch.html">arch.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="changes.html#version_3_16_0">changes.html#version_3_16_0</a> + <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="changes.html#version_3_41_0">changes.html#version_3_41_0</a> + <a href="pragma.html#pragma_optimize">pragma.html#pragma_optimize</a> + <a href="releaselog/3_16_0.html">releaselog/3_16_0.html</a> + <a href="releaselog/3_16_1.html">releaselog/3_16_1.html</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> + <a href="releaselog/3_41_0.html">releaselog/3_41_0.html</a> + <a href="releaselog/3_41_1.html">releaselog/3_41_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> + <a href="rescode.html#interrupt">rescode.html#interrupt</a> + <a href="security.html">security.html</a> + <a href="tclsqlite.html#interrupt">tclsqlite.html#interrupt</a> +<li>sqlite3_io_methods → <a href="34to35.html">34to35.html</a> + <a href="35to36.html">35to36.html</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html">c3ref/c_fcntl_begin_atomic_write.html</a> + <a href="c3ref/c_iocap_atomic.html">c3ref/c_iocap_atomic.html</a> + <a href="c3ref/c_lock_exclusive.html">c3ref/c_lock_exclusive.html</a> + <a href="c3ref/c_shm_exclusive.html">c3ref/c_shm_exclusive.html</a> + <a href="c3ref/c_shm_nlock.html">c3ref/c_shm_nlock.html</a> + <a href="c3ref/c_sync_dataonly.html">c3ref/c_sync_dataonly.html</a> + <a href="c3ref/file.html">c3ref/file.html</a> + <a href="c3ref/file_control.html">c3ref/file_control.html</a> + <a href="c3ref/objlist.html">c3ref/objlist.html</a> + <a href="c3ref/vfs.html#sqlite3vfsxopen">c3ref/vfs.html#sqlite3vfsxopen</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_FCNTL_BEGIN_ATOMIC_WRITE">capi3ref.html#SQLITE_FCNTL_BEGIN_ATOMIC_WRITE</a> + <a href="capi3ref.html#SQLITE_IOCAP_ATOMIC">capi3ref.html#SQLITE_IOCAP_ATOMIC</a> + <a href="capi3ref.html#SQLITE_LOCK_EXCLUSIVE">capi3ref.html#SQLITE_LOCK_EXCLUSIVE</a> + <a href="capi3ref.html#SQLITE_SHM_EXCLUSIVE">capi3ref.html#SQLITE_SHM_EXCLUSIVE</a> + <a href="capi3ref.html#SQLITE_SHM_NLOCK">capi3ref.html#SQLITE_SHM_NLOCK</a> + <a href="capi3ref.html#SQLITE_SYNC_DATAONLY">capi3ref.html#SQLITE_SYNC_DATAONLY</a> + <a href="capi3ref.html#sqlite3_file">capi3ref.html#sqlite3_file</a> + <a href="capi3ref.html#sqlite3_file_control">capi3ref.html#sqlite3_file_control</a> + <a href="capi3ref.html#sqlite3vfsxopen">capi3ref.html#sqlite3vfsxopen</a> + <a href="compile.html#enable_atomic_write">compile.html#enable_atomic_write</a> + <a href="fileformat2.html#walcksm">fileformat2.html#walcksm</a> + <a href="mmap.html">mmap.html</a> + <a href="rescode.html#ioerr_checkreservedlock">rescode.html#ioerr_checkreservedlock</a> + <a href="rescode.html#ioerr_close">rescode.html#ioerr_close</a> + <a href="rescode.html#ioerr_mmap">rescode.html#ioerr_mmap</a> + <a href="rescode.html#ioerr_rdlock">rescode.html#ioerr_rdlock</a> + <a href="rescode.html#ioerr_seek">rescode.html#ioerr_seek</a> + <a href="rescode.html#ioerr_shmmap">rescode.html#ioerr_shmmap</a> + <a href="rescode.html#ioerr_shmopen">rescode.html#ioerr_shmopen</a> + <a href="rescode.html#ioerr_shmsize">rescode.html#ioerr_shmsize</a> + <a href="rescode.html#ioerr_unlock">rescode.html#ioerr_unlock</a> + <a href="vfs.html#shim">vfs.html#shim</a> + <a href="wal.html#noshm">wal.html#noshm</a> + <a href="walformat.html#locks">walformat.html#locks</a> +<li>sqlite3_is_interrupted → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/interrupt.html">c3ref/interrupt.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_interrupt">capi3ref.html#sqlite3_interrupt</a> + <a href="changes.html#version_3_41_0">changes.html#version_3_41_0</a> + <a href="releaselog/3_41_0.html">releaselog/3_41_0.html</a> + <a href="releaselog/3_41_1.html">releaselog/3_41_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> +<li>sqlite3_keyword_check → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_24_0">changes.html#version_3_24_0</a> + <a href="lang_keywords.html">lang_keywords.html</a> + <a href="releaselog/3_24_0.html">releaselog/3_24_0.html</a> +<li>sqlite3_keyword_count → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_24_0">changes.html#version_3_24_0</a> + <a href="lang_keywords.html">lang_keywords.html</a> + <a href="releaselog/3_24_0.html">releaselog/3_24_0.html</a> +<li>sqlite3_keyword_name → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_24_0">changes.html#version_3_24_0</a> + <a href="lang_keywords.html">lang_keywords.html</a> + <a href="releaselog/3_24_0.html">releaselog/3_24_0.html</a> +<li>sqlite3_last_insert_rowid → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/last_insert_rowid.html">c3ref/last_insert_rowid.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_last_insert_rowid">capi3ref.html#sqlite3_last_insert_rowid</a> + <a href="changes.html#version_3_18_0">changes.html#version_3_18_0</a> + <a href="faq.html#q1">faq.html#q1</a> + <a href="lang_corefunc.html#last_insert_rowid">lang_corefunc.html#last_insert_rowid</a> + <a href="releaselog/3_18_0.html">releaselog/3_18_0.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> + <a href="vtab.html#xupdate">vtab.html#xupdate</a> + <a href="withoutrowid.html">withoutrowid.html</a> +<li>sqlite3_libversion → <a href="c3ref/c_source_id.html">c3ref/c_source_id.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_SOURCE_ID">capi3ref.html#SQLITE_SOURCE_ID</a> + <a href="lang_corefunc.html#sqlite_version">lang_corefunc.html#sqlite_version</a> +<li>sqlite3_libversion_number → <a href="c3ref/c_source_id.html">c3ref/c_source_id.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/index_info.html">c3ref/index_info.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_SOURCE_ID">capi3ref.html#SQLITE_SOURCE_ID</a> + <a href="capi3ref.html#sqlite3_index_info">capi3ref.html#sqlite3_index_info</a> + <a href="versionnumbers.html">versionnumbers.html</a> + <a href="vtab.html#xbestindex">vtab.html#xbestindex</a> +<li>sqlite3_limit → <a href="c3ref/bind_blob.html">c3ref/bind_blob.html</a> + <a href="c3ref/bind_blob.html#byteorderdeterminationrules">c3ref/bind_blob.html#byteorderdeterminationrules</a> + <a href="c3ref/c_limit_attached.html">c3ref/c_limit_attached.html</a> + <a href="c3ref/create_function.html">c3ref/create_function.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/limit.html">c3ref/limit.html</a> + <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="c3ref/str_new.html">c3ref/str_new.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_LIMIT_ATTACHED">capi3ref.html#SQLITE_LIMIT_ATTACHED</a> + <a href="capi3ref.html#byteorderdeterminationrules">capi3ref.html#byteorderdeterminationrules</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_bind_blob">capi3ref.html#sqlite3_bind_blob</a> + <a href="capi3ref.html#sqlite3_create_function">capi3ref.html#sqlite3_create_function</a> + <a href="capi3ref.html#sqlite3_limit">capi3ref.html#sqlite3_limit</a> + <a href="capi3ref.html#sqlite3_set_authorizer">capi3ref.html#sqlite3_set_authorizer</a> + <a href="capi3ref.html#sqlite3_str_new">capi3ref.html#sqlite3_str_new</a> + <a href="changes.html#version_3_39_1">changes.html#version_3_39_1</a> + <a href="changes.html#version_3_5_8">changes.html#version_3_5_8</a> + <a href="changes.html#version_3_8_7">changes.html#version_3_8_7</a> + <a href="cintro.html">cintro.html</a> + <a href="compile.html#max_worker_threads">compile.html#max_worker_threads</a> + <a href="compile.html#printf_precision_limit">compile.html#printf_precision_limit</a> + <a href="compile.html#yystackdepth">compile.html#yystackdepth</a> + <a href="lang_attach.html">lang_attach.html</a> + <a href="lang_createindex.html">lang_createindex.html</a> + <a href="lang_createtable.html#tablecoldef">lang_createtable.html#tablecoldef</a> + <a href="lang_expr.html#varparam">lang_expr.html#varparam</a> + <a href="limits.html">limits.html</a> + <a href="limits.html#max_attached">limits.html#max_attached</a> + <a href="limits.html#max_column">limits.html#max_column</a> + <a href="limits.html#max_compound_select">limits.html#max_compound_select</a> + <a href="limits.html#max_expr_depth">limits.html#max_expr_depth</a> + <a href="limits.html#max_function_arg">limits.html#max_function_arg</a> + <a href="limits.html#max_length">limits.html#max_length</a> + <a href="limits.html#max_like_pattern_length">limits.html#max_like_pattern_length</a> + <a href="limits.html#max_sql_length">limits.html#max_sql_length</a> + <a href="limits.html#max_variable_number">limits.html#max_variable_number</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_recursive_triggers">pragma.html#pragma_recursive_triggers</a> + <a href="pragma.html#pragma_threads">pragma.html#pragma_threads</a> + <a href="privatebranch.html">privatebranch.html</a> + <a href="releaselog/3_39_1.html">releaselog/3_39_1.html</a> + <a href="releaselog/3_39_2.html">releaselog/3_39_2.html</a> + <a href="releaselog/3_39_3.html">releaselog/3_39_3.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> + <a href="releaselog/3_5_8.html">releaselog/3_5_8.html</a> + <a href="releaselog/3_8_7.html">releaselog/3_8_7.html</a> + <a href="rescode.html#toobig">rescode.html#toobig</a> + <a href="security.html">security.html</a> +<li>sqlite3_load_extension → <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfigenableloadextension">c3ref/c_dbconfig_defensive.html#sqlitedbconfigenableloadextension</a> + <a href="c3ref/enable_load_extension.html">c3ref/enable_load_extension.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/load_extension.html">c3ref/load_extension.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_enable_load_extension">capi3ref.html#sqlite3_enable_load_extension</a> + <a href="capi3ref.html#sqlite3_load_extension">capi3ref.html#sqlite3_load_extension</a> + <a href="capi3ref.html#sqlitedbconfigenableloadextension">capi3ref.html#sqlitedbconfigenableloadextension</a> + <a href="changes.html#version_3_13_0">changes.html#version_3_13_0</a> + <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="cksumvfs.html">cksumvfs.html</a> + <a href="compile.html#omit_load_extension">compile.html#omit_load_extension</a> + <a href="csv.html">csv.html</a> + <a href="howtocompile.html#cli">howtocompile.html#cli</a> + <a href="lang_corefunc.html#load_extension">lang_corefunc.html#load_extension</a> + <a href="loadext.html">loadext.html</a> + <a href="loadext.html#persist">loadext.html#persist</a> + <a href="releaselog/3_13_0.html">releaselog/3_13_0.html</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> + <a href="rescode.html#ok_load_permanently">rescode.html#ok_load_permanently</a> +<li>sqlite3_log → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfiglog">c3ref/c_config_covering_index_scan.html#sqliteconfiglog</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/log.html">c3ref/log.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_log">capi3ref.html#sqlite3_log</a> + <a href="capi3ref.html#sqliteconfiglog">capi3ref.html#sqliteconfiglog</a> + <a href="changes.html#version_3_6_23">changes.html#version_3_6_23</a> + <a href="errlog.html">errlog.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_6_23.html">releaselog/3_6_23.html</a> + <a href="rescode.html#notice">rescode.html#notice</a> + <a href="rescode.html#notice_recover_rollback">rescode.html#notice_recover_rollback</a> + <a href="rescode.html#notice_recover_wal">rescode.html#notice_recover_wal</a> + <a href="rescode.html#warning">rescode.html#warning</a> + <a href="rescode.html#warning_autoindex">rescode.html#warning_autoindex</a> +<li>sqlite3_malloc → <a href="34to35.html">34to35.html</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigpagecache">c3ref/c_config_covering_index_scan.html#sqliteconfigpagecache</a> + <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfiglookaside">c3ref/c_dbconfig_defensive.html#sqlitedbconfiglookaside</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntltempfilename">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntltempfilename</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlvfsname">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlvfsname</a> + <a href="c3ref/c_status_malloc_count.html#sqlitestatusmallocsize">c3ref/c_status_malloc_count.html#sqlitestatusmallocsize</a> + <a href="c3ref/c_status_malloc_count.html#sqlitestatusmemoryused">c3ref/c_status_malloc_count.html#sqlitestatusmemoryused</a> + <a href="c3ref/c_status_malloc_count.html#sqlitestatuspagecacheoverflow">c3ref/c_status_malloc_count.html#sqlitestatuspagecacheoverflow</a> + <a href="c3ref/data_directory.html">c3ref/data_directory.html</a> + <a href="c3ref/exec.html">c3ref/exec.html</a> + <a href="c3ref/expanded_sql.html">c3ref/expanded_sql.html</a> + <a href="c3ref/free.html">c3ref/free.html</a> + <a href="c3ref/free_table.html">c3ref/free_table.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/load_extension.html">c3ref/load_extension.html</a> + <a href="c3ref/mem_methods.html">c3ref/mem_methods.html</a> + <a href="c3ref/memory_highwater.html">c3ref/memory_highwater.html</a> + <a href="c3ref/mutex_methods.html">c3ref/mutex_methods.html</a> + <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> + <a href="c3ref/temp_directory.html">c3ref/temp_directory.html</a> + <a href="c3ref/win32_set_directory.html">c3ref/win32_set_directory.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_data_directory">capi3ref.html#sqlite3_data_directory</a> + <a href="capi3ref.html#sqlite3_exec">capi3ref.html#sqlite3_exec</a> + <a href="capi3ref.html#sqlite3_expanded_sql">capi3ref.html#sqlite3_expanded_sql</a> + <a href="capi3ref.html#sqlite3_free">capi3ref.html#sqlite3_free</a> + <a href="capi3ref.html#sqlite3_free_table">capi3ref.html#sqlite3_free_table</a> + <a href="capi3ref.html#sqlite3_load_extension">capi3ref.html#sqlite3_load_extension</a> + <a href="capi3ref.html#sqlite3_mem_methods">capi3ref.html#sqlite3_mem_methods</a> + <a href="capi3ref.html#sqlite3_memory_highwater">capi3ref.html#sqlite3_memory_highwater</a> + <a href="capi3ref.html#sqlite3_mutex_methods">capi3ref.html#sqlite3_mutex_methods</a> + <a href="capi3ref.html#sqlite3_result_blob">capi3ref.html#sqlite3_result_blob</a> + <a href="capi3ref.html#sqlite3_temp_directory">capi3ref.html#sqlite3_temp_directory</a> + <a href="capi3ref.html#sqlite3_win32_set_directory">capi3ref.html#sqlite3_win32_set_directory</a> + <a href="capi3ref.html#sqliteconfigpagecache">capi3ref.html#sqliteconfigpagecache</a> + <a href="capi3ref.html#sqlitedbconfiglookaside">capi3ref.html#sqlitedbconfiglookaside</a> + <a href="capi3ref.html#sqlitefcntltempfilename">capi3ref.html#sqlitefcntltempfilename</a> + <a href="capi3ref.html#sqlitefcntlvfsname">capi3ref.html#sqlitefcntlvfsname</a> + <a href="capi3ref.html#sqlitestatusmallocsize">capi3ref.html#sqlitestatusmallocsize</a> + <a href="capi3ref.html#sqlitestatusmemoryused">capi3ref.html#sqlitestatusmemoryused</a> + <a href="capi3ref.html#sqlitestatuspagecacheoverflow">capi3ref.html#sqlitestatuspagecacheoverflow</a> + <a href="compile.html#default_pcache_initsz">compile.html#default_pcache_initsz</a> + <a href="compile.html#rcmd">compile.html#rcmd</a> + <a href="custombuild.html">custombuild.html</a> + <a href="malloc.html">malloc.html</a> + <a href="malloc.html#lookaside">malloc.html#lookaside</a> + <a href="malloc.html#memsys5">malloc.html#memsys5</a> + <a href="rescode.html#nomem">rescode.html#nomem</a> + <a href="vtab.html#epoonlyvtab">vtab.html#epoonlyvtab</a> + <a href="vtab.html#xconnect">vtab.html#xconnect</a> + <a href="vtab.html#xcreate">vtab.html#xcreate</a> + <a href="vtab.html#xupdate">vtab.html#xupdate</a> +<li>sqlite3_malloc64 → <a href="c3ref/c_deserialize_freeonclose.html">c3ref/c_deserialize_freeonclose.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/mprintf.html">c3ref/mprintf.html</a> + <a href="c3ref/serialize.html">c3ref/serialize.html</a> + <a href="c3ref/str_finish.html">c3ref/str_finish.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_DESERIALIZE_FREEONCLOSE">capi3ref.html#SQLITE_DESERIALIZE_FREEONCLOSE</a> + <a href="capi3ref.html#sqlite3_mprintf">capi3ref.html#sqlite3_mprintf</a> + <a href="capi3ref.html#sqlite3_serialize">capi3ref.html#sqlite3_serialize</a> + <a href="capi3ref.html#sqlite3_str_finish">capi3ref.html#sqlite3_str_finish</a> + <a href="changes.html#version_3_8_7">changes.html#version_3_8_7</a> + <a href="compile.html#max_allocation_size">compile.html#max_allocation_size</a> + <a href="printf.html">printf.html</a> + <a href="releaselog/3_8_7.html">releaselog/3_8_7.html</a> + <a href="vtab.html#xintegrity">vtab.html#xintegrity</a> +<li>sqlite3_mem_methods → <a href="35to36.html">35to36.html</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfiggetmalloc">c3ref/c_config_covering_index_scan.html#sqliteconfiggetmalloc</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigmalloc">c3ref/c_config_covering_index_scan.html#sqliteconfigmalloc</a> + <a href="c3ref/c_status_malloc_count.html#sqlitestatusmemoryused">c3ref/c_status_malloc_count.html#sqlitestatusmemoryused</a> + <a href="c3ref/objlist.html">c3ref/objlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqliteconfiggetmalloc">capi3ref.html#sqliteconfiggetmalloc</a> + <a href="capi3ref.html#sqliteconfigmalloc">capi3ref.html#sqliteconfigmalloc</a> + <a href="capi3ref.html#sqlitestatusmemoryused">capi3ref.html#sqlitestatusmemoryused</a> + <a href="custombuild.html">custombuild.html</a> + <a href="malloc.html#memsysx">malloc.html#memsysx</a> +<li>sqlite3_memory_alarm → <a href="34to35.html">34to35.html</a> + <a href="changes.html#version_3_9_0">changes.html#version_3_9_0</a> + <a href="compile.html#omit_deprecated">compile.html#omit_deprecated</a> + <a href="releaselog/3_9_0.html">releaselog/3_9_0.html</a> + <a href="releaselog/3_9_1.html">releaselog/3_9_1.html</a> + <a href="releaselog/3_9_2.html">releaselog/3_9_2.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> +<li>sqlite3_memory_highwater → <a href="34to35.html">34to35.html</a> + <a href="35to36.html">35to36.html</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigmemstatus">c3ref/c_config_covering_index_scan.html#sqliteconfigmemstatus</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/memory_highwater.html">c3ref/memory_highwater.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_memory_highwater">capi3ref.html#sqlite3_memory_highwater</a> + <a href="capi3ref.html#sqliteconfigmemstatus">capi3ref.html#sqliteconfigmemstatus</a> + <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="compile.html#default_memstatus">compile.html#default_memstatus</a> + <a href="custombuild.html">custombuild.html</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> + <a href="security.html">security.html</a> +<li>sqlite3_memory_used → <a href="34to35.html">34to35.html</a> + <a href="35to36.html">35to36.html</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigmemstatus">c3ref/c_config_covering_index_scan.html#sqliteconfigmemstatus</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/memory_highwater.html">c3ref/memory_highwater.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_memory_highwater">capi3ref.html#sqlite3_memory_highwater</a> + <a href="capi3ref.html#sqliteconfigmemstatus">capi3ref.html#sqliteconfigmemstatus</a> + <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="compile.html#default_memstatus">compile.html#default_memstatus</a> + <a href="compile.html#max_memory">compile.html#max_memory</a> + <a href="custombuild.html">custombuild.html</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> +<li>sqlite3_module → <a href="c3ref/objlist.html">c3ref/objlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="vtab.html#customvtab">vtab.html#customvtab</a> + <a href="vtab.html#epoonlyvtab">vtab.html#epoonlyvtab</a> + <a href="vtab.html#xBegin">vtab.html#xBegin</a> + <a href="vtab.html#xcommit">vtab.html#xcommit</a> + <a href="vtab.html#xconnect">vtab.html#xconnect</a> + <a href="vtab.html#xcreate">vtab.html#xcreate</a> + <a href="vtab.html#xrollback">vtab.html#xrollback</a> + <a href="vtab.html#xsync">vtab.html#xsync</a> + <a href="vtab.html#xupdate">vtab.html#xupdate</a> +<li>sqlite3_module.xBestIndex → <a href="changes.html#version_3_10_0">changes.html#version_3_10_0</a> + <a href="releaselog/3_10_0.html">releaselog/3_10_0.html</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> + <a href="vtab.html#tabfunc2">vtab.html#tabfunc2</a> +<li>sqlite3_module.xClose → <a href="c3ref/vtab_cursor.html">c3ref/vtab_cursor.html</a> + <a href="capi3ref.html#sqlite3_vtab_cursor">capi3ref.html#sqlite3_vtab_cursor</a> + <a href="vtab.html#xopen">vtab.html#xopen</a> +<li>sqlite3_module.xOpen → <a href="c3ref/vtab_cursor.html">c3ref/vtab_cursor.html</a> + <a href="capi3ref.html#sqlite3_vtab_cursor">capi3ref.html#sqlite3_vtab_cursor</a> + <a href="vtab.html#xclose">vtab.html#xclose</a> + <a href="vtab.html#xfilter">vtab.html#xfilter</a> +<li>sqlite3_module.xRename → <a href="pragma.html#pragma_legacy_alter_table">pragma.html#pragma_legacy_alter_table</a> +<li>sqlite3_module.xSync → <a href="vtab.html#xcommit">vtab.html#xcommit</a> +<li>sqlite3_mprintf → <a href="arch.html">arch.html</a> + <a href="c3ref/auto_extension.html">c3ref/auto_extension.html</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpragma">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpragma</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/vtab.html">c3ref/vtab.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_auto_extension">capi3ref.html#sqlite3_auto_extension</a> + <a href="capi3ref.html#sqlite3_vtab">capi3ref.html#sqlite3_vtab</a> + <a href="capi3ref.html#sqlitefcntlpragma">capi3ref.html#sqlitefcntlpragma</a> + <a href="changes.html#version_3_18_0">changes.html#version_3_18_0</a> + <a href="changes.html#version_3_5_9">changes.html#version_3_5_9</a> + <a href="changes.html#version_3_7_9">changes.html#version_3_7_9</a> + <a href="compile.html#omit_autoinit">compile.html#omit_autoinit</a> + <a href="compile.html#printf_precision_limit">compile.html#printf_precision_limit</a> + <a href="lang_corefunc.html#format">lang_corefunc.html#format</a> + <a href="printf.html">printf.html</a> + <a href="releaselog/3_18_0.html">releaselog/3_18_0.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> + <a href="releaselog/3_5_9.html">releaselog/3_5_9.html</a> + <a href="releaselog/3_7_9.html">releaselog/3_7_9.html</a> + <a href="vtab.html#colUsed">vtab.html#colUsed</a> + <a href="vtab.html#epoonlyvtab">vtab.html#epoonlyvtab</a> + <a href="vtab.html#xconnect">vtab.html#xconnect</a> + <a href="vtab.html#xcreate">vtab.html#xcreate</a> + <a href="vtab.html#xupdate">vtab.html#xupdate</a> +<li>sqlite3_msize → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_8_7">changes.html#version_3_8_7</a> + <a href="releaselog/3_8_7.html">releaselog/3_8_7.html</a> +<li>sqlite3_mutex → <a href="34to35.html">34to35.html</a> + <a href="c3ref/db_mutex.html">c3ref/db_mutex.html</a> + <a href="c3ref/mutex.html">c3ref/mutex.html</a> + <a href="c3ref/objlist.html">c3ref/objlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_db_mutex">capi3ref.html#sqlite3_db_mutex</a> + <a href="capi3ref.html#sqlite3_mutex">capi3ref.html#sqlite3_mutex</a> +<li>sqlite3_mutex_alloc → <a href="34to35.html">34to35.html</a> + <a href="c3ref/c_mutex_fast.html">c3ref/c_mutex_fast.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/mutex.html">c3ref/mutex.html</a> + <a href="c3ref/mutex_methods.html">c3ref/mutex_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_MUTEX_FAST">capi3ref.html#SQLITE_MUTEX_FAST</a> + <a href="capi3ref.html#sqlite3_mutex">capi3ref.html#sqlite3_mutex</a> + <a href="capi3ref.html#sqlite3_mutex_methods">capi3ref.html#sqlite3_mutex_methods</a> + <a href="custombuild.html">custombuild.html</a> +<li>sqlite3_mutex_enter → <a href="34to35.html">34to35.html</a> + <a href="35to36.html">35to36.html</a> + <a href="c3ref/errcode.html">c3ref/errcode.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/mutex_methods.html">c3ref/mutex_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_errcode">capi3ref.html#sqlite3_errcode</a> + <a href="capi3ref.html#sqlite3_mutex_methods">capi3ref.html#sqlite3_mutex_methods</a> +<li>sqlite3_mutex_free → <a href="34to35.html">34to35.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/mutex_methods.html">c3ref/mutex_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_mutex_methods">capi3ref.html#sqlite3_mutex_methods</a> +<li>sqlite3_mutex_held → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/mutex_alloc.html">c3ref/mutex_alloc.html</a> + <a href="c3ref/mutex_methods.html">c3ref/mutex_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_mutex_alloc">capi3ref.html#sqlite3_mutex_alloc</a> + <a href="capi3ref.html#sqlite3_mutex_methods">capi3ref.html#sqlite3_mutex_methods</a> + <a href="testing.html#mutextesting">testing.html#mutextesting</a> +<li>sqlite3_mutex_leave → <a href="34to35.html">34to35.html</a> + <a href="c3ref/errcode.html">c3ref/errcode.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/mutex_methods.html">c3ref/mutex_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_errcode">capi3ref.html#sqlite3_errcode</a> + <a href="capi3ref.html#sqlite3_mutex_methods">capi3ref.html#sqlite3_mutex_methods</a> +<li>sqlite3_mutex_methods → <a href="35to36.html">35to36.html</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfiggetmutex">c3ref/c_config_covering_index_scan.html#sqliteconfiggetmutex</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigmutex">c3ref/c_config_covering_index_scan.html#sqliteconfigmutex</a> + <a href="c3ref/objlist.html">c3ref/objlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqliteconfiggetmutex">capi3ref.html#sqliteconfiggetmutex</a> + <a href="capi3ref.html#sqliteconfigmutex">capi3ref.html#sqliteconfigmutex</a> +<li>sqlite3_mutex_notheld → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/mutex_alloc.html">c3ref/mutex_alloc.html</a> + <a href="c3ref/mutex_methods.html">c3ref/mutex_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_mutex_alloc">capi3ref.html#sqlite3_mutex_alloc</a> + <a href="capi3ref.html#sqlite3_mutex_methods">capi3ref.html#sqlite3_mutex_methods</a> + <a href="testing.html#mutextesting">testing.html#mutextesting</a> +<li>sqlite3_mutex_try → <a href="34to35.html">34to35.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/mutex_methods.html">c3ref/mutex_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_mutex_methods">capi3ref.html#sqlite3_mutex_methods</a> +<li>sqlite3_next_stmt → <a href="35to36.html">35to36.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/next_stmt.html">c3ref/next_stmt.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="c3ref/stmt_busy.html">c3ref/stmt_busy.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_next_stmt">capi3ref.html#sqlite3_next_stmt</a> + <a href="capi3ref.html#sqlite3_stmt_busy">capi3ref.html#sqlite3_stmt_busy</a> + <a href="changes.html#version_3_6_1">changes.html#version_3_6_1</a> + <a href="releaselog/3_6_0.html">releaselog/3_6_0.html</a> +<li>sqlite3_normalized_sql → <a href="c3ref/c_prepare_normalize.html#sqlitepreparenormalize">c3ref/c_prepare_normalize.html#sqlitepreparenormalize</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="capi3ref.html#sqlitepreparenormalize">capi3ref.html#sqlitepreparenormalize</a> + <a href="changes.html#version_3_26_0">changes.html#version_3_26_0</a> + <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="compile.html#enable_normalize">compile.html#enable_normalize</a> + <a href="releaselog/3_26_0.html">releaselog/3_26_0.html</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> +<li>sqlite3_open → <a href="34to35.html">34to35.html</a> + <a href="backup.html">backup.html</a> + <a href="c3ref/auto_extension.html">c3ref/auto_extension.html</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfiguri">c3ref/c_config_covering_index_scan.html#sqliteconfiguri</a> + <a href="c3ref/close.html">c3ref/close.html</a> + <a href="c3ref/enable_shared_cache.html">c3ref/enable_shared_cache.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/initialize.html">c3ref/initialize.html</a> + <a href="c3ref/prepare.html">c3ref/prepare.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="c3ref/temp_directory.html">c3ref/temp_directory.html</a> + <a href="c3ref/vfs.html#sqlite3vfsxopen">c3ref/vfs.html#sqlite3vfsxopen</a> + <a href="capi3.html">capi3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_auto_extension">capi3ref.html#sqlite3_auto_extension</a> + <a href="capi3ref.html#sqlite3_close">capi3ref.html#sqlite3_close</a> + <a href="capi3ref.html#sqlite3_enable_shared_cache">capi3ref.html#sqlite3_enable_shared_cache</a> + <a href="capi3ref.html#sqlite3_initialize">capi3ref.html#sqlite3_initialize</a> + <a href="capi3ref.html#sqlite3_prepare">capi3ref.html#sqlite3_prepare</a> + <a href="capi3ref.html#sqlite3_temp_directory">capi3ref.html#sqlite3_temp_directory</a> + <a href="capi3ref.html#sqlite3vfsxopen">capi3ref.html#sqlite3vfsxopen</a> + <a href="capi3ref.html#sqliteconfiguri">capi3ref.html#sqliteconfiguri</a> + <a href="cintro.html">cintro.html</a> + <a href="cksumvfs.html">cksumvfs.html</a> + <a href="cli.html#dotopen">cli.html#dotopen</a> + <a href="compile.html#omit_autoinit">compile.html#omit_autoinit</a> + <a href="compile.html#omit_memorydb">compile.html#omit_memorydb</a> + <a href="compile.html#rcmd">compile.html#rcmd</a> + <a href="inmemorydb.html">inmemorydb.html</a> + <a href="inmemorydb.html#temp_db">inmemorydb.html#temp_db</a> + <a href="isolation.html">isolation.html</a> + <a href="lang_attach.html">lang_attach.html</a> + <a href="malloc.html#lookaside">malloc.html#lookaside</a> + <a href="malloc.html#nofrag">malloc.html#nofrag</a> + <a href="pragma.html#pragma_encoding">pragma.html#pragma_encoding</a> + <a href="quickstart.html">quickstart.html</a> + <a href="rescode.html#cantopen_symlink">rescode.html#cantopen_symlink</a> + <a href="sharedcache.html#dontuse">sharedcache.html#dontuse</a> + <a href="shortnames.html">shortnames.html</a> + <a href="tempfiles.html#superjrnl">tempfiles.html#superjrnl</a> + <a href="threadsafe.html">threadsafe.html</a> + <a href="uri.html">uri.html</a> + <a href="vfs.html">vfs.html</a> + <a href="wal.html#walfile">wal.html#walfile</a> +<li>sqlite3_open16 → <a href="34to35.html">34to35.html</a> + <a href="c3ref/auto_extension.html">c3ref/auto_extension.html</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfiguri">c3ref/c_config_covering_index_scan.html#sqliteconfiguri</a> + <a href="c3ref/close.html">c3ref/close.html</a> + <a href="c3ref/enable_shared_cache.html">c3ref/enable_shared_cache.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/prepare.html">c3ref/prepare.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="c3ref/vfs.html#sqlite3vfsxopen">c3ref/vfs.html#sqlite3vfsxopen</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_auto_extension">capi3ref.html#sqlite3_auto_extension</a> + <a href="capi3ref.html#sqlite3_close">capi3ref.html#sqlite3_close</a> + <a href="capi3ref.html#sqlite3_enable_shared_cache">capi3ref.html#sqlite3_enable_shared_cache</a> + <a href="capi3ref.html#sqlite3_prepare">capi3ref.html#sqlite3_prepare</a> + <a href="capi3ref.html#sqlite3vfsxopen">capi3ref.html#sqlite3vfsxopen</a> + <a href="capi3ref.html#sqliteconfiguri">capi3ref.html#sqliteconfiguri</a> + <a href="cintro.html">cintro.html</a> + <a href="compile.html#omit_memorydb">compile.html#omit_memorydb</a> + <a href="inmemorydb.html">inmemorydb.html</a> + <a href="sharedcache.html#dontuse">sharedcache.html#dontuse</a> + <a href="tempfiles.html#superjrnl">tempfiles.html#superjrnl</a> + <a href="threadsafe.html">threadsafe.html</a> + <a href="uri.html">uri.html</a> + <a href="vfs.html">vfs.html</a> +<li>sqlite3_open_v2 → <a href="34to35.html">34to35.html</a> + <a href="35to36.html">35to36.html</a> + <a href="c3ref/auto_extension.html">c3ref/auto_extension.html</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfiguri">c3ref/c_config_covering_index_scan.html#sqliteconfiguri</a> + <a href="c3ref/c_open_autoproxy.html">c3ref/c_open_autoproxy.html</a> + <a href="c3ref/close.html">c3ref/close.html</a> + <a href="c3ref/enable_shared_cache.html">c3ref/enable_shared_cache.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/open.html#openexrescode">c3ref/open.html#openexrescode</a> + <a href="c3ref/prepare.html">c3ref/prepare.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="c3ref/system_errno.html">c3ref/system_errno.html</a> + <a href="c3ref/temp_directory.html">c3ref/temp_directory.html</a> + <a href="c3ref/vfs.html#sqlite3vfsxopen">c3ref/vfs.html#sqlite3vfsxopen</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_OPEN_AUTOPROXY">capi3ref.html#SQLITE_OPEN_AUTOPROXY</a> + <a href="capi3ref.html#openexrescode">capi3ref.html#openexrescode</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_auto_extension">capi3ref.html#sqlite3_auto_extension</a> + <a href="capi3ref.html#sqlite3_close">capi3ref.html#sqlite3_close</a> + <a href="capi3ref.html#sqlite3_enable_shared_cache">capi3ref.html#sqlite3_enable_shared_cache</a> + <a href="capi3ref.html#sqlite3_prepare">capi3ref.html#sqlite3_prepare</a> + <a href="capi3ref.html#sqlite3_system_errno">capi3ref.html#sqlite3_system_errno</a> + <a href="capi3ref.html#sqlite3_temp_directory">capi3ref.html#sqlite3_temp_directory</a> + <a href="capi3ref.html#sqlite3vfsxopen">capi3ref.html#sqlite3vfsxopen</a> + <a href="capi3ref.html#sqliteconfiguri">capi3ref.html#sqliteconfiguri</a> + <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="changes.html#version_3_37_0">changes.html#version_3_37_0</a> + <a href="changes.html#version_3_39_0">changes.html#version_3_39_0</a> + <a href="changes.html#version_3_5_0">changes.html#version_3_5_0</a> + <a href="changes.html#version_3_6_1">changes.html#version_3_6_1</a> + <a href="changes.html#version_3_6_18">changes.html#version_3_6_18</a> + <a href="cintro.html">cintro.html</a> + <a href="cksumvfs.html">cksumvfs.html</a> + <a href="compile.html#enable_locking_style">compile.html#enable_locking_style</a> + <a href="compile.html#omit_memorydb">compile.html#omit_memorydb</a> + <a href="compile.html#threadsafe">compile.html#threadsafe</a> + <a href="custombuild.html">custombuild.html</a> + <a href="howtocorrupt.html#posix_close_bug">howtocorrupt.html#posix_close_bug</a> + <a href="howtocorrupt.html#stalefd">howtocorrupt.html#stalefd</a> + <a href="inmemorydb.html">inmemorydb.html</a> + <a href="lang_attach.html">lang_attach.html</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> + <a href="releaselog/3_37_0.html">releaselog/3_37_0.html</a> + <a href="releaselog/3_37_1.html">releaselog/3_37_1.html</a> + <a href="releaselog/3_37_2.html">releaselog/3_37_2.html</a> + <a href="releaselog/3_39_0.html">releaselog/3_39_0.html</a> + <a href="releaselog/3_39_1.html">releaselog/3_39_1.html</a> + <a href="releaselog/3_39_2.html">releaselog/3_39_2.html</a> + <a href="releaselog/3_39_3.html">releaselog/3_39_3.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> + <a href="releaselog/3_5_0.html">releaselog/3_5_0.html</a> + <a href="releaselog/3_6_0.html">releaselog/3_6_0.html</a> + <a href="releaselog/3_6_18.html">releaselog/3_6_18.html</a> + <a href="sharedcache.html#dontuse">sharedcache.html#dontuse</a> + <a href="tempfiles.html#superjrnl">tempfiles.html#superjrnl</a> + <a href="threadsafe.html">threadsafe.html</a> + <a href="uri.html">uri.html</a> + <a href="uri.html#urimodeof">uri.html#urimodeof</a> + <a href="vfs.html">vfs.html</a> +<li>sqlite3_os_end → <a href="35to36.html">35to36.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="compile.html#os_other">compile.html#os_other</a> + <a href="custombuild.html">custombuild.html</a> +<li>sqlite3_os_init → <a href="35to36.html">35to36.html</a> + <a href="c3ref/config.html">c3ref/config.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_config">capi3ref.html#sqlite3_config</a> + <a href="compile.html#os_other">compile.html#os_other</a> + <a href="custombuild.html">custombuild.html</a> +<li>sqlite3_overload_function → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> +<li>sqlite3_pcache → <a href="c3ref/objlist.html">c3ref/objlist.html</a> + <a href="c3ref/pcache_methods2.html#thexdestroypagecachemethod">c3ref/pcache_methods2.html#thexdestroypagecachemethod</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#thexdestroypagecachemethod">capi3ref.html#thexdestroypagecachemethod</a> +<li>sqlite3_pcache_methods2 → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfiggetpcache2">c3ref/c_config_covering_index_scan.html#sqliteconfiggetpcache2</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigpcache2">c3ref/c_config_covering_index_scan.html#sqliteconfigpcache2</a> + <a href="c3ref/objlist.html">c3ref/objlist.html</a> + <a href="c3ref/pcache.html">c3ref/pcache.html</a> + <a href="c3ref/pcache_page.html">c3ref/pcache_page.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_pcache">capi3ref.html#sqlite3_pcache</a> + <a href="capi3ref.html#sqlite3_pcache_page">capi3ref.html#sqlite3_pcache_page</a> + <a href="capi3ref.html#sqliteconfiggetpcache2">capi3ref.html#sqliteconfiggetpcache2</a> + <a href="capi3ref.html#sqliteconfigpcache2">capi3ref.html#sqliteconfigpcache2</a> + <a href="changes.html#version_3_6_6">changes.html#version_3_6_6</a> + <a href="changes.html#version_3_7_10">changes.html#version_3_7_10</a> + <a href="pragma.html#pragma_cache_size">pragma.html#pragma_cache_size</a> + <a href="releaselog/3_6_6.html">releaselog/3_6_6.html</a> + <a href="releaselog/3_7_10.html">releaselog/3_7_10.html</a> +<li>sqlite3_pcache_page → <a href="c3ref/objlist.html">c3ref/objlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>sqlite3_prepare → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/prepare.html">c3ref/prepare.html</a> + <a href="c3ref/progress_handler.html">c3ref/progress_handler.html</a> + <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="c3ref/step.html">c3ref/step.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="c3ref/stmt_explain.html">c3ref/stmt_explain.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_prepare">capi3ref.html#sqlite3_prepare</a> + <a href="capi3ref.html#sqlite3_progress_handler">capi3ref.html#sqlite3_progress_handler</a> + <a href="capi3ref.html#sqlite3_set_authorizer">capi3ref.html#sqlite3_set_authorizer</a> + <a href="capi3ref.html#sqlite3_step">capi3ref.html#sqlite3_step</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="capi3ref.html#sqlite3_stmt_explain">capi3ref.html#sqlite3_stmt_explain</a> + <a href="changes.html#version_3_26_0">changes.html#version_3_26_0</a> + <a href="changes.html#version_3_41_0">changes.html#version_3_41_0</a> + <a href="cintro.html">cintro.html</a> + <a href="cli.html#dotrules">cli.html#dotrules</a> + <a href="faq.html#q15">faq.html#q15</a> + <a href="lang.html">lang.html</a> + <a href="lang_explain.html">lang_explain.html</a> + <a href="limits.html#max_sql_length">limits.html#max_sql_length</a> + <a href="oldnews.html">oldnews.html</a> + <a href="optoverview.html#like_opt">optoverview.html#like_opt</a> + <a href="pragma.html">pragma.html</a> + <a href="pragma.html#pragma_foreign_keys">pragma.html#pragma_foreign_keys</a> + <a href="pragma.html#pragma_recursive_triggers">pragma.html#pragma_recursive_triggers</a> + <a href="pragma.html#pragma_schema_version">pragma.html#pragma_schema_version</a> + <a href="queryplanner-ng.html#qpstab">queryplanner-ng.html#qpstab</a> + <a href="releaselog/3_26_0.html">releaselog/3_26_0.html</a> + <a href="releaselog/3_41_0.html">releaselog/3_41_0.html</a> + <a href="releaselog/3_41_1.html">releaselog/3_41_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> + <a href="rescode.html#schema">rescode.html#schema</a> + <a href="stmt.html">stmt.html</a> + <a href="unlock_notify.html">unlock_notify.html</a> + <a href="vtab.html#obc">vtab.html#obc</a> + <a href="vtab.html#xbestindex">vtab.html#xbestindex</a> + <a href="vtab.html#xfindfunction">vtab.html#xfindfunction</a> +<li>sqlite3_prepare16 → <a href="c3ref/bind_parameter_name.html">c3ref/bind_parameter_name.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="c3ref/step.html">c3ref/step.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_bind_parameter_name">capi3ref.html#sqlite3_bind_parameter_name</a> + <a href="capi3ref.html#sqlite3_set_authorizer">capi3ref.html#sqlite3_set_authorizer</a> + <a href="capi3ref.html#sqlite3_step">capi3ref.html#sqlite3_step</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="compile.html#omit_utf16">compile.html#omit_utf16</a> + <a href="lang.html">lang.html</a> + <a href="optoverview.html#like_opt">optoverview.html#like_opt</a> + <a href="rescode.html#schema">rescode.html#schema</a> +<li>sqlite3_prepare16_v2 → <a href="c3ref/bind_parameter_index.html">c3ref/bind_parameter_index.html</a> + <a href="c3ref/bind_parameter_name.html">c3ref/bind_parameter_name.html</a> + <a href="c3ref/expanded_sql.html">c3ref/expanded_sql.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="c3ref/step.html">c3ref/step.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_bind_parameter_index">capi3ref.html#sqlite3_bind_parameter_index</a> + <a href="capi3ref.html#sqlite3_bind_parameter_name">capi3ref.html#sqlite3_bind_parameter_name</a> + <a href="capi3ref.html#sqlite3_expanded_sql">capi3ref.html#sqlite3_expanded_sql</a> + <a href="capi3ref.html#sqlite3_set_authorizer">capi3ref.html#sqlite3_set_authorizer</a> + <a href="capi3ref.html#sqlite3_step">capi3ref.html#sqlite3_step</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="lang.html">lang.html</a> + <a href="optoverview.html#like_opt">optoverview.html#like_opt</a> +<li>sqlite3_prepare16_v3 → <a href="c3ref/bind_parameter_index.html">c3ref/bind_parameter_index.html</a> + <a href="c3ref/bind_parameter_name.html">c3ref/bind_parameter_name.html</a> + <a href="c3ref/c_prepare_normalize.html">c3ref/c_prepare_normalize.html</a> + <a href="c3ref/c_prepare_normalize.html#sqlitepreparepersistent">c3ref/c_prepare_normalize.html#sqlitepreparepersistent</a> + <a href="c3ref/expanded_sql.html">c3ref/expanded_sql.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="c3ref/step.html">c3ref/step.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_PREPARE_NORMALIZE">capi3ref.html#SQLITE_PREPARE_NORMALIZE</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_bind_parameter_index">capi3ref.html#sqlite3_bind_parameter_index</a> + <a href="capi3ref.html#sqlite3_bind_parameter_name">capi3ref.html#sqlite3_bind_parameter_name</a> + <a href="capi3ref.html#sqlite3_expanded_sql">capi3ref.html#sqlite3_expanded_sql</a> + <a href="capi3ref.html#sqlite3_set_authorizer">capi3ref.html#sqlite3_set_authorizer</a> + <a href="capi3ref.html#sqlite3_step">capi3ref.html#sqlite3_step</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="capi3ref.html#sqlitepreparepersistent">capi3ref.html#sqlitepreparepersistent</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> +<li>sqlite3_prepare_v2 → <a href="arch.html">arch.html</a> + <a href="c3ref/bind_blob.html">c3ref/bind_blob.html</a> + <a href="c3ref/c_limit_attached.html#sqlitelimitvdbeop">c3ref/c_limit_attached.html#sqlitelimitvdbeop</a> + <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/commit_hook.html">c3ref/commit_hook.html</a> + <a href="c3ref/db_handle.html">c3ref/db_handle.html</a> + <a href="c3ref/exec.html">c3ref/exec.html</a> + <a href="c3ref/expanded_sql.html">c3ref/expanded_sql.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/prepare.html">c3ref/prepare.html</a> + <a href="c3ref/progress_handler.html">c3ref/progress_handler.html</a> + <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="c3ref/step.html">c3ref/step.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="c3ref/stmt_explain.html">c3ref/stmt_explain.html</a> + <a href="c3ref/update_hook.html">c3ref/update_hook.html</a> + <a href="capi3.html">capi3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_bind_blob">capi3ref.html#sqlite3_bind_blob</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_commit_hook">capi3ref.html#sqlite3_commit_hook</a> + <a href="capi3ref.html#sqlite3_db_handle">capi3ref.html#sqlite3_db_handle</a> + <a href="capi3ref.html#sqlite3_exec">capi3ref.html#sqlite3_exec</a> + <a href="capi3ref.html#sqlite3_expanded_sql">capi3ref.html#sqlite3_expanded_sql</a> + <a href="capi3ref.html#sqlite3_prepare">capi3ref.html#sqlite3_prepare</a> + <a href="capi3ref.html#sqlite3_progress_handler">capi3ref.html#sqlite3_progress_handler</a> + <a href="capi3ref.html#sqlite3_set_authorizer">capi3ref.html#sqlite3_set_authorizer</a> + <a href="capi3ref.html#sqlite3_step">capi3ref.html#sqlite3_step</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="capi3ref.html#sqlite3_stmt_explain">capi3ref.html#sqlite3_stmt_explain</a> + <a href="capi3ref.html#sqlite3_update_hook">capi3ref.html#sqlite3_update_hook</a> + <a href="capi3ref.html#sqlitelimitvdbeop">capi3ref.html#sqlitelimitvdbeop</a> + <a href="changes.html#version_3_15_0">changes.html#version_3_15_0</a> + <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="changes.html#version_3_5_3">changes.html#version_3_5_3</a> + <a href="cintro.html">cintro.html</a> + <a href="errlog.html">errlog.html</a> + <a href="faq.html#q15">faq.html#q15</a> + <a href="lang.html">lang.html</a> + <a href="lang_comment.html">lang_comment.html</a> + <a href="limits.html#max_column">limits.html#max_column</a> + <a href="malloc.html#lookaside">malloc.html#lookaside</a> + <a href="malloc.html#nofrag">malloc.html#nofrag</a> + <a href="news.html">news.html</a> + <a href="opcode.html">opcode.html</a> + <a href="optoverview.html#like_opt">optoverview.html#like_opt</a> + <a href="releaselog/3_15_0.html">releaselog/3_15_0.html</a> + <a href="releaselog/3_15_1.html">releaselog/3_15_1.html</a> + <a href="releaselog/3_15_2.html">releaselog/3_15_2.html</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> + <a href="releaselog/3_5_3.html">releaselog/3_5_3.html</a> + <a href="rescode.html#error_missing_collseq">rescode.html#error_missing_collseq</a> + <a href="rescode.html#error_retry">rescode.html#error_retry</a> + <a href="rescode.html#schema">rescode.html#schema</a> + <a href="rescode.html#toobig">rescode.html#toobig</a> + <a href="unlock_notify.html">unlock_notify.html</a> + <a href="vfs.html">vfs.html</a> +<li>sqlite3_prepare_v3 → <a href="c3ref/c_prepare_normalize.html">c3ref/c_prepare_normalize.html</a> + <a href="c3ref/c_prepare_normalize.html#sqlitepreparepersistent">c3ref/c_prepare_normalize.html#sqlitepreparepersistent</a> + <a href="c3ref/expanded_sql.html">c3ref/expanded_sql.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/prepare.html">c3ref/prepare.html</a> + <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="c3ref/step.html">c3ref/step.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="c3ref/stmt_explain.html">c3ref/stmt_explain.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_PREPARE_NORMALIZE">capi3ref.html#SQLITE_PREPARE_NORMALIZE</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_expanded_sql">capi3ref.html#sqlite3_expanded_sql</a> + <a href="capi3ref.html#sqlite3_prepare">capi3ref.html#sqlite3_prepare</a> + <a href="capi3ref.html#sqlite3_set_authorizer">capi3ref.html#sqlite3_set_authorizer</a> + <a href="capi3ref.html#sqlite3_step">capi3ref.html#sqlite3_step</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="capi3ref.html#sqlite3_stmt_explain">capi3ref.html#sqlite3_stmt_explain</a> + <a href="capi3ref.html#sqlitepreparepersistent">capi3ref.html#sqlitepreparepersistent</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> +<li>sqlite3_preupdate_blobwrite → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_preupdate_blobwrite">capi3ref.html#sqlite3_preupdate_blobwrite</a> +<li>sqlite3_preupdate_count → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_preupdate_blobwrite">capi3ref.html#sqlite3_preupdate_blobwrite</a> +<li>sqlite3_preupdate_depth → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_preupdate_blobwrite">capi3ref.html#sqlite3_preupdate_blobwrite</a> +<li>sqlite3_preupdate_hook → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="c3ref/update_hook.html">c3ref/update_hook.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_preupdate_blobwrite">capi3ref.html#sqlite3_preupdate_blobwrite</a> + <a href="capi3ref.html#sqlite3_update_hook">capi3ref.html#sqlite3_update_hook</a> + <a href="compile.html#enable_preupdate_hook">compile.html#enable_preupdate_hook</a> + <a href="session.html#sqlite3session_create">session.html#sqlite3session_create</a> + <a href="session/sqlite3session_create.html">session/sqlite3session_create.html</a> +<li>sqlite3_preupdate_new → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_preupdate_blobwrite">capi3ref.html#sqlite3_preupdate_blobwrite</a> +<li>sqlite3_preupdate_old → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_preupdate_blobwrite">capi3ref.html#sqlite3_preupdate_blobwrite</a> +<li>sqlite3_profile → <a href="c3ref/c_trace.html#sqlitetraceprofile">c3ref/c_trace.html#sqlitetraceprofile</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="c3ref/trace_v2.html">c3ref/trace_v2.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_trace_v2">capi3ref.html#sqlite3_trace_v2</a> + <a href="capi3ref.html#sqlitetraceprofile">capi3ref.html#sqlitetraceprofile</a> + <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="compile.html#omit_trace">compile.html#omit_trace</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> +<li>sqlite3_progress_handler → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="changes.html#version_3_41_0">changes.html#version_3_41_0</a> + <a href="compile.html#omit_progress_callback">compile.html#omit_progress_callback</a> + <a href="compile.html#rcmd">compile.html#rcmd</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> + <a href="releaselog/3_41_0.html">releaselog/3_41_0.html</a> + <a href="releaselog/3_41_1.html">releaselog/3_41_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> + <a href="security.html">security.html</a> +<li>sqlite3_randomness → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_5_8">changes.html#version_3_5_8</a> + <a href="changes.html#version_3_8_3">changes.html#version_3_8_3</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_5_8.html">releaselog/3_5_8.html</a> + <a href="releaselog/3_8_3.html">releaselog/3_8_3.html</a> +<li>sqlite3_realloc → <a href="34to35.html">34to35.html</a> + <a href="c3ref/c_status_malloc_count.html#sqlitestatusmallocsize">c3ref/c_status_malloc_count.html#sqlitestatusmallocsize</a> + <a href="c3ref/free.html">c3ref/free.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/mem_methods.html">c3ref/mem_methods.html</a> + <a href="c3ref/memory_highwater.html">c3ref/memory_highwater.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_free">capi3ref.html#sqlite3_free</a> + <a href="capi3ref.html#sqlite3_mem_methods">capi3ref.html#sqlite3_mem_methods</a> + <a href="capi3ref.html#sqlite3_memory_highwater">capi3ref.html#sqlite3_memory_highwater</a> + <a href="capi3ref.html#sqlitestatusmallocsize">capi3ref.html#sqlitestatusmallocsize</a> + <a href="malloc.html">malloc.html</a> + <a href="rescode.html#nomem">rescode.html#nomem</a> +<li>sqlite3_realloc64 → <a href="c3ref/c_deserialize_freeonclose.html">c3ref/c_deserialize_freeonclose.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_DESERIALIZE_FREEONCLOSE">capi3ref.html#SQLITE_DESERIALIZE_FREEONCLOSE</a> + <a href="changes.html#version_3_8_7">changes.html#version_3_8_7</a> + <a href="compile.html#max_allocation_size">compile.html#max_allocation_size</a> + <a href="releaselog/3_8_7.html">releaselog/3_8_7.html</a> +<li>sqlite3_rebaser → <a href="session.html">session.html</a> + <a href="session/objlist.html">session/objlist.html</a> +<li>sqlite3_release_memory → <a href="34to35.html">34to35.html</a> + <a href="c3ref/db_release_memory.html">c3ref/db_release_memory.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_db_release_memory">capi3ref.html#sqlite3_db_release_memory</a> + <a href="changes.html#version_3_5_0">changes.html#version_3_5_0</a> + <a href="compile.html#enable_memory_management">compile.html#enable_memory_management</a> + <a href="releaselog/3_5_0.html">releaselog/3_5_0.html</a> +<li>sqlite3_reset → <a href="c3ref/bind_blob.html#byteorderdeterminationrules">c3ref/bind_blob.html#byteorderdeterminationrules</a> + <a href="c3ref/c_stmtstatus_counter.html#sqlitestmtstatusrun">c3ref/c_stmtstatus_counter.html#sqlitestmtstatusrun</a> + <a href="c3ref/clear_bindings.html">c3ref/clear_bindings.html</a> + <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/finalize.html">c3ref/finalize.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/get_auxdata.html">c3ref/get_auxdata.html</a> + <a href="c3ref/prepare.html">c3ref/prepare.html</a> + <a href="c3ref/reset.html">c3ref/reset.html</a> + <a href="c3ref/step.html">c3ref/step.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="c3ref/stmt_busy.html">c3ref/stmt_busy.html</a> + <a href="c3ref/stmt_explain.html">c3ref/stmt_explain.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#byteorderdeterminationrules">capi3ref.html#byteorderdeterminationrules</a> + <a href="capi3ref.html#sqlite3_clear_bindings">capi3ref.html#sqlite3_clear_bindings</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_finalize">capi3ref.html#sqlite3_finalize</a> + <a href="capi3ref.html#sqlite3_get_auxdata">capi3ref.html#sqlite3_get_auxdata</a> + <a href="capi3ref.html#sqlite3_prepare">capi3ref.html#sqlite3_prepare</a> + <a href="capi3ref.html#sqlite3_reset">capi3ref.html#sqlite3_reset</a> + <a href="capi3ref.html#sqlite3_step">capi3ref.html#sqlite3_step</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="capi3ref.html#sqlite3_stmt_busy">capi3ref.html#sqlite3_stmt_busy</a> + <a href="capi3ref.html#sqlite3_stmt_explain">capi3ref.html#sqlite3_stmt_explain</a> + <a href="capi3ref.html#sqlitestmtstatusrun">capi3ref.html#sqlitestmtstatusrun</a> + <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="cintro.html">cintro.html</a> + <a href="compile.html#omit_autoreset">compile.html#omit_autoreset</a> + <a href="lang_transaction.html#immediate">lang_transaction.html#immediate</a> + <a href="opcode.html">opcode.html</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> + <a href="stmt.html">stmt.html</a> + <a href="unlock_notify.html">unlock_notify.html</a> +<li>sqlite3_reset_auto_extension → <a href="c3ref/auto_extension.html">c3ref/auto_extension.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_auto_extension">capi3ref.html#sqlite3_auto_extension</a> +<li>sqlite3_result_blob → <a href="appfunc.html">appfunc.html</a> + <a href="bindptr.html">bindptr.html</a> + <a href="c3ref/c_static.html">c3ref/c_static.html</a> + <a href="c3ref/context.html">c3ref/context.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_STATIC">capi3ref.html#SQLITE_STATIC</a> + <a href="capi3ref.html#sqlite3_context">capi3ref.html#sqlite3_context</a> + <a href="vtab.html#xcolumn">vtab.html#xcolumn</a> +<li>sqlite3_result_blob64 → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/context.html">c3ref/context.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_context">capi3ref.html#sqlite3_context</a> + <a href="changes.html#version_3_8_7">changes.html#version_3_8_7</a> + <a href="releaselog/3_8_7.html">releaselog/3_8_7.html</a> +<li>sqlite3_result_double → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/context.html">c3ref/context.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_context">capi3ref.html#sqlite3_context</a> + <a href="compile.html#omit_floating_point">compile.html#omit_floating_point</a> + <a href="vtab.html#xcolumn">vtab.html#xcolumn</a> +<li>sqlite3_result_error → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/context.html">c3ref/context.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_context">capi3ref.html#sqlite3_context</a> + <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> + <a href="windowfunctions.html#udfwinfunc">windowfunctions.html#udfwinfunc</a> +<li>sqlite3_result_error16 → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/context.html">c3ref/context.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_context">capi3ref.html#sqlite3_context</a> +<li>sqlite3_result_error_code → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/context.html">c3ref/context.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_context">capi3ref.html#sqlite3_context</a> + <a href="changes.html#version_3_5_6">changes.html#version_3_5_6</a> + <a href="releaselog/3_5_6.html">releaselog/3_5_6.html</a> +<li>sqlite3_result_error_nomem → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/context.html">c3ref/context.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_context">capi3ref.html#sqlite3_context</a> +<li>sqlite3_result_error_toobig → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/context.html">c3ref/context.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_context">capi3ref.html#sqlite3_context</a> +<li>sqlite3_result_int → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/context.html">c3ref/context.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/vtab_nochange.html">c3ref/vtab_nochange.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_context">capi3ref.html#sqlite3_context</a> + <a href="capi3ref.html#sqlite3_vtab_nochange">capi3ref.html#sqlite3_vtab_nochange</a> + <a href="cintro.html">cintro.html</a> + <a href="vtab.html#xcolumn">vtab.html#xcolumn</a> + <a href="vtab.html#xupdate">vtab.html#xupdate</a> +<li>sqlite3_result_int64 → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/context.html">c3ref/context.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_context">capi3ref.html#sqlite3_context</a> + <a href="vtab.html#xcolumn">vtab.html#xcolumn</a> + <a href="windowfunctions.html#udfwinfunc">windowfunctions.html#udfwinfunc</a> +<li>sqlite3_result_null → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/context.html">c3ref/context.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_context">capi3ref.html#sqlite3_context</a> + <a href="capi3ref.html#sqlite3_result_blob">capi3ref.html#sqlite3_result_blob</a> + <a href="vtab.html#xcolumn">vtab.html#xcolumn</a> +<li>sqlite3_result_pointer → <a href="appfunc.html">appfunc.html</a> + <a href="bindptr.html">bindptr.html</a> + <a href="bindptr.html#ptrleak">bindptr.html#ptrleak</a> + <a href="bindptr.html#ptrtyp">bindptr.html#ptrtyp</a> + <a href="c3ref/context.html">c3ref/context.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_context">capi3ref.html#sqlite3_context</a> + <a href="capi3ref.html#sqlite3_value_blob">capi3ref.html#sqlite3_value_blob</a> + <a href="changes.html#version_3_20_1">changes.html#version_3_20_1</a> + <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> +<li>sqlite3_result_subtype → <a href="appfunc.html">appfunc.html</a> + <a href="bindptr.html">bindptr.html</a> + <a href="c3ref/c_deterministic.html#sqliteresultsubtype">c3ref/c_deterministic.html#sqliteresultsubtype</a> + <a href="c3ref/context.html">c3ref/context.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/value_subtype.html">c3ref/value_subtype.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_context">capi3ref.html#sqlite3_context</a> + <a href="capi3ref.html#sqlite3_value_subtype">capi3ref.html#sqlite3_value_subtype</a> + <a href="capi3ref.html#sqliteresultsubtype">capi3ref.html#sqliteresultsubtype</a> + <a href="changes.html#version_3_11_0">changes.html#version_3_11_0</a> + <a href="changes.html#version_3_45_0">changes.html#version_3_45_0</a> + <a href="changes.html#version_3_9_0">changes.html#version_3_9_0</a> + <a href="compile.html#rcmd">compile.html#rcmd</a> + <a href="compile.html#strict_subtype">compile.html#strict_subtype</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_11_0.html">releaselog/3_11_0.html</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> + <a href="releaselog/3_45_0.html">releaselog/3_45_0.html</a> + <a href="releaselog/3_45_1.html">releaselog/3_45_1.html</a> + <a href="releaselog/3_9_0.html">releaselog/3_9_0.html</a> + <a href="releaselog/3_9_1.html">releaselog/3_9_1.html</a> + <a href="releaselog/3_9_2.html">releaselog/3_9_2.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> +<li>sqlite3_result_text → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/context.html">c3ref/context.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_context">capi3ref.html#sqlite3_context</a> + <a href="vtab.html#xcolumn">vtab.html#xcolumn</a> +<li>sqlite3_result_text16 → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/context.html">c3ref/context.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_context">capi3ref.html#sqlite3_context</a> + <a href="vtab.html#xcolumn">vtab.html#xcolumn</a> +<li>sqlite3_result_text16be → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/context.html">c3ref/context.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_context">capi3ref.html#sqlite3_context</a> + <a href="vtab.html#xcolumn">vtab.html#xcolumn</a> +<li>sqlite3_result_text16le → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/context.html">c3ref/context.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_context">capi3ref.html#sqlite3_context</a> + <a href="vtab.html#xcolumn">vtab.html#xcolumn</a> +<li>sqlite3_result_text64 → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/context.html">c3ref/context.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_context">capi3ref.html#sqlite3_context</a> + <a href="changes.html#version_3_8_7">changes.html#version_3_8_7</a> + <a href="releaselog/3_8_7.html">releaselog/3_8_7.html</a> +<li>sqlite3_result_value → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/context.html">c3ref/context.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/value.html">c3ref/value.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_context">capi3ref.html#sqlite3_context</a> + <a href="capi3ref.html#sqlite3_value">capi3ref.html#sqlite3_value</a> +<li>sqlite3_result_zeroblob → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> + <a href="c3ref/context.html">c3ref/context.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_blob_open">capi3ref.html#sqlite3_blob_open</a> + <a href="capi3ref.html#sqlite3_context">capi3ref.html#sqlite3_context</a> + <a href="lang_corefunc.html#zeroblob">lang_corefunc.html#zeroblob</a> + <a href="vtab.html#xcolumn">vtab.html#xcolumn</a> +<li>sqlite3_result_zeroblob64 → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/context.html">c3ref/context.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_context">capi3ref.html#sqlite3_context</a> + <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> +<li>sqlite3_rollback_hook → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="c3ref/update_hook.html">c3ref/update_hook.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_update_hook">capi3ref.html#sqlite3_update_hook</a> +<li>sqlite3_rtree_query_callback → <a href="changes.html#version_3_8_5">changes.html#version_3_8_5</a> + <a href="releaselog/3_8_5.html">releaselog/3_8_5.html</a> +<li>sqlite3_serialize → <a href="c3ref/c_serialize_nocopy.html">c3ref/c_serialize_nocopy.html</a> + <a href="c3ref/db_name.html">c3ref/db_name.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_SERIALIZE_NOCOPY">capi3ref.html#SQLITE_SERIALIZE_NOCOPY</a> + <a href="capi3ref.html#sqlite3_db_name">capi3ref.html#sqlite3_db_name</a> + <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="changes.html#version_3_36_0">changes.html#version_3_36_0</a> + <a href="compile.html#enable_deserialize">compile.html#enable_deserialize</a> + <a href="compile.html#omit_deserialize">compile.html#omit_deserialize</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> + <a href="releaselog/3_36_0.html">releaselog/3_36_0.html</a> +<li>sqlite3_session → <a href="session.html">session.html</a> + <a href="session/objlist.html">session/objlist.html</a> +<li>sqlite3_set_authorizer → <a href="arch.html">arch.html</a> + <a href="bindptr.html">bindptr.html</a> + <a href="c3ref/c_alter_table.html">c3ref/c_alter_table.html</a> + <a href="c3ref/c_deny.html">c3ref/c_deny.html</a> + <a href="c3ref/c_fail.html">c3ref/c_fail.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/limit.html">c3ref/limit.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_ALTER_TABLE">capi3ref.html#SQLITE_ALTER_TABLE</a> + <a href="capi3ref.html#SQLITE_DENY">capi3ref.html#SQLITE_DENY</a> + <a href="capi3ref.html#SQLITE_FAIL">capi3ref.html#SQLITE_FAIL</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_limit">capi3ref.html#sqlite3_limit</a> + <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="compile.html#omit_authorization">compile.html#omit_authorization</a> + <a href="lang_delete.html#truncateopt">lang_delete.html#truncateopt</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> + <a href="rescode.html#auth">rescode.html#auth</a> + <a href="schematab.html">schematab.html</a> + <a href="security.html">security.html</a> +<li>sqlite3_set_auxdata → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/context.html">c3ref/context.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/get_clientdata.html">c3ref/get_clientdata.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_context">capi3ref.html#sqlite3_context</a> + <a href="capi3ref.html#sqlite3_get_clientdata">capi3ref.html#sqlite3_get_clientdata</a> + <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="changes.html#version_3_39_4">changes.html#version_3_39_4</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> +<li>sqlite3_set_clientdata → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/get_auxdata.html">c3ref/get_auxdata.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_get_auxdata">capi3ref.html#sqlite3_get_auxdata</a> + <a href="changes.html#version_3_44_0">changes.html#version_3_44_0</a> + <a href="releaselog/3_44_0.html">releaselog/3_44_0.html</a> + <a href="releaselog/3_44_1.html">releaselog/3_44_1.html</a> + <a href="releaselog/3_44_2.html">releaselog/3_44_2.html</a> +<li>sqlite3_set_last_insert_rowid → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/last_insert_rowid.html">c3ref/last_insert_rowid.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_last_insert_rowid">capi3ref.html#sqlite3_last_insert_rowid</a> + <a href="changes.html#version_3_18_0">changes.html#version_3_18_0</a> + <a href="releaselog/3_18_0.html">releaselog/3_18_0.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> +<li>sqlite3_shutdown → <a href="35to36.html">35to36.html</a> + <a href="c3ref/c_config_covering_index_scan.html">c3ref/c_config_covering_index_scan.html</a> + <a href="c3ref/config.html">c3ref/config.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/mem_methods.html">c3ref/mem_methods.html</a> + <a href="c3ref/mutex_methods.html">c3ref/mutex_methods.html</a> + <a href="c3ref/pcache_methods2.html#thexshutdownpagecachemethod">c3ref/pcache_methods2.html#thexshutdownpagecachemethod</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_CONFIG_COVERING_INDEX_SCAN">capi3ref.html#SQLITE_CONFIG_COVERING_INDEX_SCAN</a> + <a href="capi3ref.html#sqlite3_config">capi3ref.html#sqlite3_config</a> + <a href="capi3ref.html#sqlite3_mem_methods">capi3ref.html#sqlite3_mem_methods</a> + <a href="capi3ref.html#sqlite3_mutex_methods">capi3ref.html#sqlite3_mutex_methods</a> + <a href="capi3ref.html#thexshutdownpagecachemethod">capi3ref.html#thexshutdownpagecachemethod</a> + <a href="changes.html#version_3_6_1">changes.html#version_3_6_1</a> + <a href="changes.html#version_3_6_15">changes.html#version_3_6_15</a> + <a href="custombuild.html">custombuild.html</a> + <a href="releaselog/3_6_0.html">releaselog/3_6_0.html</a> + <a href="releaselog/3_6_15.html">releaselog/3_6_15.html</a> +<li>sqlite3_sleep → <a href="34to35.html">34to35.html</a> + <a href="backup.html">backup.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_42_0">changes.html#version_3_42_0</a> + <a href="releaselog/3_42_0.html">releaselog/3_42_0.html</a> +<li>sqlite3_snapshot → <a href="c3ref/objlist.html">c3ref/objlist.html</a> + <a href="c3ref/snapshot_free.html">c3ref/snapshot_free.html</a> + <a href="c3ref/snapshot_get.html">c3ref/snapshot_get.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_snapshot_free">capi3ref.html#sqlite3_snapshot_free</a> + <a href="capi3ref.html#sqlite3_snapshot_get">capi3ref.html#sqlite3_snapshot_get</a> + <a href="compile.html#enable_snapshot">compile.html#enable_snapshot</a> +<li>sqlite3_snapshot_cmp → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/snapshot.html">c3ref/snapshot.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_snapshot">capi3ref.html#sqlite3_snapshot</a> + <a href="compile.html#enable_snapshot">compile.html#enable_snapshot</a> +<li>sqlite3_snapshot_free → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/snapshot.html">c3ref/snapshot.html</a> + <a href="c3ref/snapshot_free.html">c3ref/snapshot_free.html</a> + <a href="c3ref/snapshot_get.html">c3ref/snapshot_get.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_snapshot">capi3ref.html#sqlite3_snapshot</a> + <a href="capi3ref.html#sqlite3_snapshot_free">capi3ref.html#sqlite3_snapshot_free</a> + <a href="capi3ref.html#sqlite3_snapshot_get">capi3ref.html#sqlite3_snapshot_get</a> + <a href="changes.html#version_3_10_0">changes.html#version_3_10_0</a> + <a href="compile.html#enable_snapshot">compile.html#enable_snapshot</a> + <a href="releaselog/3_10_0.html">releaselog/3_10_0.html</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> +<li>sqlite3_snapshot_get → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/snapshot.html">c3ref/snapshot.html</a> + <a href="c3ref/snapshot_get.html">c3ref/snapshot_get.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_snapshot">capi3ref.html#sqlite3_snapshot</a> + <a href="capi3ref.html#sqlite3_snapshot_get">capi3ref.html#sqlite3_snapshot_get</a> + <a href="changes.html#version_3_10_0">changes.html#version_3_10_0</a> + <a href="compile.html#enable_snapshot">compile.html#enable_snapshot</a> + <a href="releaselog/3_10_0.html">releaselog/3_10_0.html</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> +<li>sqlite3_snapshot_open → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/snapshot.html">c3ref/snapshot.html</a> + <a href="c3ref/snapshot_open.html">c3ref/snapshot_open.html</a> + <a href="c3ref/snapshot_recover.html">c3ref/snapshot_recover.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_snapshot">capi3ref.html#sqlite3_snapshot</a> + <a href="capi3ref.html#sqlite3_snapshot_open">capi3ref.html#sqlite3_snapshot_open</a> + <a href="capi3ref.html#sqlite3_snapshot_recover">capi3ref.html#sqlite3_snapshot_recover</a> + <a href="changes.html#version_3_10_0">changes.html#version_3_10_0</a> + <a href="compile.html#enable_snapshot">compile.html#enable_snapshot</a> + <a href="releaselog/3_10_0.html">releaselog/3_10_0.html</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> + <a href="rescode.html#error_snapshot">rescode.html#error_snapshot</a> +<li>sqlite3_snapshot_recover → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/snapshot.html">c3ref/snapshot.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_snapshot">capi3ref.html#sqlite3_snapshot</a> + <a href="compile.html#enable_snapshot">compile.html#enable_snapshot</a> +<li>sqlite3_snprintf → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfiglog">c3ref/c_config_covering_index_scan.html#sqliteconfiglog</a> + <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/log.html">c3ref/log.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_log">capi3ref.html#sqlite3_log</a> + <a href="capi3ref.html#sqliteconfiglog">capi3ref.html#sqliteconfiglog</a> + <a href="changes.html#version_3_4_0">changes.html#version_3_4_0</a> + <a href="lang_expr.html#castexpr">lang_expr.html#castexpr</a> + <a href="oldnews.html">oldnews.html</a> + <a href="printf.html">printf.html</a> + <a href="printf.html#comma">printf.html#comma</a> + <a href="releaselog/3_4_0.html">releaselog/3_4_0.html</a> +<li>sqlite3_soft_heap_limit → <a href="34to35.html">34to35.html</a> + <a href="changes.html#version_3_4_2">changes.html#version_3_4_2</a> + <a href="changes.html#version_3_5_0">changes.html#version_3_5_0</a> + <a href="changes.html#version_3_7_3">changes.html#version_3_7_3</a> + <a href="compile.html#max_memory">compile.html#max_memory</a> + <a href="releaselog/3_4_2.html">releaselog/3_4_2.html</a> + <a href="releaselog/3_5_0.html">releaselog/3_5_0.html</a> + <a href="releaselog/3_7_3.html">releaselog/3_7_3.html</a> +<li>sqlite3_soft_heap_limit64 → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigmemstatus">c3ref/c_config_covering_index_scan.html#sqliteconfigmemstatus</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/soft_heap_limit.html">c3ref/soft_heap_limit.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_soft_heap_limit">capi3ref.html#sqlite3_soft_heap_limit</a> + <a href="capi3ref.html#sqliteconfigmemstatus">capi3ref.html#sqliteconfigmemstatus</a> + <a href="changes.html#version_3_7_3">changes.html#version_3_7_3</a> + <a href="custombuild.html">custombuild.html</a> + <a href="malloc.html">malloc.html</a> + <a href="malloc.html#memstatus">malloc.html#memstatus</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_soft_heap_limit">pragma.html#pragma_soft_heap_limit</a> + <a href="releaselog/3_7_3.html">releaselog/3_7_3.html</a> +<li>sqlite3_sourceid → <a href="c3ref/c_source_id.html">c3ref/c_source_id.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_SOURCE_ID">capi3ref.html#SQLITE_SOURCE_ID</a> + <a href="changes.html#version_3_18_0">changes.html#version_3_18_0</a> + <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="changes.html#version_3_6_18">changes.html#version_3_6_18</a> + <a href="lang_corefunc.html#sqlite_source_id">lang_corefunc.html#sqlite_source_id</a> + <a href="releaselog/3_18_0.html">releaselog/3_18_0.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> + <a href="releaselog/3_6_18.html">releaselog/3_6_18.html</a> + <a href="th3.html">th3.html</a> +<li>sqlite3_sql → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> +<li>sqlite3_status → <a href="35to36.html">35to36.html</a> + <a href="c3ref/c_status_malloc_count.html">c3ref/c_status_malloc_count.html</a> + <a href="c3ref/c_status_malloc_count.html#sqlitestatusmallocsize">c3ref/c_status_malloc_count.html#sqlitestatusmallocsize</a> + <a href="c3ref/c_status_malloc_count.html#sqlitestatuspagecachesize">c3ref/c_status_malloc_count.html#sqlitestatuspagecachesize</a> + <a href="c3ref/db_status.html">c3ref/db_status.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt_status.html">c3ref/stmt_status.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_STATUS_MALLOC_COUNT">capi3ref.html#SQLITE_STATUS_MALLOC_COUNT</a> + <a href="capi3ref.html#sqlite3_db_status">capi3ref.html#sqlite3_db_status</a> + <a href="capi3ref.html#sqlite3_stmt_status">capi3ref.html#sqlite3_stmt_status</a> + <a href="capi3ref.html#sqlitestatusmallocsize">capi3ref.html#sqlitestatusmallocsize</a> + <a href="capi3ref.html#sqlitestatuspagecachesize">capi3ref.html#sqlitestatuspagecachesize</a> + <a href="changes.html#version_3_6_1">changes.html#version_3_6_1</a> + <a href="compile.html#disable_pagecache_overflow_stats">compile.html#disable_pagecache_overflow_stats</a> + <a href="compile.html#rcmd">compile.html#rcmd</a> + <a href="compile.html#yytrackmaxstackdepth">compile.html#yytrackmaxstackdepth</a> + <a href="malloc.html#memstatus">malloc.html#memstatus</a> + <a href="releaselog/3_6_0.html">releaselog/3_6_0.html</a> + <a href="releaselog/3_6_1.html">releaselog/3_6_1.html</a> +<li>sqlite3_status64 → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigmemstatus">c3ref/c_config_covering_index_scan.html#sqliteconfigmemstatus</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqliteconfigmemstatus">capi3ref.html#sqliteconfigmemstatus</a> + <a href="changes.html#version_3_8_9">changes.html#version_3_8_9</a> + <a href="compile.html#default_memstatus">compile.html#default_memstatus</a> + <a href="compile.html#max_memory">compile.html#max_memory</a> + <a href="memstat.html">memstat.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_8_9.html">releaselog/3_8_9.html</a> + <a href="vtablist.html">vtablist.html</a> +<li>sqlite3_step → <a href="arch.html">arch.html</a> + <a href="backup.html">backup.html</a> + <a href="c3ref/bind_blob.html#byteorderdeterminationrules">c3ref/bind_blob.html#byteorderdeterminationrules</a> + <a href="c3ref/busy_timeout.html">c3ref/busy_timeout.html</a> + <a href="c3ref/c_stmtstatus_counter.html#sqlitestmtstatusrun">c3ref/c_stmtstatus_counter.html#sqlitestmtstatusrun</a> + <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/column_database_name.html">c3ref/column_database_name.html</a> + <a href="c3ref/column_name.html">c3ref/column_name.html</a> + <a href="c3ref/commit_hook.html">c3ref/commit_hook.html</a> + <a href="c3ref/data_count.html">c3ref/data_count.html</a> + <a href="c3ref/exec.html">c3ref/exec.html</a> + <a href="c3ref/finalize.html">c3ref/finalize.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/prepare.html">c3ref/prepare.html</a> + <a href="c3ref/profile.html">c3ref/profile.html</a> + <a href="c3ref/progress_handler.html">c3ref/progress_handler.html</a> + <a href="c3ref/reset.html">c3ref/reset.html</a> + <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="c3ref/stmt_busy.html">c3ref/stmt_busy.html</a> + <a href="c3ref/unlock_notify.html">c3ref/unlock_notify.html</a> + <a href="c3ref/update_hook.html">c3ref/update_hook.html</a> + <a href="capi3.html">capi3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#byteorderdeterminationrules">capi3ref.html#byteorderdeterminationrules</a> + <a href="capi3ref.html#sqlite3_busy_timeout">capi3ref.html#sqlite3_busy_timeout</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_column_database_name">capi3ref.html#sqlite3_column_database_name</a> + <a href="capi3ref.html#sqlite3_column_name">capi3ref.html#sqlite3_column_name</a> + <a href="capi3ref.html#sqlite3_commit_hook">capi3ref.html#sqlite3_commit_hook</a> + <a href="capi3ref.html#sqlite3_data_count">capi3ref.html#sqlite3_data_count</a> + <a href="capi3ref.html#sqlite3_exec">capi3ref.html#sqlite3_exec</a> + <a href="capi3ref.html#sqlite3_finalize">capi3ref.html#sqlite3_finalize</a> + <a href="capi3ref.html#sqlite3_prepare">capi3ref.html#sqlite3_prepare</a> + <a href="capi3ref.html#sqlite3_profile">capi3ref.html#sqlite3_profile</a> + <a href="capi3ref.html#sqlite3_progress_handler">capi3ref.html#sqlite3_progress_handler</a> + <a href="capi3ref.html#sqlite3_reset">capi3ref.html#sqlite3_reset</a> + <a href="capi3ref.html#sqlite3_set_authorizer">capi3ref.html#sqlite3_set_authorizer</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="capi3ref.html#sqlite3_stmt_busy">capi3ref.html#sqlite3_stmt_busy</a> + <a href="capi3ref.html#sqlite3_unlock_notify">capi3ref.html#sqlite3_unlock_notify</a> + <a href="capi3ref.html#sqlite3_update_hook">capi3ref.html#sqlite3_update_hook</a> + <a href="capi3ref.html#sqlitestmtstatusrun">capi3ref.html#sqlitestmtstatusrun</a> + <a href="changes.html#version_3_5_3">changes.html#version_3_5_3</a> + <a href="changes.html#version_3_8_1">changes.html#version_3_8_1</a> + <a href="cintro.html">cintro.html</a> + <a href="compile.html#omit_autoreset">compile.html#omit_autoreset</a> + <a href="eqp.html">eqp.html</a> + <a href="errlog.html">errlog.html</a> + <a href="faq.html#q15">faq.html#q15</a> + <a href="isolation.html">isolation.html</a> + <a href="lang_corefunc.html#likelihood">lang_corefunc.html#likelihood</a> + <a href="lang_corefunc.html#likely">lang_corefunc.html#likely</a> + <a href="lang_corefunc.html#unlikely">lang_corefunc.html#unlikely</a> + <a href="lang_datefunc.html#tmdif">lang_datefunc.html#tmdif</a> + <a href="lang_explain.html">lang_explain.html</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="malloc.html#lookaside">malloc.html#lookaside</a> + <a href="malloc.html#nofrag">malloc.html#nofrag</a> + <a href="opcode.html">opcode.html</a> + <a href="optoverview.html#like_opt">optoverview.html#like_opt</a> + <a href="pragma.html">pragma.html</a> + <a href="releaselog/3_5_3.html">releaselog/3_5_3.html</a> + <a href="releaselog/3_8_1.html">releaselog/3_8_1.html</a> + <a href="rescode.html#done">rescode.html#done</a> + <a href="rescode.html#row">rescode.html#row</a> + <a href="rescode.html#schema">rescode.html#schema</a> + <a href="stmt.html">stmt.html</a> + <a href="unlock_notify.html">unlock_notify.html</a> + <a href="vfs.html">vfs.html</a> +<li>sqlite3_stmt → <a href="arch.html">arch.html</a> + <a href="c3ref/bind_blob.html">c3ref/bind_blob.html</a> + <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/intro.html">c3ref/intro.html</a> + <a href="c3ref/objlist.html">c3ref/objlist.html</a> + <a href="c3ref/prepare.html">c3ref/prepare.html</a> + <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_bind_blob">capi3ref.html#sqlite3_bind_blob</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_prepare">capi3ref.html#sqlite3_prepare</a> + <a href="capi3ref.html#sqlite3_value_blob">capi3ref.html#sqlite3_value_blob</a> + <a href="cintro.html">cintro.html</a> + <a href="tclsqlite.html#trace_v2">tclsqlite.html#trace_v2</a> + <a href="unlock_notify.html">unlock_notify.html</a> +<li>sqlite3_stmt_busy → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="changes.html#version_3_7_10">changes.html#version_3_7_10</a> + <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_7_10.html">releaselog/3_7_10.html</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> +<li>sqlite3_stmt_explain → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="changes.html#version_3_43_0">changes.html#version_3_43_0</a> + <a href="releaselog/3_43_0.html">releaselog/3_43_0.html</a> + <a href="releaselog/3_43_1.html">releaselog/3_43_1.html</a> + <a href="releaselog/3_43_2.html">releaselog/3_43_2.html</a> +<li>sqlite3_stmt_isexplain → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="changes.html#version_3_31_1">changes.html#version_3_31_1</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> +<li>sqlite3_stmt_readonly → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="changes.html#version_3_7_4">changes.html#version_3_7_4</a> + <a href="changes.html#version_3_7_5">changes.html#version_3_7_5</a> + <a href="releaselog/3_7_4.html">releaselog/3_7_4.html</a> + <a href="releaselog/3_7_5.html">releaselog/3_7_5.html</a> +<li>sqlite3_stmt_scanstatus → <a href="c3ref/c_scanstat_est.html">c3ref/c_scanstat_est.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="c3ref/stmt_scanstatus_reset.html">c3ref/stmt_scanstatus_reset.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_SCANSTAT_EST">capi3ref.html#SQLITE_SCANSTAT_EST</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="capi3ref.html#sqlite3_stmt_scanstatus_reset">capi3ref.html#sqlite3_stmt_scanstatus_reset</a> + <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="compile.html#enable_stmt_scanstatus">compile.html#enable_stmt_scanstatus</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> +<li>sqlite3_stmt_scanstatus_reset → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="c3ref/stmt_scanstatus.html">c3ref/stmt_scanstatus.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="capi3ref.html#sqlite3_stmt_scanstatus">capi3ref.html#sqlite3_stmt_scanstatus</a> +<li>sqlite3_stmt_scanstatus_v2 → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="changes.html#version_3_41_0">changes.html#version_3_41_0</a> + <a href="compile.html#enable_stmt_scanstatus">compile.html#enable_stmt_scanstatus</a> + <a href="profile.html">profile.html</a> + <a href="releaselog/3_41_0.html">releaselog/3_41_0.html</a> + <a href="releaselog/3_41_1.html">releaselog/3_41_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> +<li>sqlite3_stmt_status → <a href="c3ref/c_stmtstatus_counter.html">c3ref/c_stmtstatus_counter.html</a> + <a href="c3ref/db_status.html">c3ref/db_status.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/stmt.html">c3ref/stmt.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_STMTSTATUS counter">capi3ref.html#SQLITE_STMTSTATUS counter</a> + <a href="capi3ref.html#sqlite3_db_status">capi3ref.html#sqlite3_db_status</a> + <a href="capi3ref.html#sqlite3_stmt">capi3ref.html#sqlite3_stmt</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="changes.html#version_3_6_4">changes.html#version_3_6_4</a> + <a href="changes.html#version_3_8_0">changes.html#version_3_8_0</a> + <a href="lang_indexedby.html">lang_indexedby.html</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> + <a href="releaselog/3_6_4.html">releaselog/3_6_4.html</a> + <a href="releaselog/3_8_0.html">releaselog/3_8_0.html</a> + <a href="releaselog/3_8_0_1.html">releaselog/3_8_0_1.html</a> + <a href="releaselog/3_8_0_2.html">releaselog/3_8_0_2.html</a> + <a href="tclsqlite.html#status">tclsqlite.html#status</a> +<li>sqlite3_str → <a href="c3ref/objlist.html">c3ref/objlist.html</a> + <a href="c3ref/str_append.html">c3ref/str_append.html</a> + <a href="c3ref/str_errcode.html">c3ref/str_errcode.html</a> + <a href="c3ref/str_finish.html">c3ref/str_finish.html</a> + <a href="c3ref/str_new.html">c3ref/str_new.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_str_append">capi3ref.html#sqlite3_str_append</a> + <a href="capi3ref.html#sqlite3_str_errcode">capi3ref.html#sqlite3_str_errcode</a> + <a href="capi3ref.html#sqlite3_str_finish">capi3ref.html#sqlite3_str_finish</a> + <a href="capi3ref.html#sqlite3_str_new">capi3ref.html#sqlite3_str_new</a> + <a href="changes.html#version_3_24_0">changes.html#version_3_24_0</a> + <a href="releaselog/3_24_0.html">releaselog/3_24_0.html</a> +<li>sqlite3_str_append → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/str.html">c3ref/str.html</a> + <a href="c3ref/str_append.html">c3ref/str_append.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_str">capi3ref.html#sqlite3_str</a> + <a href="capi3ref.html#sqlite3_str_append">capi3ref.html#sqlite3_str_append</a> +<li>sqlite3_str_appendall → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/str.html">c3ref/str.html</a> + <a href="c3ref/str_append.html">c3ref/str_append.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_str">capi3ref.html#sqlite3_str</a> + <a href="capi3ref.html#sqlite3_str_append">capi3ref.html#sqlite3_str_append</a> +<li>sqlite3_str_appendchar → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/str.html">c3ref/str.html</a> + <a href="c3ref/str_append.html">c3ref/str_append.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_str">capi3ref.html#sqlite3_str</a> + <a href="capi3ref.html#sqlite3_str_append">capi3ref.html#sqlite3_str_append</a> +<li>sqlite3_str_appendf → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/str.html">c3ref/str.html</a> + <a href="c3ref/str_append.html">c3ref/str_append.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_str">capi3ref.html#sqlite3_str</a> + <a href="capi3ref.html#sqlite3_str_append">capi3ref.html#sqlite3_str_append</a> + <a href="compile.html#printf_precision_limit">compile.html#printf_precision_limit</a> + <a href="printf.html">printf.html</a> +<li>sqlite3_str_errcode → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/str.html">c3ref/str.html</a> + <a href="c3ref/str_append.html">c3ref/str_append.html</a> + <a href="c3ref/str_errcode.html">c3ref/str_errcode.html</a> + <a href="c3ref/str_new.html">c3ref/str_new.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_str">capi3ref.html#sqlite3_str</a> + <a href="capi3ref.html#sqlite3_str_append">capi3ref.html#sqlite3_str_append</a> + <a href="capi3ref.html#sqlite3_str_errcode">capi3ref.html#sqlite3_str_errcode</a> + <a href="capi3ref.html#sqlite3_str_new">capi3ref.html#sqlite3_str_new</a> +<li>sqlite3_str_finish → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/str.html">c3ref/str.html</a> + <a href="c3ref/str_finish.html">c3ref/str_finish.html</a> + <a href="c3ref/str_new.html">c3ref/str_new.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_str">capi3ref.html#sqlite3_str</a> + <a href="capi3ref.html#sqlite3_str_finish">capi3ref.html#sqlite3_str_finish</a> + <a href="capi3ref.html#sqlite3_str_new">capi3ref.html#sqlite3_str_new</a> +<li>sqlite3_str_length → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/str.html">c3ref/str.html</a> + <a href="c3ref/str_errcode.html">c3ref/str_errcode.html</a> + <a href="c3ref/str_new.html">c3ref/str_new.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_str">capi3ref.html#sqlite3_str</a> + <a href="capi3ref.html#sqlite3_str_errcode">capi3ref.html#sqlite3_str_errcode</a> + <a href="capi3ref.html#sqlite3_str_new">capi3ref.html#sqlite3_str_new</a> +<li>sqlite3_str_new → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/str.html">c3ref/str.html</a> + <a href="c3ref/str_append.html">c3ref/str_append.html</a> + <a href="c3ref/str_new.html">c3ref/str_new.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_str">capi3ref.html#sqlite3_str</a> + <a href="capi3ref.html#sqlite3_str_append">capi3ref.html#sqlite3_str_append</a> + <a href="capi3ref.html#sqlite3_str_new">capi3ref.html#sqlite3_str_new</a> +<li>sqlite3_str_reset → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/str.html">c3ref/str.html</a> + <a href="c3ref/str_append.html">c3ref/str_append.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_str">capi3ref.html#sqlite3_str</a> + <a href="capi3ref.html#sqlite3_str_append">capi3ref.html#sqlite3_str_append</a> +<li>sqlite3_str_value → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/str.html">c3ref/str.html</a> + <a href="c3ref/str_errcode.html">c3ref/str_errcode.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_str">capi3ref.html#sqlite3_str</a> + <a href="capi3ref.html#sqlite3_str_errcode">capi3ref.html#sqlite3_str_errcode</a> +<li>sqlite3_str_vappendf → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/str.html">c3ref/str.html</a> + <a href="c3ref/str_append.html">c3ref/str_append.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_str">capi3ref.html#sqlite3_str</a> + <a href="capi3ref.html#sqlite3_str_append">capi3ref.html#sqlite3_str_append</a> + <a href="printf.html">printf.html</a> +<li>sqlite3_strglob → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/strglob.html">c3ref/strglob.html</a> + <a href="c3ref/strlike.html">c3ref/strlike.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_strglob">capi3ref.html#sqlite3_strglob</a> + <a href="capi3ref.html#sqlite3_strlike">capi3ref.html#sqlite3_strlike</a> + <a href="changes.html#version_3_40_0">changes.html#version_3_40_0</a> + <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="releaselog/3_40_0.html">releaselog/3_40_0.html</a> + <a href="releaselog/3_40_1.html">releaselog/3_40_1.html</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> +<li>sqlite3_stricmp → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/strglob.html">c3ref/strglob.html</a> + <a href="c3ref/stricmp.html">c3ref/stricmp.html</a> + <a href="c3ref/strlike.html">c3ref/strlike.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_strglob">capi3ref.html#sqlite3_strglob</a> + <a href="capi3ref.html#sqlite3_stricmp">capi3ref.html#sqlite3_stricmp</a> + <a href="capi3ref.html#sqlite3_strlike">capi3ref.html#sqlite3_strlike</a> + <a href="changes.html#version_3_7_11">changes.html#version_3_7_11</a> + <a href="releaselog/3_7_11.html">releaselog/3_7_11.html</a> +<li>sqlite3_strlike → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/strglob.html">c3ref/strglob.html</a> + <a href="c3ref/strlike.html">c3ref/strlike.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_strglob">capi3ref.html#sqlite3_strglob</a> + <a href="capi3ref.html#sqlite3_strlike">capi3ref.html#sqlite3_strlike</a> + <a href="changes.html#version_3_10_0">changes.html#version_3_10_0</a> + <a href="changes.html#version_3_40_0">changes.html#version_3_40_0</a> + <a href="compile.html#like_doesnt_match_blobs">compile.html#like_doesnt_match_blobs</a> + <a href="pragma.html#pragma_case_sensitive_like">pragma.html#pragma_case_sensitive_like</a> + <a href="releaselog/3_10_0.html">releaselog/3_10_0.html</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> + <a href="releaselog/3_40_0.html">releaselog/3_40_0.html</a> + <a href="releaselog/3_40_1.html">releaselog/3_40_1.html</a> +<li>sqlite3_strnicmp → <a href="c3ref/create_collation.html">c3ref/create_collation.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/strglob.html">c3ref/strglob.html</a> + <a href="c3ref/stricmp.html">c3ref/stricmp.html</a> + <a href="c3ref/strlike.html">c3ref/strlike.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_create_collation">capi3ref.html#sqlite3_create_collation</a> + <a href="capi3ref.html#sqlite3_strglob">capi3ref.html#sqlite3_strglob</a> + <a href="capi3ref.html#sqlite3_stricmp">capi3ref.html#sqlite3_stricmp</a> + <a href="capi3ref.html#sqlite3_strlike">capi3ref.html#sqlite3_strlike</a> + <a href="changes.html#version_3_6_17">changes.html#version_3_6_17</a> + <a href="changes.html#version_3_7_11">changes.html#version_3_7_11</a> + <a href="datatype3.html#collation">datatype3.html#collation</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_6_17.html">releaselog/3_6_17.html</a> + <a href="releaselog/3_7_11.html">releaselog/3_7_11.html</a> +<li>sqlite3_system_errno → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> +<li>sqlite3_table_column_metadata → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> +<li>sqlite3_temp_directory → <a href="c3ref/objlist.html">c3ref/objlist.html</a> + <a href="c3ref/open.html#urifilenameexamples">c3ref/open.html#urifilenameexamples</a> + <a href="c3ref/win32_set_directory.html">c3ref/win32_set_directory.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_win32_set_directory">capi3ref.html#sqlite3_win32_set_directory</a> + <a href="capi3ref.html#urifilenameexamples">capi3ref.html#urifilenameexamples</a> + <a href="changes.html#version_3_8_1">changes.html#version_3_8_1</a> + <a href="pragma.html#pragma_temp_store_directory">pragma.html#pragma_temp_store_directory</a> + <a href="releaselog/3_8_1.html">releaselog/3_8_1.html</a> + <a href="tempfiles.html#tempdir">tempfiles.html#tempdir</a> +<li>sqlite3_test_control → <a href="c3ref/c_testctrl_always.html">c3ref/c_testctrl_always.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_TESTCTRL_ALWAYS">capi3ref.html#SQLITE_TESTCTRL_ALWAYS</a> + <a href="changes.html#version_3_8_4">changes.html#version_3_8_4</a> + <a href="compile.html#untestable">compile.html#untestable</a> + <a href="imposter.html">imposter.html</a> + <a href="releaselog/3_8_4.html">releaselog/3_8_4.html</a> + <a href="releaselog/3_8_4_1.html">releaselog/3_8_4_1.html</a> + <a href="releaselog/3_8_4_2.html">releaselog/3_8_4_2.html</a> + <a href="releaselog/3_8_4_3.html">releaselog/3_8_4_3.html</a> + <a href="testing.html#defcode">testing.html#defcode</a> + <a href="testing.html#disopttest">testing.html#disopttest</a> +<li>sqlite3_thread_cleanup → <a href="34to35.html">34to35.html</a> + <a href="compile.html#omit_deprecated">compile.html#omit_deprecated</a> +<li>sqlite3_threadsafe → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/value.html">c3ref/value.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_value">capi3ref.html#sqlite3_value</a> + <a href="compile.html#threadsafe">compile.html#threadsafe</a> + <a href="custombuild.html">custombuild.html</a> + <a href="faq.html#q6">faq.html#q6</a> + <a href="threadsafe.html">threadsafe.html</a> +<li>sqlite3_total_changes → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntldataversion">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntldataversion</a> + <a href="c3ref/changes.html">c3ref/changes.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="c3ref/total_changes.html">c3ref/total_changes.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_changes">capi3ref.html#sqlite3_changes</a> + <a href="capi3ref.html#sqlite3_total_changes">capi3ref.html#sqlite3_total_changes</a> + <a href="capi3ref.html#sqlitefcntldataversion">capi3ref.html#sqlitefcntldataversion</a> + <a href="changes.html#version_3_6_5">changes.html#version_3_6_5</a> + <a href="fts3.html#*fts4mergecmd">fts3.html#*fts4mergecmd</a> + <a href="fts5.html#the_merge_command">fts5.html#the_merge_command</a> + <a href="lang_createtrigger.html#instead_of_trigger">lang_createtrigger.html#instead_of_trigger</a> + <a href="lang_delete.html#truncateopt">lang_delete.html#truncateopt</a> + <a href="pragma.html#pragma_count_changes">pragma.html#pragma_count_changes</a> + <a href="releaselog/3_6_5.html">releaselog/3_6_5.html</a> +<li>sqlite3_total_changes64 → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="changes.html#version_3_37_0">changes.html#version_3_37_0</a> + <a href="lang_corefunc.html#total_changes">lang_corefunc.html#total_changes</a> + <a href="releaselog/3_37_0.html">releaselog/3_37_0.html</a> + <a href="releaselog/3_37_1.html">releaselog/3_37_1.html</a> + <a href="releaselog/3_37_2.html">releaselog/3_37_2.html</a> +<li>sqlite3_trace → <a href="c3ref/c_trace.html#sqlitetracestmt">c3ref/c_trace.html#sqlitetracestmt</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/profile.html">c3ref/profile.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="c3ref/trace_v2.html">c3ref/trace_v2.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_profile">capi3ref.html#sqlite3_profile</a> + <a href="capi3ref.html#sqlite3_trace_v2">capi3ref.html#sqlite3_trace_v2</a> + <a href="capi3ref.html#sqlitetracestmt">capi3ref.html#sqlitetracestmt</a> + <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="changes.html#version_3_6_21">changes.html#version_3_6_21</a> + <a href="changes.html#version_3_7_15">changes.html#version_3_7_15</a> + <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="changes.html#version_3_7_5">changes.html#version_3_7_5</a> + <a href="changes.html#version_3_8_7">changes.html#version_3_8_7</a> + <a href="compile.html#omit_trace">compile.html#omit_trace</a> + <a href="compile.html#trace_size_limit">compile.html#trace_size_limit</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="releaselog/3_6_21.html">releaselog/3_6_21.html</a> + <a href="releaselog/3_7_15.html">releaselog/3_7_15.html</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> + <a href="releaselog/3_7_5.html">releaselog/3_7_5.html</a> + <a href="releaselog/3_8_7.html">releaselog/3_8_7.html</a> +<li>sqlite3_trace_v2 → <a href="c3ref/c_trace.html">c3ref/c_trace.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/profile.html">c3ref/profile.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_TRACE">capi3ref.html#SQLITE_TRACE</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_profile">capi3ref.html#sqlite3_profile</a> + <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="changes.html#version_3_14_2">changes.html#version_3_14_2</a> + <a href="changes.html#version_3_18_0">changes.html#version_3_18_0</a> + <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="releaselog/3_18_0.html">releaselog/3_18_0.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> +<li>sqlite3_transfer_bindings → <a href="compile.html#omit_deprecated">compile.html#omit_deprecated</a> +<li>sqlite3_txn_state → <a href="c3ref/c_txn_none.html">c3ref/c_txn_none.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_TXN_NONE">capi3ref.html#SQLITE_TXN_NONE</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="changes.html#version_3_34_0">changes.html#version_3_34_0</a> + <a href="cli.html#dotdatabases">cli.html#dotdatabases</a> + <a href="releaselog/3_34_0.html">releaselog/3_34_0.html</a> + <a href="releaselog/3_34_1.html">releaselog/3_34_1.html</a> +<li>sqlite3_unlock_notify → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="changes.html#version_3_6_12">changes.html#version_3_6_12</a> + <a href="compile.html#enable_unlock_notify">compile.html#enable_unlock_notify</a> + <a href="releaselog/3_6_12.html">releaselog/3_6_12.html</a> + <a href="tclsqlite.html#unlock_notify">tclsqlite.html#unlock_notify</a> + <a href="unlock_notify.html">unlock_notify.html</a> +<li>sqlite3_update_hook → <a href="c3ref/commit_hook.html">c3ref/commit_hook.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_commit_hook">capi3ref.html#sqlite3_commit_hook</a> + <a href="capi3ref.html#sqlite3_preupdate_blobwrite">capi3ref.html#sqlite3_preupdate_blobwrite</a> + <a href="compile.html#enable_preupdate_hook">compile.html#enable_preupdate_hook</a> + <a href="lang_conflict.html">lang_conflict.html</a> + <a href="withoutrowid.html">withoutrowid.html</a> +<li>sqlite3_uri_boolean → <a href="c3ref/create_filename.html">c3ref/create_filename.html</a> + <a href="c3ref/db_filename.html">c3ref/db_filename.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_create_filename">capi3ref.html#sqlite3_create_filename</a> + <a href="capi3ref.html#sqlite3_db_filename">capi3ref.html#sqlite3_db_filename</a> + <a href="changes.html#version_3_7_10">changes.html#version_3_7_10</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_7_10.html">releaselog/3_7_10.html</a> +<li>sqlite3_uri_int64 → <a href="c3ref/create_filename.html">c3ref/create_filename.html</a> + <a href="c3ref/db_filename.html">c3ref/db_filename.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_create_filename">capi3ref.html#sqlite3_create_filename</a> + <a href="capi3ref.html#sqlite3_db_filename">capi3ref.html#sqlite3_db_filename</a> + <a href="changes.html#version_3_7_10">changes.html#version_3_7_10</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_7_10.html">releaselog/3_7_10.html</a> +<li>sqlite3_uri_key → <a href="c3ref/create_filename.html">c3ref/create_filename.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_create_filename">capi3ref.html#sqlite3_create_filename</a> + <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> +<li>sqlite3_uri_parameter → <a href="c3ref/create_filename.html">c3ref/create_filename.html</a> + <a href="c3ref/db_filename.html">c3ref/db_filename.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_create_filename">capi3ref.html#sqlite3_create_filename</a> + <a href="capi3ref.html#sqlite3_db_filename">capi3ref.html#sqlite3_db_filename</a> + <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> +<li>sqlite3_user_data → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/context.html">c3ref/context.html</a> + <a href="c3ref/create_function.html">c3ref/create_function.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_context">capi3ref.html#sqlite3_context</a> + <a href="capi3ref.html#sqlite3_create_function">capi3ref.html#sqlite3_create_function</a> + <a href="cintro.html">cintro.html</a> +<li>sqlite3_value → <a href="appfunc.html">appfunc.html</a> + <a href="bindptr.html#ptrtyp">bindptr.html#ptrtyp</a> + <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/objlist.html">c3ref/objlist.html</a> + <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> + <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> + <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> + <a href="c3ref/value_dup.html">c3ref/value_dup.html</a> + <a href="c3ref/value_encoding.html">c3ref/value_encoding.html</a> + <a href="c3ref/vtab_in.html">c3ref/vtab_in.html</a> + <a href="c3ref/vtab_rhs_value.html">c3ref/vtab_rhs_value.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_preupdate_blobwrite">capi3ref.html#sqlite3_preupdate_blobwrite</a> + <a href="capi3ref.html#sqlite3_result_blob">capi3ref.html#sqlite3_result_blob</a> + <a href="capi3ref.html#sqlite3_value_blob">capi3ref.html#sqlite3_value_blob</a> + <a href="capi3ref.html#sqlite3_value_dup">capi3ref.html#sqlite3_value_dup</a> + <a href="capi3ref.html#sqlite3_value_encoding">capi3ref.html#sqlite3_value_encoding</a> + <a href="capi3ref.html#sqlite3_vtab_in">capi3ref.html#sqlite3_vtab_in</a> + <a href="capi3ref.html#sqlite3_vtab_rhs_value">capi3ref.html#sqlite3_vtab_rhs_value</a> + <a href="opcode.html">opcode.html</a> + <a href="windowfunctions.html#udfwinfunc">windowfunctions.html#udfwinfunc</a> +<li>sqlite3_value_blob → <a href="bindptr.html">bindptr.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/value.html">c3ref/value.html</a> + <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_value">capi3ref.html#sqlite3_value</a> + <a href="capi3ref.html#sqlite3_value_blob">capi3ref.html#sqlite3_value_blob</a> +<li>sqlite3_value_bytes → <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/value.html">c3ref/value.html</a> + <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> + <a href="c3ref/value_encoding.html">c3ref/value_encoding.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_value">capi3ref.html#sqlite3_value</a> + <a href="capi3ref.html#sqlite3_value_blob">capi3ref.html#sqlite3_value_blob</a> + <a href="capi3ref.html#sqlite3_value_encoding">capi3ref.html#sqlite3_value_encoding</a> +<li>sqlite3_value_bytes16 → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/value.html">c3ref/value.html</a> + <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> + <a href="c3ref/value_encoding.html">c3ref/value_encoding.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_value">capi3ref.html#sqlite3_value</a> + <a href="capi3ref.html#sqlite3_value_blob">capi3ref.html#sqlite3_value_blob</a> + <a href="capi3ref.html#sqlite3_value_encoding">capi3ref.html#sqlite3_value_encoding</a> +<li>sqlite3_value_double → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/value.html">c3ref/value.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_value">capi3ref.html#sqlite3_value</a> + <a href="compile.html#omit_floating_point">compile.html#omit_floating_point</a> +<li>sqlite3_value_dup → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/value.html">c3ref/value.html</a> + <a href="c3ref/value_dup.html">c3ref/value_dup.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_value">capi3ref.html#sqlite3_value</a> + <a href="capi3ref.html#sqlite3_value_dup">capi3ref.html#sqlite3_value_dup</a> + <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> +<li>sqlite3_value_encoding → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/value.html">c3ref/value.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_value">capi3ref.html#sqlite3_value</a> + <a href="changes.html#version_3_40_0">changes.html#version_3_40_0</a> + <a href="releaselog/3_40_0.html">releaselog/3_40_0.html</a> + <a href="releaselog/3_40_1.html">releaselog/3_40_1.html</a> +<li>sqlite3_value_free → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/value.html">c3ref/value.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_value">capi3ref.html#sqlite3_value</a> + <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> +<li>sqlite3_value_frombind → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/value.html">c3ref/value.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_value">capi3ref.html#sqlite3_value</a> + <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="changes.html#version_3_31_1">changes.html#version_3_31_1</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> +<li>sqlite3_value_int → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/value.html">c3ref/value.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_value">capi3ref.html#sqlite3_value</a> + <a href="cintro.html">cintro.html</a> +<li>sqlite3_value_int64 → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/value.html">c3ref/value.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_value">capi3ref.html#sqlite3_value</a> + <a href="windowfunctions.html#udfwinfunc">windowfunctions.html#udfwinfunc</a> +<li>sqlite3_value_nochange → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/value.html">c3ref/value.html</a> + <a href="c3ref/vtab_nochange.html">c3ref/vtab_nochange.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_value">capi3ref.html#sqlite3_value</a> + <a href="capi3ref.html#sqlite3_vtab_nochange">capi3ref.html#sqlite3_vtab_nochange</a> + <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> + <a href="vtab.html#xupdate">vtab.html#xupdate</a> +<li>sqlite3_value_numeric_type → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/value.html">c3ref/value.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_value">capi3ref.html#sqlite3_value</a> +<li>sqlite3_value_pointer → <a href="bindptr.html">bindptr.html</a> + <a href="bindptr.html#ptrleak">bindptr.html#ptrleak</a> + <a href="bindptr.html#ptrtyp">bindptr.html#ptrtyp</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> + <a href="c3ref/value.html">c3ref/value.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_result_blob">capi3ref.html#sqlite3_result_blob</a> + <a href="capi3ref.html#sqlite3_value">capi3ref.html#sqlite3_value</a> +<li>sqlite3_value_subtype → <a href="bindptr.html">bindptr.html</a> + <a href="c3ref/c_deterministic.html#sqlitesubtype">c3ref/c_deterministic.html#sqlitesubtype</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/value.html">c3ref/value.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_value">capi3ref.html#sqlite3_value</a> + <a href="capi3ref.html#sqlitesubtype">capi3ref.html#sqlitesubtype</a> + <a href="changes.html#version_3_9_0">changes.html#version_3_9_0</a> + <a href="releaselog/3_9_0.html">releaselog/3_9_0.html</a> + <a href="releaselog/3_9_1.html">releaselog/3_9_1.html</a> + <a href="releaselog/3_9_2.html">releaselog/3_9_2.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> +<li>sqlite3_value_text → <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/value.html">c3ref/value.html</a> + <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> + <a href="c3ref/value_encoding.html">c3ref/value_encoding.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_value">capi3ref.html#sqlite3_value</a> + <a href="capi3ref.html#sqlite3_value_blob">capi3ref.html#sqlite3_value_blob</a> + <a href="capi3ref.html#sqlite3_value_encoding">capi3ref.html#sqlite3_value_encoding</a> + <a href="changes.html#version_3_16_2">changes.html#version_3_16_2</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> +<li>sqlite3_value_text16 → <a href="c3ref/create_function.html">c3ref/create_function.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/value.html">c3ref/value.html</a> + <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> + <a href="c3ref/value_encoding.html">c3ref/value_encoding.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_create_function">capi3ref.html#sqlite3_create_function</a> + <a href="capi3ref.html#sqlite3_value">capi3ref.html#sqlite3_value</a> + <a href="capi3ref.html#sqlite3_value_blob">capi3ref.html#sqlite3_value_blob</a> + <a href="capi3ref.html#sqlite3_value_encoding">capi3ref.html#sqlite3_value_encoding</a> +<li>sqlite3_value_text16be → <a href="c3ref/create_function.html">c3ref/create_function.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/value.html">c3ref/value.html</a> + <a href="c3ref/value_encoding.html">c3ref/value_encoding.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_create_function">capi3ref.html#sqlite3_create_function</a> + <a href="capi3ref.html#sqlite3_value">capi3ref.html#sqlite3_value</a> + <a href="capi3ref.html#sqlite3_value_encoding">capi3ref.html#sqlite3_value_encoding</a> +<li>sqlite3_value_text16le → <a href="c3ref/create_function.html">c3ref/create_function.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/value.html">c3ref/value.html</a> + <a href="c3ref/value_encoding.html">c3ref/value_encoding.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_create_function">capi3ref.html#sqlite3_create_function</a> + <a href="capi3ref.html#sqlite3_value">capi3ref.html#sqlite3_value</a> + <a href="capi3ref.html#sqlite3_value_encoding">capi3ref.html#sqlite3_value_encoding</a> +<li>sqlite3_value_type → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/value.html">c3ref/value.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_value">capi3ref.html#sqlite3_value</a> + <a href="windowfunctions.html#udfwinfunc">windowfunctions.html#udfwinfunc</a> +<li>sqlite3_version → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="deterministic.html">deterministic.html</a> +<li>sqlite3_vfs → <a href="34to35.html">34to35.html</a> + <a href="35to36.html">35to36.html</a> + <a href="asyncvfs.html">asyncvfs.html</a> + <a href="c3ref/c_access_exists.html">c3ref/c_access_exists.html</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlvfspointer">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlvfspointer</a> + <a href="c3ref/data_directory.html">c3ref/data_directory.html</a> + <a href="c3ref/database_file_object.html">c3ref/database_file_object.html</a> + <a href="c3ref/file.html">c3ref/file.html</a> + <a href="c3ref/file_control.html">c3ref/file_control.html</a> + <a href="c3ref/initialize.html">c3ref/initialize.html</a> + <a href="c3ref/objlist.html">c3ref/objlist.html</a> + <a href="c3ref/open.html#opennofollow">c3ref/open.html#opennofollow</a> + <a href="c3ref/randomness.html">c3ref/randomness.html</a> + <a href="c3ref/sleep.html">c3ref/sleep.html</a> + <a href="c3ref/temp_directory.html">c3ref/temp_directory.html</a> + <a href="c3ref/vfs_find.html">c3ref/vfs_find.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_ACCESS_EXISTS">capi3ref.html#SQLITE_ACCESS_EXISTS</a> + <a href="capi3ref.html#opennofollow">capi3ref.html#opennofollow</a> + <a href="capi3ref.html#sqlite3_data_directory">capi3ref.html#sqlite3_data_directory</a> + <a href="capi3ref.html#sqlite3_database_file_object">capi3ref.html#sqlite3_database_file_object</a> + <a href="capi3ref.html#sqlite3_file">capi3ref.html#sqlite3_file</a> + <a href="capi3ref.html#sqlite3_file_control">capi3ref.html#sqlite3_file_control</a> + <a href="capi3ref.html#sqlite3_initialize">capi3ref.html#sqlite3_initialize</a> + <a href="capi3ref.html#sqlite3_randomness">capi3ref.html#sqlite3_randomness</a> + <a href="capi3ref.html#sqlite3_sleep">capi3ref.html#sqlite3_sleep</a> + <a href="capi3ref.html#sqlite3_temp_directory">capi3ref.html#sqlite3_temp_directory</a> + <a href="capi3ref.html#sqlite3_vfs_find">capi3ref.html#sqlite3_vfs_find</a> + <a href="capi3ref.html#sqlitefcntlvfspointer">capi3ref.html#sqlitefcntlvfspointer</a> + <a href="changes.html#version_3_6_1">changes.html#version_3_6_1</a> + <a href="changes.html#version_3_6_7">changes.html#version_3_6_7</a> + <a href="changes.html#version_3_7_4">changes.html#version_3_7_4</a> + <a href="changes.html#version_3_7_6">changes.html#version_3_7_6</a> + <a href="compile.html#os_other">compile.html#os_other</a> + <a href="custombuild.html">custombuild.html</a> + <a href="howtocorrupt.html#posix_close_bug">howtocorrupt.html#posix_close_bug</a> + <a href="lang_datefunc.html#tmdif">lang_datefunc.html#tmdif</a> + <a href="loadext.html#persist">loadext.html#persist</a> + <a href="loadext.html#statext">loadext.html#statext</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_6_0.html">releaselog/3_6_0.html</a> + <a href="releaselog/3_6_7.html">releaselog/3_6_7.html</a> + <a href="releaselog/3_7_4.html">releaselog/3_7_4.html</a> + <a href="releaselog/3_7_6.html">releaselog/3_7_6.html</a> + <a href="rescode.html#ioerr_access">rescode.html#ioerr_access</a> + <a href="rescode.html#ioerr_delete">rescode.html#ioerr_delete</a> + <a href="rescode.html#ioerr_delete_noent">rescode.html#ioerr_delete_noent</a> + <a href="rescode.html#notfound">rescode.html#notfound</a> + <a href="rescode.html#ok_load_permanently">rescode.html#ok_load_permanently</a> + <a href="testing.html#crashtesting">testing.html#crashtesting</a> + <a href="testing.html#ioerrtesting">testing.html#ioerrtesting</a> + <a href="vfs.html#shim">vfs.html#shim</a> +<li>sqlite3_vfs.xOpen → <a href="c3ref/c_open_autoproxy.html">c3ref/c_open_autoproxy.html</a> + <a href="c3ref/create_filename.html">c3ref/create_filename.html</a> + <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> + <a href="capi3ref.html#SQLITE_OPEN_AUTOPROXY">capi3ref.html#SQLITE_OPEN_AUTOPROXY</a> + <a href="capi3ref.html#sqlite3_create_filename">capi3ref.html#sqlite3_create_filename</a> + <a href="capi3ref.html#sqlite3_io_methods">capi3ref.html#sqlite3_io_methods</a> +<li>sqlite3_vfs_find → <a href="34to35.html">34to35.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/vfs.html">c3ref/vfs.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_vfs">capi3ref.html#sqlite3_vfs</a> + <a href="compile.html#rcmd">compile.html#rcmd</a> +<li>sqlite3_vfs_register → <a href="34to35.html">34to35.html</a> + <a href="asyncvfs.html">asyncvfs.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/vfs.html">c3ref/vfs.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_vfs">capi3ref.html#sqlite3_vfs</a> + <a href="changes.html#version_3_7_14">changes.html#version_3_7_14</a> + <a href="cintro.html">cintro.html</a> + <a href="compile.html#omit_autoinit">compile.html#omit_autoinit</a> + <a href="compile.html#os_other">compile.html#os_other</a> + <a href="custombuild.html">custombuild.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="privatebranch.html">privatebranch.html</a> + <a href="releaselog/3_7_14.html">releaselog/3_7_14.html</a> + <a href="uri.html#urivfs">uri.html#urivfs</a> + <a href="vfs.html">vfs.html</a> + <a href="vfs.html#shim">vfs.html#shim</a> +<li>sqlite3_vfs_unregister → <a href="34to35.html">34to35.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/vfs.html">c3ref/vfs.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_vfs">capi3ref.html#sqlite3_vfs</a> +<li>sqlite3_vmprintf → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="printf.html">printf.html</a> +<li>sqlite3_vsnprintf → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_7_5">changes.html#version_3_7_5</a> + <a href="oldnews.html">oldnews.html</a> + <a href="printf.html">printf.html</a> + <a href="releaselog/3_7_5.html">releaselog/3_7_5.html</a> +<li>sqlite3_vtab → <a href="c3ref/objlist.html">c3ref/objlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="compile.html#omit_virtualtable">compile.html#omit_virtualtable</a> + <a href="vtab.html#epoonlyvtab">vtab.html#epoonlyvtab</a> + <a href="vtab.html#xconnect">vtab.html#xconnect</a> + <a href="vtab.html#xcreate">vtab.html#xcreate</a> + <a href="vtab.html#xdisconnect">vtab.html#xdisconnect</a> + <a href="vtab.html#xfindfunction">vtab.html#xfindfunction</a> + <a href="vtab.html#xintegrity">vtab.html#xintegrity</a> +<li>sqlite3_vtab_collation → <a href="c3ref/c_index_constraint_eq.html">c3ref/c_index_constraint_eq.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/index_info.html">c3ref/index_info.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_INDEX_CONSTRAINT_EQ">capi3ref.html#SQLITE_INDEX_CONSTRAINT_EQ</a> + <a href="capi3ref.html#sqlite3_index_info">capi3ref.html#sqlite3_index_info</a> + <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> + <a href="vtab.html#xbestindex">vtab.html#xbestindex</a> +<li>sqlite3_vtab_config → <a href="c3ref/c_vtab_constraint_support.html">c3ref/c_vtab_constraint_support.html</a> + <a href="c3ref/c_vtab_constraint_support.html#sqlitevtabconstraintsupport">c3ref/c_vtab_constraint_support.html#sqlitevtabconstraintsupport</a> + <a href="c3ref/c_vtab_constraint_support.html#sqlitevtabdirectonly">c3ref/c_vtab_constraint_support.html#sqlitevtabdirectonly</a> + <a href="c3ref/c_vtab_constraint_support.html#sqlitevtabinnocuous">c3ref/c_vtab_constraint_support.html#sqlitevtabinnocuous</a> + <a href="c3ref/c_vtab_constraint_support.html#sqlitevtabusesallschemas">c3ref/c_vtab_constraint_support.html#sqlitevtabusesallschemas</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_VTAB_CONSTRAINT_SUPPORT">capi3ref.html#SQLITE_VTAB_CONSTRAINT_SUPPORT</a> + <a href="capi3ref.html#sqlitevtabconstraintsupport">capi3ref.html#sqlitevtabconstraintsupport</a> + <a href="capi3ref.html#sqlitevtabdirectonly">capi3ref.html#sqlitevtabdirectonly</a> + <a href="capi3ref.html#sqlitevtabinnocuous">capi3ref.html#sqlitevtabinnocuous</a> + <a href="capi3ref.html#sqlitevtabusesallschemas">capi3ref.html#sqlitevtabusesallschemas</a> + <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="changes.html#version_3_7_7">changes.html#version_3_7_7</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> + <a href="releaselog/3_7_7.html">releaselog/3_7_7.html</a> + <a href="vtab.html#xconnect">vtab.html#xconnect</a> + <a href="vtab.html#xcreate">vtab.html#xcreate</a> +<li>sqlite3_vtab_cursor → <a href="c3ref/objlist.html">c3ref/objlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="vtab.html#epoonlyvtab">vtab.html#epoonlyvtab</a> + <a href="vtab.html#xclose">vtab.html#xclose</a> + <a href="vtab.html#xnext">vtab.html#xnext</a> + <a href="vtab.html#xopen">vtab.html#xopen</a> + <a href="vtab.html#xrowid">vtab.html#xrowid</a> + <a href="vtab.html#xupdate">vtab.html#xupdate</a> +<li>sqlite3_vtab_distinct → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/index_info.html">c3ref/index_info.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_index_info">capi3ref.html#sqlite3_index_info</a> + <a href="changes.html#version_3_38_0">changes.html#version_3_38_0</a> + <a href="changes.html#version_3_39_0">changes.html#version_3_39_0</a> + <a href="releaselog/3_38_0.html">releaselog/3_38_0.html</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> + <a href="releaselog/3_39_0.html">releaselog/3_39_0.html</a> + <a href="releaselog/3_39_1.html">releaselog/3_39_1.html</a> + <a href="releaselog/3_39_2.html">releaselog/3_39_2.html</a> + <a href="releaselog/3_39_3.html">releaselog/3_39_3.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> + <a href="vtab.html#obc">vtab.html#obc</a> +<li>sqlite3_vtab_in → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/vtab_in_first.html">c3ref/vtab_in_first.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_vtab_in_first">capi3ref.html#sqlite3_vtab_in_first</a> + <a href="changes.html#version_3_38_0">changes.html#version_3_38_0</a> + <a href="changes.html#version_3_41_0">changes.html#version_3_41_0</a> + <a href="releaselog/3_38_0.html">releaselog/3_38_0.html</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> + <a href="releaselog/3_41_0.html">releaselog/3_41_0.html</a> + <a href="releaselog/3_41_1.html">releaselog/3_41_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> +<li>sqlite3_vtab_in_first → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/vtab_in.html">c3ref/vtab_in.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_vtab_in">capi3ref.html#sqlite3_vtab_in</a> + <a href="changes.html#version_3_41_0">changes.html#version_3_41_0</a> + <a href="releaselog/3_41_0.html">releaselog/3_41_0.html</a> + <a href="releaselog/3_41_1.html">releaselog/3_41_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> +<li>sqlite3_vtab_in_next → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/vtab_in.html">c3ref/vtab_in.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_vtab_in">capi3ref.html#sqlite3_vtab_in</a> + <a href="changes.html#version_3_41_0">changes.html#version_3_41_0</a> + <a href="releaselog/3_41_0.html">releaselog/3_41_0.html</a> + <a href="releaselog/3_41_1.html">releaselog/3_41_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> +<li>sqlite3_vtab_nochange → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_value_blob">capi3ref.html#sqlite3_value_blob</a> + <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> + <a href="vtab.html#xupdate">vtab.html#xupdate</a> +<li>sqlite3_vtab_on_conflict → <a href="c3ref/c_deny.html">c3ref/c_deny.html</a> + <a href="c3ref/c_fail.html">c3ref/c_fail.html</a> + <a href="c3ref/c_vtab_constraint_support.html#sqlitevtabconstraintsupport">c3ref/c_vtab_constraint_support.html#sqlitevtabconstraintsupport</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_DENY">capi3ref.html#SQLITE_DENY</a> + <a href="capi3ref.html#SQLITE_FAIL">capi3ref.html#SQLITE_FAIL</a> + <a href="capi3ref.html#sqlitevtabconstraintsupport">capi3ref.html#sqlitevtabconstraintsupport</a> + <a href="rescode.html#abort">rescode.html#abort</a> +<li>sqlite3_vtab_rhs_value → <a href="c3ref/c_index_constraint_eq.html">c3ref/c_index_constraint_eq.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/index_info.html">c3ref/index_info.html</a> + <a href="c3ref/value.html">c3ref/value.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_INDEX_CONSTRAINT_EQ">capi3ref.html#SQLITE_INDEX_CONSTRAINT_EQ</a> + <a href="capi3ref.html#sqlite3_index_info">capi3ref.html#sqlite3_index_info</a> + <a href="capi3ref.html#sqlite3_value">capi3ref.html#sqlite3_value</a> + <a href="changes.html#version_3_38_0">changes.html#version_3_38_0</a> + <a href="releaselog/3_38_0.html">releaselog/3_38_0.html</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> + <a href="rescode.html#notfound">rescode.html#notfound</a> + <a href="vtab.html#colUsed">vtab.html#colUsed</a> + <a href="vtab.html#xfindfunction">vtab.html#xfindfunction</a> +<li>sqlite3_wal_autocheckpoint → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="c3ref/wal_autocheckpoint.html">c3ref/wal_autocheckpoint.html</a> + <a href="c3ref/wal_hook.html">c3ref/wal_hook.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_wal_autocheckpoint">capi3ref.html#sqlite3_wal_autocheckpoint</a> + <a href="capi3ref.html#sqlite3_wal_hook">capi3ref.html#sqlite3_wal_hook</a> + <a href="pragma.html#pragma_wal_autocheckpoint">pragma.html#pragma_wal_autocheckpoint</a> + <a href="wal.html#fast">wal.html#fast</a> + <a href="walformat.html#walidxfmt">walformat.html#walidxfmt</a> +<li>sqlite3_wal_checkpoint → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_wal_checkpoint">pragma.html#pragma_wal_checkpoint</a> + <a href="wal.html#fast">wal.html#fast</a> +<li>sqlite3_wal_checkpoint_v2 → <a href="c3ref/c_checkpoint_full.html">c3ref/c_checkpoint_full.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="c3ref/wal_autocheckpoint.html">c3ref/wal_autocheckpoint.html</a> + <a href="c3ref/wal_checkpoint.html">c3ref/wal_checkpoint.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_CHECKPOINT_FULL">capi3ref.html#SQLITE_CHECKPOINT_FULL</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_wal_autocheckpoint">capi3ref.html#sqlite3_wal_autocheckpoint</a> + <a href="capi3ref.html#sqlite3_wal_checkpoint">capi3ref.html#sqlite3_wal_checkpoint</a> + <a href="changes.html#version_3_7_6">changes.html#version_3_7_6</a> + <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="changes.html#version_3_8_8_2">changes.html#version_3_8_8_2</a> + <a href="pragma.html#pragma_wal_autocheckpoint">pragma.html#pragma_wal_autocheckpoint</a> + <a href="pragma.html#pragma_wal_checkpoint">pragma.html#pragma_wal_checkpoint</a> + <a href="releaselog/3_7_6.html">releaselog/3_7_6.html</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> + <a href="wal.html#fast">wal.html#fast</a> +<li>sqlite3_wal_hook → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/sqlite3.html">c3ref/sqlite3.html</a> + <a href="c3ref/wal_autocheckpoint.html">c3ref/wal_autocheckpoint.html</a> + <a href="c3ref/wal_hook.html">c3ref/wal_hook.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3">capi3ref.html#sqlite3</a> + <a href="capi3ref.html#sqlite3_wal_autocheckpoint">capi3ref.html#sqlite3_wal_autocheckpoint</a> + <a href="capi3ref.html#sqlite3_wal_hook">capi3ref.html#sqlite3_wal_hook</a> + <a href="tclsqlite.html#wal_hook">tclsqlite.html#wal_hook</a> + <a href="wal.html#fast">wal.html#fast</a> +<li>sqlite3_win32_set_directory → <a href="c3ref/c_win32_data_directory_type.html">c3ref/c_win32_data_directory_type.html</a> + <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/win32_set_directory.html">c3ref/win32_set_directory.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_WIN32_DATA_DIRECTORY_TYPE">capi3ref.html#SQLITE_WIN32_DATA_DIRECTORY_TYPE</a> + <a href="capi3ref.html#sqlite3_win32_set_directory">capi3ref.html#sqlite3_win32_set_directory</a> +<li>sqlite3_win32_set_directory16 → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/win32_set_directory.html">c3ref/win32_set_directory.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_win32_set_directory">capi3ref.html#sqlite3_win32_set_directory</a> +<li>sqlite3_win32_set_directory8 → <a href="c3ref/funclist.html">c3ref/funclist.html</a> + <a href="c3ref/win32_set_directory.html">c3ref/win32_set_directory.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_win32_set_directory">capi3ref.html#sqlite3_win32_set_directory</a> +<li>sqlite3changegroup_add → <a href="session.html">session.html</a> + <a href="session.html#sqlite3_changegroup">session.html#sqlite3_changegroup</a> + <a href="session/changegroup.html">session/changegroup.html</a> + <a href="session/funclist.html">session/funclist.html</a> +<li>sqlite3changegroup_add_strm → <a href="session.html">session.html</a> + <a href="session/funclist.html">session/funclist.html</a> +<li>sqlite3changegroup_delete → <a href="session.html">session.html</a> + <a href="session.html#sqlite3_changegroup">session.html#sqlite3_changegroup</a> + <a href="session/changegroup.html">session/changegroup.html</a> + <a href="session/funclist.html">session/funclist.html</a> +<li>sqlite3changegroup_new → <a href="session.html">session.html</a> + <a href="session.html#sqlite3_changegroup">session.html#sqlite3_changegroup</a> + <a href="session/changegroup.html">session/changegroup.html</a> + <a href="session/funclist.html">session/funclist.html</a> +<li>sqlite3changegroup_output → <a href="session.html">session.html</a> + <a href="session.html#sqlite3_changegroup">session.html#sqlite3_changegroup</a> + <a href="session/changegroup.html">session/changegroup.html</a> + <a href="session/funclist.html">session/funclist.html</a> +<li>sqlite3changegroup_schema → <a href="session.html">session.html</a> + <a href="session/funclist.html">session/funclist.html</a> +<li>sqlite3changeset_apply → <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> + <a href="session.html">session.html</a> + <a href="session.html#sqlite3changegroup_add_strm">session.html#sqlite3changegroup_add_strm</a> + <a href="session.html#sqlite3changeset_conflict">session.html#sqlite3changeset_conflict</a> + <a href="session.html#sqlite3changeset_finalize">session.html#sqlite3changeset_finalize</a> + <a href="session.html#sqlite3changeset_new">session.html#sqlite3changeset_new</a> + <a href="session.html#sqlite3changeset_next">session.html#sqlite3changeset_next</a> + <a href="session.html#sqlite3changeset_old">session.html#sqlite3changeset_old</a> + <a href="session.html#sqlite3changeset_op">session.html#sqlite3changeset_op</a> + <a href="session.html#sqlite3session_changeset">session.html#sqlite3session_changeset</a> + <a href="session/funclist.html">session/funclist.html</a> + <a href="session/sqlite3changegroup_add_strm.html">session/sqlite3changegroup_add_strm.html</a> + <a href="session/sqlite3changeset_conflict.html">session/sqlite3changeset_conflict.html</a> + <a href="session/sqlite3changeset_finalize.html">session/sqlite3changeset_finalize.html</a> + <a href="session/sqlite3changeset_new.html">session/sqlite3changeset_new.html</a> + <a href="session/sqlite3changeset_next.html">session/sqlite3changeset_next.html</a> + <a href="session/sqlite3changeset_old.html">session/sqlite3changeset_old.html</a> + <a href="session/sqlite3changeset_op.html">session/sqlite3changeset_op.html</a> + <a href="session/sqlite3session_changeset.html">session/sqlite3session_changeset.html</a> + <a href="sessionintro.html#changeset">sessionintro.html#changeset</a> +<li>sqlite3changeset_apply_v2 → <a href="session.html#SQLITE_CHANGESETAPPLY_FKNOACTION">session.html#SQLITE_CHANGESETAPPLY_FKNOACTION</a> + <a href="session.html#sqlite3changegroup_add_strm">session.html#sqlite3changegroup_add_strm</a> + <a href="session/c_changesetapply_fknoaction.html">session/c_changesetapply_fknoaction.html</a> + <a href="session/sqlite3changegroup_add_strm.html">session/sqlite3changegroup_add_strm.html</a> +<li>sqlite3changeset_apply_v2_strm → <a href="session.html#SQLITE_CHANGESETAPPLY_FKNOACTION">session.html#SQLITE_CHANGESETAPPLY_FKNOACTION</a> + <a href="session/c_changesetapply_fknoaction.html">session/c_changesetapply_fknoaction.html</a> +<li>sqlite3changeset_concat → <a href="session.html">session.html</a> + <a href="session.html#sqlite3changegroup_add_strm">session.html#sqlite3changegroup_add_strm</a> + <a href="session.html#sqlite3changeset_start">session.html#sqlite3changeset_start</a> + <a href="session/funclist.html">session/funclist.html</a> + <a href="session/sqlite3changegroup_add_strm.html">session/sqlite3changegroup_add_strm.html</a> + <a href="session/sqlite3changeset_start.html">session/sqlite3changeset_start.html</a> + <a href="sessionintro.html#changeset">sessionintro.html#changeset</a> +<li>sqlite3changeset_conflict → <a href="session.html">session.html</a> + <a href="session.html#sqlite3_changeset_iter">session.html#sqlite3_changeset_iter</a> + <a href="session/changeset_iter.html">session/changeset_iter.html</a> + <a href="session/funclist.html">session/funclist.html</a> +<li>sqlite3changeset_finalize → <a href="session.html">session.html</a> + <a href="session.html#sqlite3_changeset_iter">session.html#sqlite3_changeset_iter</a> + <a href="session.html#sqlite3changeset_start">session.html#sqlite3changeset_start</a> + <a href="session/changeset_iter.html">session/changeset_iter.html</a> + <a href="session/funclist.html">session/funclist.html</a> + <a href="session/sqlite3changeset_start.html">session/sqlite3changeset_start.html</a> + <a href="sessionintro.html#changeset">sessionintro.html#changeset</a> +<li>sqlite3changeset_fk_conflicts → <a href="session.html">session.html</a> + <a href="session.html#sqlite3_changeset_iter">session.html#sqlite3_changeset_iter</a> + <a href="session/changeset_iter.html">session/changeset_iter.html</a> + <a href="session/funclist.html">session/funclist.html</a> +<li>sqlite3changeset_invert → <a href="session.html">session.html</a> + <a href="session.html#sqlite3changegroup_add_strm">session.html#sqlite3changegroup_add_strm</a> + <a href="session.html#sqlite3changeset_start">session.html#sqlite3changeset_start</a> + <a href="session/funclist.html">session/funclist.html</a> + <a href="session/sqlite3changegroup_add_strm.html">session/sqlite3changegroup_add_strm.html</a> + <a href="session/sqlite3changeset_start.html">session/sqlite3changeset_start.html</a> + <a href="sessionintro.html#changeset">sessionintro.html#changeset</a> +<li>sqlite3changeset_new → <a href="session.html">session.html</a> + <a href="session.html#sqlite3_changeset_iter">session.html#sqlite3_changeset_iter</a> + <a href="session.html#sqlite3changeset_finalize">session.html#sqlite3changeset_finalize</a> + <a href="session.html#sqlite3changeset_start">session.html#sqlite3changeset_start</a> + <a href="session/changeset_iter.html">session/changeset_iter.html</a> + <a href="session/funclist.html">session/funclist.html</a> + <a href="session/sqlite3changeset_finalize.html">session/sqlite3changeset_finalize.html</a> + <a href="session/sqlite3changeset_start.html">session/sqlite3changeset_start.html</a> + <a href="sessionintro.html#changeset">sessionintro.html#changeset</a> +<li>sqlite3changeset_next → <a href="session.html">session.html</a> + <a href="session.html#sqlite3_changeset_iter">session.html#sqlite3_changeset_iter</a> + <a href="session.html#sqlite3changeset_finalize">session.html#sqlite3changeset_finalize</a> + <a href="session.html#sqlite3changeset_new">session.html#sqlite3changeset_new</a> + <a href="session.html#sqlite3changeset_old">session.html#sqlite3changeset_old</a> + <a href="session.html#sqlite3changeset_op">session.html#sqlite3changeset_op</a> + <a href="session.html#sqlite3changeset_start">session.html#sqlite3changeset_start</a> + <a href="session/changeset_iter.html">session/changeset_iter.html</a> + <a href="session/funclist.html">session/funclist.html</a> + <a href="session/sqlite3changeset_finalize.html">session/sqlite3changeset_finalize.html</a> + <a href="session/sqlite3changeset_new.html">session/sqlite3changeset_new.html</a> + <a href="session/sqlite3changeset_old.html">session/sqlite3changeset_old.html</a> + <a href="session/sqlite3changeset_op.html">session/sqlite3changeset_op.html</a> + <a href="session/sqlite3changeset_start.html">session/sqlite3changeset_start.html</a> + <a href="sessionintro.html#changeset">sessionintro.html#changeset</a> +<li>sqlite3changeset_old → <a href="session.html">session.html</a> + <a href="session.html#sqlite3_changeset_iter">session.html#sqlite3_changeset_iter</a> + <a href="session.html#sqlite3changeset_start">session.html#sqlite3changeset_start</a> + <a href="session/changeset_iter.html">session/changeset_iter.html</a> + <a href="session/funclist.html">session/funclist.html</a> + <a href="session/sqlite3changeset_start.html">session/sqlite3changeset_start.html</a> + <a href="sessionintro.html#changeset">sessionintro.html#changeset</a> +<li>sqlite3changeset_op → <a href="session.html">session.html</a> + <a href="session.html#sqlite3_changeset_iter">session.html#sqlite3_changeset_iter</a> + <a href="session.html#sqlite3changeset_start">session.html#sqlite3changeset_start</a> + <a href="session/changeset_iter.html">session/changeset_iter.html</a> + <a href="session/funclist.html">session/funclist.html</a> + <a href="session/sqlite3changeset_start.html">session/sqlite3changeset_start.html</a> + <a href="sessionintro.html#changeset">sessionintro.html#changeset</a> +<li>sqlite3changeset_pk → <a href="session.html">session.html</a> + <a href="session.html#sqlite3_changeset_iter">session.html#sqlite3_changeset_iter</a> + <a href="session/changeset_iter.html">session/changeset_iter.html</a> + <a href="session/funclist.html">session/funclist.html</a> +<li>sqlite3changeset_start → <a href="session.html">session.html</a> + <a href="session.html#sqlite3_changeset_iter">session.html#sqlite3_changeset_iter</a> + <a href="session.html#sqlite3changegroup_add_strm">session.html#sqlite3changegroup_add_strm</a> + <a href="session.html#sqlite3changeset_finalize">session.html#sqlite3changeset_finalize</a> + <a href="session.html#sqlite3changeset_new">session.html#sqlite3changeset_new</a> + <a href="session.html#sqlite3changeset_next">session.html#sqlite3changeset_next</a> + <a href="session.html#sqlite3changeset_old">session.html#sqlite3changeset_old</a> + <a href="session.html#sqlite3changeset_op">session.html#sqlite3changeset_op</a> + <a href="session.html#sqlite3session_changeset">session.html#sqlite3session_changeset</a> + <a href="session/changeset_iter.html">session/changeset_iter.html</a> + <a href="session/funclist.html">session/funclist.html</a> + <a href="session/sqlite3changegroup_add_strm.html">session/sqlite3changegroup_add_strm.html</a> + <a href="session/sqlite3changeset_finalize.html">session/sqlite3changeset_finalize.html</a> + <a href="session/sqlite3changeset_new.html">session/sqlite3changeset_new.html</a> + <a href="session/sqlite3changeset_next.html">session/sqlite3changeset_next.html</a> + <a href="session/sqlite3changeset_old.html">session/sqlite3changeset_old.html</a> + <a href="session/sqlite3changeset_op.html">session/sqlite3changeset_op.html</a> + <a href="session/sqlite3session_changeset.html">session/sqlite3session_changeset.html</a> + <a href="sessionintro.html#changeset">sessionintro.html#changeset</a> +<li>sqlite3changeset_start_v2 → <a href="changes.html#version_3_26_0">changes.html#version_3_26_0</a> + <a href="releaselog/3_26_0.html">releaselog/3_26_0.html</a> + <a href="session.html#SQLITE_CHANGESETSTART_INVERT">session.html#SQLITE_CHANGESETSTART_INVERT</a> + <a href="session.html#sqlite3_changeset_iter">session.html#sqlite3_changeset_iter</a> + <a href="session/c_changesetstart_invert.html">session/c_changesetstart_invert.html</a> + <a href="session/changeset_iter.html">session/changeset_iter.html</a> +<li>sqlite3changeset_start_v2_strm → <a href="session.html#SQLITE_CHANGESETSTART_INVERT">session.html#SQLITE_CHANGESETSTART_INVERT</a> + <a href="session/c_changesetstart_invert.html">session/c_changesetstart_invert.html</a> +<li>sqlite3changeset_upgrade → <a href="session.html">session.html</a> + <a href="session/funclist.html">session/funclist.html</a> +<li>sqlite3rebaser_configure → <a href="session.html">session.html</a> + <a href="session/funclist.html">session/funclist.html</a> +<li>sqlite3rebaser_create → <a href="session.html">session.html</a> + <a href="session/funclist.html">session/funclist.html</a> +<li>sqlite3rebaser_delete → <a href="session.html">session.html</a> + <a href="session/funclist.html">session/funclist.html</a> +<li>sqlite3rebaser_rebase → <a href="session.html">session.html</a> + <a href="session/funclist.html">session/funclist.html</a> +<li>sqlite3session_attach → <a href="session.html">session.html</a> + <a href="session.html#sqlite3_session">session.html#sqlite3_session</a> + <a href="session.html#sqlite3session_diff">session.html#sqlite3session_diff</a> + <a href="session/funclist.html">session/funclist.html</a> + <a href="session/session.html">session/session.html</a> + <a href="session/sqlite3session_diff.html">session/sqlite3session_diff.html</a> + <a href="sessionintro.html#changeset">sessionintro.html#changeset</a> +<li>sqlite3session_changeset → <a href="session.html">session.html</a> + <a href="session.html#sqlite3_session">session.html#sqlite3_session</a> + <a href="session.html#sqlite3changegroup_add_strm">session.html#sqlite3changegroup_add_strm</a> + <a href="session.html#sqlite3changeset_start">session.html#sqlite3changeset_start</a> + <a href="session.html#sqlite3session_attach">session.html#sqlite3session_attach</a> + <a href="session.html#sqlite3session_diff">session.html#sqlite3session_diff</a> + <a href="session.html#sqlite3session_enable">session.html#sqlite3session_enable</a> + <a href="session.html#sqlite3session_isempty">session.html#sqlite3session_isempty</a> + <a href="session/funclist.html">session/funclist.html</a> + <a href="session/session.html">session/session.html</a> + <a href="session/sqlite3changegroup_add_strm.html">session/sqlite3changegroup_add_strm.html</a> + <a href="session/sqlite3changeset_start.html">session/sqlite3changeset_start.html</a> + <a href="session/sqlite3session_attach.html">session/sqlite3session_attach.html</a> + <a href="session/sqlite3session_diff.html">session/sqlite3session_diff.html</a> + <a href="session/sqlite3session_enable.html">session/sqlite3session_enable.html</a> + <a href="session/sqlite3session_isempty.html">session/sqlite3session_isempty.html</a> + <a href="sessionintro.html#changeset">sessionintro.html#changeset</a> +<li>sqlite3session_changeset_size → <a href="session.html">session.html</a> + <a href="session.html#SQLITE_SESSION_OBJCONFIG_ROWID">session.html#SQLITE_SESSION_OBJCONFIG_ROWID</a> + <a href="session.html#sqlite3_session">session.html#sqlite3_session</a> + <a href="session/c_session_objconfig_rowid.html">session/c_session_objconfig_rowid.html</a> + <a href="session/funclist.html">session/funclist.html</a> + <a href="session/session.html">session/session.html</a> +<li>sqlite3session_config → <a href="session.html">session.html</a> + <a href="session/funclist.html">session/funclist.html</a> +<li>sqlite3session_create → <a href="session.html">session.html</a> + <a href="session.html#sqlite3_session">session.html#sqlite3_session</a> + <a href="session.html#sqlite3session_delete">session.html#sqlite3session_delete</a> + <a href="session/funclist.html">session/funclist.html</a> + <a href="session/session.html">session/session.html</a> + <a href="session/sqlite3session_delete.html">session/sqlite3session_delete.html</a> + <a href="sessionintro.html#changeset">sessionintro.html#changeset</a> +<li>sqlite3session_delete → <a href="session.html">session.html</a> + <a href="session.html#sqlite3_session">session.html#sqlite3_session</a> + <a href="session.html#sqlite3session_create">session.html#sqlite3session_create</a> + <a href="session/funclist.html">session/funclist.html</a> + <a href="session/session.html">session/session.html</a> + <a href="session/sqlite3session_create.html">session/sqlite3session_create.html</a> + <a href="sessionintro.html#changeset">sessionintro.html#changeset</a> +<li>sqlite3session_diff → <a href="session.html">session.html</a> + <a href="session.html#sqlite3_session">session.html#sqlite3_session</a> + <a href="session/funclist.html">session/funclist.html</a> + <a href="session/session.html">session/session.html</a> +<li>sqlite3session_enable → <a href="session.html">session.html</a> + <a href="session.html#sqlite3_session">session.html#sqlite3_session</a> + <a href="session.html#sqlite3session_changeset">session.html#sqlite3session_changeset</a> + <a href="session/funclist.html">session/funclist.html</a> + <a href="session/session.html">session/session.html</a> + <a href="session/sqlite3session_changeset.html">session/sqlite3session_changeset.html</a> +<li>sqlite3session_indirect → <a href="session.html">session.html</a> + <a href="session.html#sqlite3_session">session.html#sqlite3_session</a> + <a href="session.html#sqlite3changeset_op">session.html#sqlite3changeset_op</a> + <a href="session/funclist.html">session/funclist.html</a> + <a href="session/session.html">session/session.html</a> + <a href="session/sqlite3changeset_op.html">session/sqlite3changeset_op.html</a> +<li>sqlite3session_isempty → <a href="session.html">session.html</a> + <a href="session/funclist.html">session/funclist.html</a> +<li>sqlite3session_memory_used → <a href="session.html">session.html</a> + <a href="session/funclist.html">session/funclist.html</a> +<li>sqlite3session_object_config → <a href="session.html">session.html</a> + <a href="session.html#sqlite3_session">session.html#sqlite3_session</a> + <a href="session/funclist.html">session/funclist.html</a> + <a href="session/session.html">session/session.html</a> +<li>sqlite3session_patchset → <a href="session.html">session.html</a> + <a href="session.html#sqlite3_session">session.html#sqlite3_session</a> + <a href="session.html#sqlite3changegroup_add_strm">session.html#sqlite3changegroup_add_strm</a> + <a href="session/funclist.html">session/funclist.html</a> + <a href="session/session.html">session/session.html</a> + <a href="session/sqlite3changegroup_add_strm.html">session/sqlite3changegroup_add_strm.html</a> + <a href="sessionintro.html#changeset">sessionintro.html#changeset</a> +<li>sqlite3session_table_filter → <a href="session.html">session.html</a> + <a href="session.html#sqlite3_session">session.html#sqlite3_session</a> + <a href="session/funclist.html">session/funclist.html</a> + <a href="session/session.html">session/session.html</a> +<li>SQLITE_4_BYTE_ALIGNED_MALLOC → <a href="c3ref/free.html">c3ref/free.html</a> + <a href="capi3ref.html#sqlite3_free">capi3ref.html#sqlite3_free</a> +<li>SQLITE_ABORT → <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> + <a href="c3ref/blob_read.html">c3ref/blob_read.html</a> + <a href="c3ref/blob_write.html">c3ref/blob_write.html</a> + <a href="c3ref/c_fail.html">c3ref/c_fail.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/vtab_on_conflict.html">c3ref/vtab_on_conflict.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_FAIL">capi3ref.html#SQLITE_FAIL</a> + <a href="capi3ref.html#sqlite3_blob_open">capi3ref.html#sqlite3_blob_open</a> + <a href="capi3ref.html#sqlite3_blob_read">capi3ref.html#sqlite3_blob_read</a> + <a href="capi3ref.html#sqlite3_blob_write">capi3ref.html#sqlite3_blob_write</a> + <a href="capi3ref.html#sqlite3_vtab_on_conflict">capi3ref.html#sqlite3_vtab_on_conflict</a> + <a href="changes.html#version_3_8_7_2">changes.html#version_3_8_7_2</a> + <a href="lang_transaction.html#immediate">lang_transaction.html#immediate</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_8_7_2.html">releaselog/3_8_7_2.html</a> + <a href="rescode.html#abort_rollback">rescode.html#abort_rollback</a> + <a href="rescode.html#interrupt">rescode.html#interrupt</a> + <a href="rescode.html#pve">rescode.html#pve</a> +<li>SQLITE_ABORT_ROLLBACK → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_8_7_2">changes.html#version_3_8_7_2</a> + <a href="lang_transaction.html#immediate">lang_transaction.html#immediate</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_8_7_2.html">releaselog/3_8_7_2.html</a> + <a href="rescode.html#abort">rescode.html#abort</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_ACCESS_EXISTS → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/vfs.html#sqlite3vfsxaccess">c3ref/vfs.html#sqlite3vfsxaccess</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3vfsxaccess">capi3ref.html#sqlite3vfsxaccess</a> +<li>SQLITE_ACCESS_READ → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/vfs.html#sqlite3vfsxaccess">c3ref/vfs.html#sqlite3vfsxaccess</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3vfsxaccess">capi3ref.html#sqlite3vfsxaccess</a> +<li>SQLITE_ACCESS_READWRITE → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/vfs.html#sqlite3vfsxaccess">c3ref/vfs.html#sqlite3vfsxaccess</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3vfsxaccess">capi3ref.html#sqlite3vfsxaccess</a> +<li>SQLITE_ALLOW_COVERING_INDEX_SCAN → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigcoveringindexscan">c3ref/c_config_covering_index_scan.html#sqliteconfigcoveringindexscan</a> + <a href="capi3ref.html#sqliteconfigcoveringindexscan">capi3ref.html#sqliteconfigcoveringindexscan</a> +<li>SQLITE_ALLOW_URI_AUTHORITY → <a href="changes.html#version_3_8_0">changes.html#version_3_8_0</a> + <a href="releaselog/3_8_0.html">releaselog/3_8_0.html</a> + <a href="releaselog/3_8_0_1.html">releaselog/3_8_0_1.html</a> + <a href="releaselog/3_8_0_2.html">releaselog/3_8_0_2.html</a> + <a href="uri.html">uri.html</a> +<li>SQLITE_ALTER_TABLE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_ANALYZE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_ANY → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_APICALL → <a href="compile.html#apicall">compile.html#apicall</a> + <a href="compile.html#cdecl">compile.html#cdecl</a> + <a href="compile.html#sysapi">compile.html#sysapi</a> + <a href="compile.html#tclapi">compile.html#tclapi</a> +<li>SQLITE_ATTACH → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_AUTH → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#auth_user">rescode.html#auth_user</a> + <a href="rescode.html#pve">rescode.html#pve</a> +<li>SQLITE_AUTH_USER → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_BLOB → <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_value_blob">capi3ref.html#sqlite3_value_blob</a> +<li>SQLITE_BUSY → <a href="34to35.html">34to35.html</a> + <a href="backup.html">backup.html</a> + <a href="c3ref/backup_finish.html#sqlite3backupfinish">c3ref/backup_finish.html#sqlite3backupfinish</a> + <a href="c3ref/backup_finish.html#sqlite3backupstep">c3ref/backup_finish.html#sqlite3backupstep</a> + <a href="c3ref/busy_handler.html">c3ref/busy_handler.html</a> + <a href="c3ref/busy_timeout.html">c3ref/busy_timeout.html</a> + <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfiglookaside">c3ref/c_dbconfig_defensive.html#sqlitedbconfiglookaside</a> + <a href="c3ref/close.html">c3ref/close.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/get_autocommit.html">c3ref/get_autocommit.html</a> + <a href="c3ref/step.html">c3ref/step.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_busy_handler">capi3ref.html#sqlite3_busy_handler</a> + <a href="capi3ref.html#sqlite3_busy_timeout">capi3ref.html#sqlite3_busy_timeout</a> + <a href="capi3ref.html#sqlite3_close">capi3ref.html#sqlite3_close</a> + <a href="capi3ref.html#sqlite3_get_autocommit">capi3ref.html#sqlite3_get_autocommit</a> + <a href="capi3ref.html#sqlite3_step">capi3ref.html#sqlite3_step</a> + <a href="capi3ref.html#sqlite3backupfinish">capi3ref.html#sqlite3backupfinish</a> + <a href="capi3ref.html#sqlite3backupstep">capi3ref.html#sqlite3backupstep</a> + <a href="capi3ref.html#sqlitedbconfiglookaside">capi3ref.html#sqlitedbconfiglookaside</a> + <a href="changes.html#version_3_4_0">changes.html#version_3_4_0</a> + <a href="changes.html#version_3_6_5">changes.html#version_3_6_5</a> + <a href="compile.html#omit_autoreset">compile.html#omit_autoreset</a> + <a href="isolation.html">isolation.html</a> + <a href="lang_transaction.html">lang_transaction.html</a> + <a href="lang_transaction.html#immediate">lang_transaction.html#immediate</a> + <a href="news.html">news.html</a> + <a href="pragma.html#pragma_wal_checkpoint">pragma.html#pragma_wal_checkpoint</a> + <a href="releaselog/3_4_0.html">releaselog/3_4_0.html</a> + <a href="releaselog/3_6_5.html">releaselog/3_6_5.html</a> + <a href="rescode.html#busy_recovery">rescode.html#busy_recovery</a> + <a href="rescode.html#busy_snapshot">rescode.html#busy_snapshot</a> + <a href="rescode.html#locked">rescode.html#locked</a> + <a href="rescode.html#pve">rescode.html#pve</a> + <a href="wal.html#busy">wal.html#busy</a> +<li>SQLITE_BUSY_RECOVERY → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#busy">rescode.html#busy</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_BUSY_SNAPSHOT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_8_0">changes.html#version_3_8_0</a> + <a href="isolation.html">isolation.html</a> + <a href="releaselog/3_8_0.html">releaselog/3_8_0.html</a> + <a href="releaselog/3_8_0_1.html">releaselog/3_8_0_1.html</a> + <a href="releaselog/3_8_0_2.html">releaselog/3_8_0_2.html</a> + <a href="rescode.html#busy">rescode.html#busy</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_BUSY_TIMEOUT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_CALLBACK → <a href="compile.html#tclapi">compile.html#tclapi</a> +<li>SQLITE_CANTOPEN → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/deserialize.html">c3ref/deserialize.html</a> + <a href="c3ref/system_errno.html">c3ref/system_errno.html</a> + <a href="c3ref/vfs.html#sqlite3vfsxaccess">c3ref/vfs.html#sqlite3vfsxaccess</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_deserialize">capi3ref.html#sqlite3_deserialize</a> + <a href="capi3ref.html#sqlite3_system_errno">capi3ref.html#sqlite3_system_errno</a> + <a href="capi3ref.html#sqlite3vfsxaccess">capi3ref.html#sqlite3vfsxaccess</a> + <a href="rescode.html#cantopen_convpath">rescode.html#cantopen_convpath</a> + <a href="rescode.html#cantopen_fullpath">rescode.html#cantopen_fullpath</a> + <a href="rescode.html#cantopen_isdir">rescode.html#cantopen_isdir</a> + <a href="rescode.html#pve">rescode.html#pve</a> +<li>SQLITE_CANTOPEN_CONVPATH → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> + <a href="rescode.html#ioerr_convpath">rescode.html#ioerr_convpath</a> +<li>SQLITE_CANTOPEN_DIRTYWAL → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_CANTOPEN_FULLPATH → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_CANTOPEN_ISDIR → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_CANTOPEN_NOTEMPDIR → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_CANTOPEN_SYMLINK → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_CASE_SENSITIVE_LIKE → <a href="optoverview.html#like_opt">optoverview.html#like_opt</a> +<li>SQLITE_CDECL → <a href="compile.html#apicall">compile.html#apicall</a> + <a href="compile.html#cdecl">compile.html#cdecl</a> + <a href="compile.html#sysapi">compile.html#sysapi</a> + <a href="compile.html#tclapi">compile.html#tclapi</a> +<li>SQLITE_CHANGESET_ABORT → <a href="session.html">session.html</a> + <a href="session.html#sqlite3changeset_apply">session.html#sqlite3changeset_apply</a> + <a href="session/constlist.html">session/constlist.html</a> + <a href="session/sqlite3changeset_apply.html">session/sqlite3changeset_apply.html</a> +<li>SQLITE_CHANGESET_CONFLICT → <a href="session.html">session.html</a> + <a href="session.html#sqlite3changeset_apply">session.html#sqlite3changeset_apply</a> + <a href="session.html#sqlite3changeset_conflict">session.html#sqlite3changeset_conflict</a> + <a href="session/constlist.html">session/constlist.html</a> + <a href="session/sqlite3changeset_apply.html">session/sqlite3changeset_apply.html</a> + <a href="session/sqlite3changeset_conflict.html">session/sqlite3changeset_conflict.html</a> +<li>SQLITE_CHANGESET_CONSTRAINT → <a href="session.html#sqlite3changeset_apply">session.html#sqlite3changeset_apply</a> + <a href="session/sqlite3changeset_apply.html">session/sqlite3changeset_apply.html</a> +<li>SQLITE_CHANGESET_DATA → <a href="session.html#sqlite3changeset_apply">session.html#sqlite3changeset_apply</a> + <a href="session.html#sqlite3changeset_conflict">session.html#sqlite3changeset_conflict</a> + <a href="session/sqlite3changeset_apply.html">session/sqlite3changeset_apply.html</a> + <a href="session/sqlite3changeset_conflict.html">session/sqlite3changeset_conflict.html</a> +<li>SQLITE_CHANGESET_NOTFOUND → <a href="session.html#sqlite3changeset_apply">session.html#sqlite3changeset_apply</a> + <a href="session/sqlite3changeset_apply.html">session/sqlite3changeset_apply.html</a> +<li>SQLITE_CHANGESET_OMIT → <a href="session.html#sqlite3changeset_apply">session.html#sqlite3changeset_apply</a> + <a href="session/sqlite3changeset_apply.html">session/sqlite3changeset_apply.html</a> +<li>SQLITE_CHANGESET_REPLACE → <a href="session.html#sqlite3changeset_apply">session.html#sqlite3changeset_apply</a> + <a href="session/sqlite3changeset_apply.html">session/sqlite3changeset_apply.html</a> +<li>SQLITE_CHANGESETAPPLY_FKNOACTION → <a href="session.html">session.html</a> + <a href="session/constlist.html">session/constlist.html</a> +<li>SQLITE_CHANGESETAPPLY_INVERT → <a href="changes.html#version_3_26_0">changes.html#version_3_26_0</a> + <a href="releaselog/3_26_0.html">releaselog/3_26_0.html</a> +<li>SQLITE_CHANGESETAPPLY_NOSAVEPOINT → <a href="session.html#sqlite3changeset_apply">session.html#sqlite3changeset_apply</a> + <a href="session/sqlite3changeset_apply.html">session/sqlite3changeset_apply.html</a> +<li>SQLITE_CHANGESETSTART_INVERT → <a href="changes.html#version_3_26_0">changes.html#version_3_26_0</a> + <a href="releaselog/3_26_0.html">releaselog/3_26_0.html</a> + <a href="session.html">session.html</a> + <a href="session.html#sqlite3changeset_start">session.html#sqlite3changeset_start</a> + <a href="session/constlist.html">session/constlist.html</a> + <a href="session/sqlite3changeset_start.html">session/sqlite3changeset_start.html</a> +<li>SQLITE_CHECKPOINT_FULL → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_CHECKPOINT_PASSIVE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/wal_checkpoint.html">c3ref/wal_checkpoint.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_wal_checkpoint">capi3ref.html#sqlite3_wal_checkpoint</a> + <a href="pragma.html#pragma_wal_checkpoint">pragma.html#pragma_wal_checkpoint</a> +<li>SQLITE_CHECKPOINT_RESTART → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="wal.html#bigwal">wal.html#bigwal</a> +<li>SQLITE_CHECKPOINT_TRUNCATE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> + <a href="wal.html#bigwal">wal.html#bigwal</a> +<li>sqlite_compileoption_get → <a href="c3ref/compileoption_get.html">c3ref/compileoption_get.html</a> + <a href="capi3ref.html#sqlite3_compileoption_get">capi3ref.html#sqlite3_compileoption_get</a> + <a href="changes.html#version_3_6_23">changes.html#version_3_6_23</a> + <a href="compile.html#omit_compileoption_diags">compile.html#omit_compileoption_diags</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_compile_options">pragma.html#pragma_compile_options</a> + <a href="releaselog/3_6_23.html">releaselog/3_6_23.html</a> +<li>sqlite_compileoption_used → <a href="c3ref/compileoption_get.html">c3ref/compileoption_get.html</a> + <a href="capi3ref.html#sqlite3_compileoption_get">capi3ref.html#sqlite3_compileoption_get</a> + <a href="changes.html#version_3_6_23">changes.html#version_3_6_23</a> + <a href="compile.html#omit_compileoption_diags">compile.html#omit_compileoption_diags</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_6_23.html">releaselog/3_6_23.html</a> +<li>SQLITE_CONFIG_COVERING_INDEX_SCAN → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="compile.html#allow_covering_index_scan">compile.html#allow_covering_index_scan</a> +<li>SQLITE_CONFIG_GETMALLOC → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/mem_methods.html">c3ref/mem_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_mem_methods">capi3ref.html#sqlite3_mem_methods</a> + <a href="malloc.html#memsysx">malloc.html#memsysx</a> +<li>SQLITE_CONFIG_GETMUTEX → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/mutex_methods.html">c3ref/mutex_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_mutex_methods">capi3ref.html#sqlite3_mutex_methods</a> +<li>SQLITE_CONFIG_GETPCACHE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_7_10">changes.html#version_3_7_10</a> + <a href="releaselog/3_7_10.html">releaselog/3_7_10.html</a> +<li>SQLITE_CONFIG_GETPCACHE2 → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_7_10">changes.html#version_3_7_10</a> + <a href="releaselog/3_7_10.html">releaselog/3_7_10.html</a> +<li>SQLITE_CONFIG_HEAP → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="compile.html#enable_memsys3">compile.html#enable_memsys3</a> + <a href="compile.html#enable_memsys5">compile.html#enable_memsys5</a> + <a href="compile.html#zero_malloc">compile.html#zero_malloc</a> + <a href="malloc.html#memsys5">malloc.html#memsys5</a> + <a href="malloc.html#memsysx">malloc.html#memsysx</a> + <a href="malloc.html#nofrag">malloc.html#nofrag</a> + <a href="news.html">news.html</a> + <a href="security.html">security.html</a> +<li>SQLITE_CONFIG_LOG → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/log.html">c3ref/log.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_log">capi3ref.html#sqlite3_log</a> + <a href="changes.html#version_3_42_0">changes.html#version_3_42_0</a> + <a href="changes.html#version_3_6_23">changes.html#version_3_6_23</a> + <a href="changes.html#version_3_8_0">changes.html#version_3_8_0</a> + <a href="errlog.html">errlog.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_42_0.html">releaselog/3_42_0.html</a> + <a href="releaselog/3_6_23.html">releaselog/3_6_23.html</a> + <a href="releaselog/3_8_0.html">releaselog/3_8_0.html</a> + <a href="releaselog/3_8_0_1.html">releaselog/3_8_0_1.html</a> + <a href="releaselog/3_8_0_2.html">releaselog/3_8_0_2.html</a> +<li>SQLITE_CONFIG_LOOKASIDE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_6_1">changes.html#version_3_6_1</a> + <a href="compile.html#default_lookaside">compile.html#default_lookaside</a> + <a href="debugging.html">debugging.html</a> + <a href="malloc.html#lookaside">malloc.html#lookaside</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_6_1.html">releaselog/3_6_1.html</a> +<li>SQLITE_CONFIG_MALLOC → <a href="35to36.html">35to36.html</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigheap">c3ref/c_config_covering_index_scan.html#sqliteconfigheap</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/mem_methods.html">c3ref/mem_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_mem_methods">capi3ref.html#sqlite3_mem_methods</a> + <a href="capi3ref.html#sqliteconfigheap">capi3ref.html#sqliteconfigheap</a> + <a href="compile.html#malloc_usable_size">compile.html#malloc_usable_size</a> + <a href="compile.html#zero_malloc">compile.html#zero_malloc</a> + <a href="malloc.html#memsysx">malloc.html#memsysx</a> + <a href="testing.html#oomtesting">testing.html#oomtesting</a> +<li>SQLITE_CONFIG_MEMDB_MAXSIZE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="compile.html#memdb_default_maxsize">compile.html#memdb_default_maxsize</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> +<li>SQLITE_CONFIG_MEMSTATUS → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/hard_heap_limit64.html">c3ref/hard_heap_limit64.html</a> + <a href="c3ref/mem_methods.html">c3ref/mem_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_hard_heap_limit64">capi3ref.html#sqlite3_hard_heap_limit64</a> + <a href="capi3ref.html#sqlite3_mem_methods">capi3ref.html#sqlite3_mem_methods</a> + <a href="compile.html#default_memstatus">compile.html#default_memstatus</a> + <a href="compile.html#max_memory">compile.html#max_memory</a> + <a href="custombuild.html">custombuild.html</a> + <a href="malloc.html#memstatus">malloc.html#memstatus</a> + <a href="malloc.html#memsysx">malloc.html#memsysx</a> +<li>SQLITE_CONFIG_MMAP_SIZE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="compile.html#default_mmap_size">compile.html#default_mmap_size</a> + <a href="compile.html#max_mmap_size">compile.html#max_mmap_size</a> + <a href="mmap.html">mmap.html</a> + <a href="pragma.html#pragma_mmap_size">pragma.html#pragma_mmap_size</a> +<li>SQLITE_CONFIG_MULTITHREAD → <a href="35to36.html">35to36.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/threadsafe.html">c3ref/threadsafe.html</a> + <a href="c3ref/value.html">c3ref/value.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_threadsafe">capi3ref.html#sqlite3_threadsafe</a> + <a href="capi3ref.html#sqlite3_value">capi3ref.html#sqlite3_value</a> + <a href="compile.html#threadsafe">compile.html#threadsafe</a> + <a href="custombuild.html">custombuild.html</a> + <a href="threadsafe.html">threadsafe.html</a> +<li>SQLITE_CONFIG_MUTEX → <a href="35to36.html">35to36.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/mutex_alloc.html">c3ref/mutex_alloc.html</a> + <a href="c3ref/mutex_methods.html">c3ref/mutex_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_mutex_alloc">capi3ref.html#sqlite3_mutex_alloc</a> + <a href="capi3ref.html#sqlite3_mutex_methods">capi3ref.html#sqlite3_mutex_methods</a> + <a href="changes.html#version_3_6_1">changes.html#version_3_6_1</a> + <a href="releaselog/3_6_0.html">releaselog/3_6_0.html</a> +<li>SQLITE_CONFIG_PAGECACHE → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigheap">c3ref/c_config_covering_index_scan.html#sqliteconfigheap</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigpcachehdrsz">c3ref/c_config_covering_index_scan.html#sqliteconfigpcachehdrsz</a> + <a href="c3ref/c_status_malloc_count.html#sqlitestatusmemoryused">c3ref/c_status_malloc_count.html#sqlitestatusmemoryused</a> + <a href="c3ref/c_status_malloc_count.html#sqlitestatuspagecacheoverflow">c3ref/c_status_malloc_count.html#sqlitestatuspagecacheoverflow</a> + <a href="c3ref/c_status_malloc_count.html#sqlitestatuspagecacheused">c3ref/c_status_malloc_count.html#sqlitestatuspagecacheused</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/hard_heap_limit64.html">c3ref/hard_heap_limit64.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_hard_heap_limit64">capi3ref.html#sqlite3_hard_heap_limit64</a> + <a href="capi3ref.html#sqliteconfigheap">capi3ref.html#sqliteconfigheap</a> + <a href="capi3ref.html#sqliteconfigpcachehdrsz">capi3ref.html#sqliteconfigpcachehdrsz</a> + <a href="capi3ref.html#sqlitestatusmemoryused">capi3ref.html#sqlitestatusmemoryused</a> + <a href="capi3ref.html#sqlitestatuspagecacheoverflow">capi3ref.html#sqlitestatuspagecacheoverflow</a> + <a href="capi3ref.html#sqlitestatuspagecacheused">capi3ref.html#sqlitestatuspagecacheused</a> + <a href="changes.html#version_3_6_1">changes.html#version_3_6_1</a> + <a href="changes.html#version_3_7_3">changes.html#version_3_7_3</a> + <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="compile.html#default_pcache_initsz">compile.html#default_pcache_initsz</a> + <a href="malloc.html#pagecache">malloc.html#pagecache</a> + <a href="releaselog/3_6_1.html">releaselog/3_6_1.html</a> + <a href="releaselog/3_7_3.html">releaselog/3_7_3.html</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> +<li>SQLITE_CONFIG_PCACHE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_7_10">changes.html#version_3_7_10</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_7_10.html">releaselog/3_7_10.html</a> +<li>SQLITE_CONFIG_PCACHE2 → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigpagecache">c3ref/c_config_covering_index_scan.html#sqliteconfigpagecache</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/hard_heap_limit64.html">c3ref/hard_heap_limit64.html</a> + <a href="c3ref/pcache_methods2.html">c3ref/pcache_methods2.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_hard_heap_limit64">capi3ref.html#sqlite3_hard_heap_limit64</a> + <a href="capi3ref.html#sqlite3_pcache_methods2">capi3ref.html#sqlite3_pcache_methods2</a> + <a href="capi3ref.html#sqliteconfigpagecache">capi3ref.html#sqliteconfigpagecache</a> + <a href="changes.html#version_3_7_10">changes.html#version_3_7_10</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_7_10.html">releaselog/3_7_10.html</a> +<li>SQLITE_CONFIG_PCACHE_HDRSZ → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigpagecache">c3ref/c_config_covering_index_scan.html#sqliteconfigpagecache</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqliteconfigpagecache">capi3ref.html#sqliteconfigpagecache</a> + <a href="changes.html#version_3_42_0">changes.html#version_3_42_0</a> + <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="releaselog/3_42_0.html">releaselog/3_42_0.html</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> +<li>SQLITE_CONFIG_PMASZ → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="compile.html#sorter_pmasz">compile.html#sorter_pmasz</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> +<li>SQLITE_CONFIG_SCRATCH → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_6_1">changes.html#version_3_6_1</a> + <a href="releaselog/3_6_1.html">releaselog/3_6_1.html</a> +<li>SQLITE_CONFIG_SERIALIZED → <a href="35to36.html">35to36.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/threadsafe.html">c3ref/threadsafe.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_threadsafe">capi3ref.html#sqlite3_threadsafe</a> + <a href="compile.html#threadsafe">compile.html#threadsafe</a> + <a href="threadsafe.html">threadsafe.html</a> +<li>SQLITE_CONFIG_SINGLETHREAD → <a href="35to36.html">35to36.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/threadsafe.html">c3ref/threadsafe.html</a> + <a href="c3ref/value.html">c3ref/value.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_threadsafe">capi3ref.html#sqlite3_threadsafe</a> + <a href="capi3ref.html#sqlite3_value">capi3ref.html#sqlite3_value</a> + <a href="compile.html#threadsafe">compile.html#threadsafe</a> + <a href="threadsafe.html">threadsafe.html</a> +<li>SQLITE_CONFIG_SMALL_MALLOC → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> +<li>SQLITE_CONFIG_SORTERREF_SIZE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="compile.html#enable_sorter_references">compile.html#enable_sorter_references</a> +<li>SQLITE_CONFIG_SQLLOG → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="compile.html#enable_sqllog">compile.html#enable_sqllog</a> +<li>SQLITE_CONFIG_STMTJRNL_SPILL → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="compile.html#stmtjrnl_spill">compile.html#stmtjrnl_spill</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> +<li>SQLITE_CONFIG_URI → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/open.html#urifilenamesinsqlite3open">c3ref/open.html#urifilenamesinsqlite3open</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#urifilenamesinsqlite3open">capi3ref.html#urifilenamesinsqlite3open</a> + <a href="lang_vacuum.html#vacuuminto">lang_vacuum.html#vacuuminto</a> + <a href="uri.html">uri.html</a> +<li>SQLITE_CONFIG_WIN32_HEAPSIZE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_CONSTRAINT → <a href="c3ref/c_vtab_constraint_support.html#sqlitevtabconstraintsupport">c3ref/c_vtab_constraint_support.html#sqlitevtabconstraintsupport</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlitevtabconstraintsupport">capi3ref.html#sqlitevtabconstraintsupport</a> + <a href="changes.html#version_3_26_0">changes.html#version_3_26_0</a> + <a href="lang_createtrigger.html#raise">lang_createtrigger.html#raise</a> + <a href="releaselog/3_26_0.html">releaselog/3_26_0.html</a> + <a href="rescode.html#constraint_check">rescode.html#constraint_check</a> + <a href="rescode.html#constraint_commithook">rescode.html#constraint_commithook</a> + <a href="rescode.html#constraint_datatype">rescode.html#constraint_datatype</a> + <a href="rescode.html#constraint_foreignkey">rescode.html#constraint_foreignkey</a> + <a href="rescode.html#constraint_notnull">rescode.html#constraint_notnull</a> + <a href="rescode.html#constraint_pinned">rescode.html#constraint_pinned</a> + <a href="rescode.html#constraint_primarykey">rescode.html#constraint_primarykey</a> + <a href="rescode.html#constraint_rowid">rescode.html#constraint_rowid</a> + <a href="rescode.html#constraint_trigger">rescode.html#constraint_trigger</a> + <a href="rescode.html#constraint_unique">rescode.html#constraint_unique</a> + <a href="rescode.html#pve">rescode.html#pve</a> + <a href="vtab.html#obc">vtab.html#obc</a> +<li>SQLITE_CONSTRAINT_CHECK → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_CONSTRAINT_COMMITHOOK → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_CONSTRAINT_DATATYPE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_CONSTRAINT_FOREIGNKEY → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_CONSTRAINT_FUNCTION → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_CONSTRAINT_NOTNULL → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_CONSTRAINT_PINNED → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_CONSTRAINT_PRIMARYKEY → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_CONSTRAINT_ROWID → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_CONSTRAINT_TRIGGER → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_CONSTRAINT_UNIQUE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_CONSTRAINT_VTAB → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_COPY → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_set_authorizer">capi3ref.html#sqlite3_set_authorizer</a> +<li>SQLITE_CORRUPT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/open.html#coreuriqueryparameters">c3ref/open.html#coreuriqueryparameters</a> + <a href="c3ref/step.html">c3ref/step.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#coreuriqueryparameters">capi3ref.html#coreuriqueryparameters</a> + <a href="capi3ref.html#sqlite3_step">capi3ref.html#sqlite3_step</a> + <a href="faq.html#q21">faq.html#q21</a> + <a href="imposter.html">imposter.html</a> + <a href="rescode.html#corrupt_index">rescode.html#corrupt_index</a> + <a href="rescode.html#corrupt_vtab">rescode.html#corrupt_vtab</a> + <a href="rescode.html#pve">rescode.html#pve</a> + <a href="session.html#sqlite3changeset_finalize">session.html#sqlite3changeset_finalize</a> + <a href="session/sqlite3changeset_finalize.html">session/sqlite3changeset_finalize.html</a> + <a href="tclsqlite.html#deserialize">tclsqlite.html#deserialize</a> + <a href="testing.html#tension">testing.html#tension</a> + <a href="uri.html#uriimmutable">uri.html#uriimmutable</a> +<li>SQLITE_CORRUPT_INDEX → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_CORRUPT_SEQUENCE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_CORRUPT_VTAB → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="fts5.html#the_deletemerge_configuration_option">fts5.html#the_deletemerge_configuration_option</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_CREATE_INDEX → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_CREATE_TABLE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_CREATE_TEMP_INDEX → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_CREATE_TEMP_TABLE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_CREATE_TEMP_TRIGGER → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_CREATE_TEMP_VIEW → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_CREATE_TRIGGER → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_CREATE_VIEW → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_CREATE_VTABLE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_DBCONFIG_DEFENSIVE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_26_0">changes.html#version_3_26_0</a> + <a href="changes.html#version_3_39_4">changes.html#version_3_39_4</a> + <a href="changes.html#version_3_40_0">changes.html#version_3_40_0</a> + <a href="changes.html#version_3_44_0">changes.html#version_3_44_0</a> + <a href="dbpage.html">dbpage.html</a> + <a href="pragma.html#pragma_journal_mode">pragma.html#pragma_journal_mode</a> + <a href="pragma.html#pragma_schema_version">pragma.html#pragma_schema_version</a> + <a href="pragma.html#pragma_writable_schema">pragma.html#pragma_writable_schema</a> + <a href="releaselog/3_26_0.html">releaselog/3_26_0.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> + <a href="releaselog/3_40_0.html">releaselog/3_40_0.html</a> + <a href="releaselog/3_40_1.html">releaselog/3_40_1.html</a> + <a href="releaselog/3_44_0.html">releaselog/3_44_0.html</a> + <a href="releaselog/3_44_1.html">releaselog/3_44_1.html</a> + <a href="releaselog/3_44_2.html">releaselog/3_44_2.html</a> + <a href="security.html">security.html</a> + <a href="vtab.html#xshadowname">vtab.html#xshadowname</a> +<li>SQLITE_DBCONFIG_DQS_DDL → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_29_0">changes.html#version_3_29_0</a> + <a href="compile.html#dqs">compile.html#dqs</a> + <a href="news.html">news.html</a> + <a href="quirks.html#dblquote">quirks.html#dblquote</a> + <a href="releaselog/3_29_0.html">releaselog/3_29_0.html</a> +<li>SQLITE_DBCONFIG_DQS_DML → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_29_0">changes.html#version_3_29_0</a> + <a href="compile.html#dqs">compile.html#dqs</a> + <a href="news.html">news.html</a> + <a href="quirks.html#dblquote">quirks.html#dblquote</a> + <a href="releaselog/3_29_0.html">releaselog/3_29_0.html</a> +<li>SQLITE_DBCONFIG_ENABLE_FKEY → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="compile.html#enable_fts3_tokenizer">compile.html#enable_fts3_tokenizer</a> + <a href="fts3.html#f3tknzr">fts3.html#f3tknzr</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> +<li>SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/enable_load_extension.html">c3ref/enable_load_extension.html</a> + <a href="c3ref/load_extension.html">c3ref/load_extension.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_enable_load_extension">capi3ref.html#sqlite3_enable_load_extension</a> + <a href="capi3ref.html#sqlite3_load_extension">capi3ref.html#sqlite3_load_extension</a> + <a href="changes.html#version_3_13_0">changes.html#version_3_13_0</a> + <a href="loadext.html">loadext.html</a> + <a href="releaselog/3_13_0.html">releaselog/3_13_0.html</a> +<li>SQLITE_DBCONFIG_ENABLE_QPSG → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="compile.html#enable_qpsg">compile.html#enable_qpsg</a> + <a href="queryplanner-ng.html#qpstab">queryplanner-ng.html#qpstab</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> +<li>SQLITE_DBCONFIG_ENABLE_TRIGGER → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_35_0">changes.html#version_3_35_0</a> + <a href="releaselog/3_35_0.html">releaselog/3_35_0.html</a> + <a href="releaselog/3_35_1.html">releaselog/3_35_1.html</a> + <a href="releaselog/3_35_2.html">releaselog/3_35_2.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> + <a href="security.html#baddb">security.html#baddb</a> +<li>SQLITE_DBCONFIG_ENABLE_VIEW → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_30_0">changes.html#version_3_30_0</a> + <a href="changes.html#version_3_35_0">changes.html#version_3_35_0</a> + <a href="releaselog/3_30_0.html">releaselog/3_30_0.html</a> + <a href="releaselog/3_30_1.html">releaselog/3_30_1.html</a> + <a href="releaselog/3_35_0.html">releaselog/3_35_0.html</a> + <a href="releaselog/3_35_1.html">releaselog/3_35_1.html</a> + <a href="releaselog/3_35_2.html">releaselog/3_35_2.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> + <a href="security.html#baddb">security.html#baddb</a> +<li>SQLITE_DBCONFIG_LEGACY_ALTER_TABLE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="lang_altertable.html#altertabrename">lang_altertable.html#altertabrename</a> + <a href="pragma.html#pragma_legacy_alter_table">pragma.html#pragma_legacy_alter_table</a> +<li>SQLITE_DBCONFIG_LEGACY_FILE_FORMAT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="pragma.html#pragma_legacy_file_format">pragma.html#pragma_legacy_file_format</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> +<li>SQLITE_DBCONFIG_LOOKASIDE → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfiglookaside">c3ref/c_config_covering_index_scan.html#sqliteconfiglookaside</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/db_config.html">c3ref/db_config.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_db_config">capi3ref.html#sqlite3_db_config</a> + <a href="capi3ref.html#sqliteconfiglookaside">capi3ref.html#sqliteconfiglookaside</a> + <a href="compile.html#default_lookaside">compile.html#default_lookaside</a> + <a href="malloc.html#lookaside">malloc.html#lookaside</a> + <a href="news.html">news.html</a> +<li>SQLITE_DBCONFIG_MAINDBNAME → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_15_0">changes.html#version_3_15_0</a> + <a href="dbpage.html">dbpage.html</a> + <a href="releaselog/3_15_0.html">releaselog/3_15_0.html</a> + <a href="releaselog/3_15_1.html">releaselog/3_15_1.html</a> + <a href="releaselog/3_15_2.html">releaselog/3_15_2.html</a> +<li>SQLITE_DBCONFIG_MAX → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_16_0">changes.html#version_3_16_0</a> + <a href="releaselog/3_16_0.html">releaselog/3_16_0.html</a> + <a href="releaselog/3_16_1.html">releaselog/3_16_1.html</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> +<li>SQLITE_DBCONFIG_RESET_DATABASE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_24_0">changes.html#version_3_24_0</a> + <a href="releaselog/3_24_0.html">releaselog/3_24_0.html</a> +<li>SQLITE_DBCONFIG_REVERSE_SCANORDER → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_42_0">changes.html#version_3_42_0</a> + <a href="releaselog/3_42_0.html">releaselog/3_42_0.html</a> +<li>SQLITE_DBCONFIG_STMT_SCANSTATUS → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_42_0">changes.html#version_3_42_0</a> + <a href="releaselog/3_42_0.html">releaselog/3_42_0.html</a> +<li>SQLITE_DBCONFIG_TRIGGER_EQP → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_DBCONFIG_TRUSTED_SCHEMA → <a href="appfunc.html#sec">appfunc.html#sec</a> + <a href="c3ref/c_deterministic.html#sqliteinnocuous">c3ref/c_deterministic.html#sqliteinnocuous</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqliteinnocuous">capi3ref.html#sqliteinnocuous</a> + <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="compile.html#trusted_schema">compile.html#trusted_schema</a> + <a href="pragma.html#pragma_trusted_schema">pragma.html#pragma_trusted_schema</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> + <a href="security.html#baddb">security.html#baddb</a> +<li>SQLITE_DBCONFIG_WRITABLE_SCHEMA → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> +<li>sqlite_dbpage → <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfigdefensive">c3ref/c_dbconfig_defensive.html#sqlitedbconfigdefensive</a> + <a href="capi3ref.html#sqlitedbconfigdefensive">capi3ref.html#sqlitedbconfigdefensive</a> + <a href="vtablist.html">vtablist.html</a> +<li>SQLITE_DBPAGE virtual table → <a href="compile.html#enable_dbpage_vtab">compile.html#enable_dbpage_vtab</a> +<li>SQLITE_DBSTATUS options → <a href="c3ref/db_status.html">c3ref/db_status.html</a> + <a href="capi3ref.html#sqlite3_db_status">capi3ref.html#sqlite3_db_status</a> +<li>SQLITE_DBSTATUS_CACHE_HIT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_7_9">changes.html#version_3_7_9</a> + <a href="releaselog/3_7_9.html">releaselog/3_7_9.html</a> +<li>SQLITE_DBSTATUS_CACHE_MISS → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_7_9">changes.html#version_3_7_9</a> + <a href="releaselog/3_7_9.html">releaselog/3_7_9.html</a> +<li>SQLITE_DBSTATUS_CACHE_SPILL → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +<li>SQLITE_DBSTATUS_CACHE_USED → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_7_0">changes.html#version_3_7_0</a> + <a href="memstat.html">memstat.html</a> + <a href="releaselog/3_7_0.html">releaselog/3_7_0.html</a> +<li>SQLITE_DBSTATUS_CACHE_USED_SHARED → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> +<li>SQLITE_DBSTATUS_CACHE_WRITE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_7_12">changes.html#version_3_7_12</a> + <a href="releaselog/3_7_12.html">releaselog/3_7_12.html</a> +<li>SQLITE_DBSTATUS_DEFERRED_FKS → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_8_0">changes.html#version_3_8_0</a> + <a href="pragma.html#pragma_defer_foreign_keys">pragma.html#pragma_defer_foreign_keys</a> + <a href="releaselog/3_8_0.html">releaselog/3_8_0.html</a> + <a href="releaselog/3_8_0_1.html">releaselog/3_8_0_1.html</a> + <a href="releaselog/3_8_0_2.html">releaselog/3_8_0_2.html</a> +<li>SQLITE_DBSTATUS_LOOKASIDE_HIT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_7_5">changes.html#version_3_7_5</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_7_5.html">releaselog/3_7_5.html</a> +<li>SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_7_5">changes.html#version_3_7_5</a> + <a href="releaselog/3_7_5.html">releaselog/3_7_5.html</a> +<li>SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_7_5">changes.html#version_3_7_5</a> + <a href="releaselog/3_7_5.html">releaselog/3_7_5.html</a> +<li>SQLITE_DBSTATUS_LOOKASIDE_USED → <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfiglookaside">c3ref/c_dbconfig_defensive.html#sqlitedbconfiglookaside</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlitedbconfiglookaside">capi3ref.html#sqlitedbconfiglookaside</a> + <a href="malloc.html#memstatus">malloc.html#memstatus</a> +<li>SQLITE_DBSTATUS_MAX → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_DBSTATUS_SCHEMA_USED → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_7_1">changes.html#version_3_7_1</a> + <a href="releaselog/3_7_1.html">releaselog/3_7_1.html</a> +<li>SQLITE_DBSTATUS_STMT_USED → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_7_1">changes.html#version_3_7_1</a> + <a href="releaselog/3_7_1.html">releaselog/3_7_1.html</a> +<li>SQLITE_DEBUG → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntllockstate">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntllockstate</a> + <a href="capi3ref.html#sqlitefcntllockstate">capi3ref.html#sqlitefcntllockstate</a> + <a href="changes.html#version_3_39_1">changes.html#version_3_39_1</a> + <a href="changes.html#version_3_8_7">changes.html#version_3_8_7</a> + <a href="compile.html#enable_explain_comments">compile.html#enable_explain_comments</a> + <a href="debugging.html">debugging.html</a> + <a href="opcode.html#subprog">opcode.html#subprog</a> + <a href="pragma.html#pragma_parser_trace">pragma.html#pragma_parser_trace</a> + <a href="pragma.html#pragma_vdbe_addoptrace">pragma.html#pragma_vdbe_addoptrace</a> + <a href="pragma.html#pragma_vdbe_debug">pragma.html#pragma_vdbe_debug</a> + <a href="pragma.html#pragma_vdbe_listing">pragma.html#pragma_vdbe_listing</a> + <a href="pragma.html#pragma_vdbe_trace">pragma.html#pragma_vdbe_trace</a> + <a href="releaselog/3_39_1.html">releaselog/3_39_1.html</a> + <a href="releaselog/3_39_2.html">releaselog/3_39_2.html</a> + <a href="releaselog/3_39_3.html">releaselog/3_39_3.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> + <a href="releaselog/3_8_7.html">releaselog/3_8_7.html</a> + <a href="th3.html">th3.html</a> +<li>SQLITE_DEFAULT_AUTOMATIC_INDEX → <a href="changes.html#version_3_8_0">changes.html#version_3_8_0</a> + <a href="compile.html#omit_automatic_index">compile.html#omit_automatic_index</a> + <a href="optoverview.html#autoindex">optoverview.html#autoindex</a> + <a href="releaselog/3_8_0.html">releaselog/3_8_0.html</a> + <a href="releaselog/3_8_0_1.html">releaselog/3_8_0_1.html</a> + <a href="releaselog/3_8_0_2.html">releaselog/3_8_0_2.html</a> +<li>SQLITE_DEFAULT_AUTOVACUUM → <a href="pragma.html#pragma_auto_vacuum">pragma.html#pragma_auto_vacuum</a> +<li>SQLITE_DEFAULT_CACHE_SIZE → <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="pragma.html#pragma_cache_size">pragma.html#pragma_cache_size</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> +<li>SQLITE_DEFAULT_FILE_FORMAT → <a href="fileformat2.html#schemaformat">fileformat2.html#schemaformat</a> +<li>SQLITE_DEFAULT_FOREIGN_KEYS → <a href="changes.html#version_3_7_5">changes.html#version_3_7_5</a> + <a href="faq.html#q22">faq.html#q22</a> + <a href="pragma.html#pragma_foreign_keys">pragma.html#pragma_foreign_keys</a> + <a href="releaselog/3_7_5.html">releaselog/3_7_5.html</a> +<li>SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT → <a href="pragma.html#pragma_journal_mode">pragma.html#pragma_journal_mode</a> + <a href="pragma.html#pragma_journal_size_limit">pragma.html#pragma_journal_size_limit</a> +<li>SQLITE_DEFAULT_LOCKING_MODE → <a href="pragma.html#pragma_locking_mode">pragma.html#pragma_locking_mode</a> +<li>SQLITE_DEFAULT_LOOKASIDE → <a href="changes.html#version_3_17_0">changes.html#version_3_17_0</a> + <a href="malloc.html#lookaside">malloc.html#lookaside</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_17_0.html">releaselog/3_17_0.html</a> +<li>SQLITE_DEFAULT_MEMSTATUS → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigmemstatus">c3ref/c_config_covering_index_scan.html#sqliteconfigmemstatus</a> + <a href="c3ref/hard_heap_limit64.html">c3ref/hard_heap_limit64.html</a> + <a href="capi3ref.html#sqlite3_hard_heap_limit64">capi3ref.html#sqlite3_hard_heap_limit64</a> + <a href="capi3ref.html#sqliteconfigmemstatus">capi3ref.html#sqliteconfigmemstatus</a> + <a href="compile.html#max_memory">compile.html#max_memory</a> + <a href="compile.html#rcmd">compile.html#rcmd</a> +<li>SQLITE_DEFAULT_MMAP_SIZE → <a href="compile.html#max_mmap_size">compile.html#max_mmap_size</a> + <a href="mmap.html">mmap.html</a> + <a href="pragma.html#pragma_mmap_size">pragma.html#pragma_mmap_size</a> +<li>SQLITE_DEFAULT_PAGE_SIZE → <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="pragma.html#pragma_page_size">pragma.html#pragma_page_size</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> +<li>SQLITE_DEFAULT_PCACHE_INITSZ → <a href="changes.html#version_3_17_0">changes.html#version_3_17_0</a> + <a href="releaselog/3_17_0.html">releaselog/3_17_0.html</a> +<li>SQLITE_DEFAULT_SYNCHRONOUS → <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="compile.html#default_wal_synchronous">compile.html#default_wal_synchronous</a> + <a href="compile.html#extra_durable">compile.html#extra_durable</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> +<li>SQLITE_DEFAULT_WAL_AUTOCHECKPOINT → <a href="c3ref/wal_autocheckpoint.html">c3ref/wal_autocheckpoint.html</a> + <a href="capi3ref.html#sqlite3_wal_autocheckpoint">capi3ref.html#sqlite3_wal_autocheckpoint</a> + <a href="pragma.html#pragma_wal_autocheckpoint">pragma.html#pragma_wal_autocheckpoint</a> + <a href="wal.html#ckpt">wal.html#ckpt</a> +<li>SQLITE_DEFAULT_WAL_SYNCHRONOUS → <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="compile.html#rcmd">compile.html#rcmd</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> +<li>SQLITE_DEFAULT_WORKER_THREADS → <a href="changes.html#version_3_8_7">changes.html#version_3_8_7</a> + <a href="compile.html#max_worker_threads">compile.html#max_worker_threads</a> + <a href="pragma.html#pragma_threads">pragma.html#pragma_threads</a> + <a href="releaselog/3_8_7.html">releaselog/3_8_7.html</a> +<li>SQLITE_DELETE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> + <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> + <a href="c3ref/update_hook.html">c3ref/update_hook.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_preupdate_blobwrite">capi3ref.html#sqlite3_preupdate_blobwrite</a> + <a href="capi3ref.html#sqlite3_set_authorizer">capi3ref.html#sqlite3_set_authorizer</a> + <a href="capi3ref.html#sqlite3_update_hook">capi3ref.html#sqlite3_update_hook</a> + <a href="lang_delete.html#truncateopt">lang_delete.html#truncateopt</a> + <a href="session.html#sqlite3changeset_old">session.html#sqlite3changeset_old</a> + <a href="session.html#sqlite3changeset_op">session.html#sqlite3changeset_op</a> + <a href="session/sqlite3changeset_old.html">session/sqlite3changeset_old.html</a> + <a href="session/sqlite3changeset_op.html">session/sqlite3changeset_op.html</a> +<li>SQLITE_DENY → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_set_authorizer">capi3ref.html#sqlite3_set_authorizer</a> +<li>SQLITE_DESERIALIZE_FREEONCLOSE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_DESERIALIZE_READONLY → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> +<li>SQLITE_DESERIALIZE_RESIZEABLE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_DETACH → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_DETERMINISTIC → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/create_function.html">c3ref/create_function.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_create_function">capi3ref.html#sqlite3_create_function</a> + <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="changes.html#version_3_8_3">changes.html#version_3_8_3</a> + <a href="deterministic.html#dtexception">deterministic.html#dtexception</a> + <a href="expridx.html">expridx.html</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> + <a href="releaselog/3_8_3.html">releaselog/3_8_3.html</a> +<li>SQLITE_DIRECT_OVERFLOW_READ → <a href="changes.html#version_3_17_0">changes.html#version_3_17_0</a> + <a href="changes.html#version_3_45_0">changes.html#version_3_45_0</a> + <a href="changes.html#version_3_7_9">changes.html#version_3_7_9</a> + <a href="releaselog/3_17_0.html">releaselog/3_17_0.html</a> + <a href="releaselog/3_45_0.html">releaselog/3_45_0.html</a> + <a href="releaselog/3_45_1.html">releaselog/3_45_1.html</a> + <a href="releaselog/3_7_9.html">releaselog/3_7_9.html</a> +<li>SQLITE_DIRECTONLY → <a href="appfunc.html">appfunc.html</a> + <a href="appfunc.html#sec">appfunc.html#sec</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/create_function.html">c3ref/create_function.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_create_function">capi3ref.html#sqlite3_create_function</a> + <a href="changes.html#version_3_30_0">changes.html#version_3_30_0</a> + <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="releaselog/3_30_0.html">releaselog/3_30_0.html</a> + <a href="releaselog/3_30_1.html">releaselog/3_30_1.html</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> + <a href="security.html#baddb">security.html#baddb</a> +<li>SQLITE_DISABLE_FTS4_DEFERRED → <a href="changes.html#version_3_7_14">changes.html#version_3_7_14</a> + <a href="releaselog/3_7_14.html">releaselog/3_7_14.html</a> +<li>SQLITE_DISABLE_INTRINSIC → <a href="changes.html#version_3_17_0">changes.html#version_3_17_0</a> + <a href="releaselog/3_17_0.html">releaselog/3_17_0.html</a> +<li>SQLITE_DONE → <a href="c3ref/backup_finish.html#sqlite3backupfinish">c3ref/backup_finish.html#sqlite3backupfinish</a> + <a href="c3ref/backup_finish.html#sqlite3backupstep">c3ref/backup_finish.html#sqlite3backupstep</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/data_count.html">c3ref/data_count.html</a> + <a href="c3ref/step.html">c3ref/step.html</a> + <a href="c3ref/stmt_busy.html">c3ref/stmt_busy.html</a> + <a href="c3ref/vtab_in_first.html">c3ref/vtab_in_first.html</a> + <a href="c3ref/wal_hook.html">c3ref/wal_hook.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_data_count">capi3ref.html#sqlite3_data_count</a> + <a href="capi3ref.html#sqlite3_step">capi3ref.html#sqlite3_step</a> + <a href="capi3ref.html#sqlite3_stmt_busy">capi3ref.html#sqlite3_stmt_busy</a> + <a href="capi3ref.html#sqlite3_vtab_in_first">capi3ref.html#sqlite3_vtab_in_first</a> + <a href="capi3ref.html#sqlite3_wal_hook">capi3ref.html#sqlite3_wal_hook</a> + <a href="capi3ref.html#sqlite3backupfinish">capi3ref.html#sqlite3backupfinish</a> + <a href="capi3ref.html#sqlite3backupstep">capi3ref.html#sqlite3backupstep</a> + <a href="rescode.html">rescode.html</a> + <a href="rescode.html#pve">rescode.html#pve</a> +<li>SQLITE_DQS → <a href="compile.html#rcmd">compile.html#rcmd</a> +<li>SQLITE_DROP_INDEX → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_DROP_TABLE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_DROP_TEMP_INDEX → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_DROP_TEMP_TABLE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_DROP_TEMP_TRIGGER → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_DROP_TEMP_VIEW → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_DROP_TRIGGER → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_DROP_VIEW → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_DROP_VTABLE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_EMPTY → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#pve">rescode.html#pve</a> +<li>SQLITE_ENABLE_8_3_NAMES → <a href="shortnames.html">shortnames.html</a> + <a href="wal.html#walfile">wal.html#walfile</a> +<li>SQLITE_ENABLE_API_ARMOR → <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> +<li>SQLITE_ENABLE_ATOMIC_WRITE → <a href="rescode.html#ioerr_begin_atomic">rescode.html#ioerr_begin_atomic</a> + <a href="rescode.html#ioerr_commit_atomic">rescode.html#ioerr_commit_atomic</a> + <a href="rescode.html#ioerr_rollback_atomic">rescode.html#ioerr_rollback_atomic</a> +<li>SQLITE_ENABLE_BATCH_ATOMIC_WRITE → <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> +<li>SQLITE_ENABLE_COLUMN_METADATA → <a href="c3ref/column_database_name.html">c3ref/column_database_name.html</a> + <a href="capi3ref.html#sqlite3_column_database_name">capi3ref.html#sqlite3_column_database_name</a> + <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> +<li>SQLITE_ENABLE_DBPAGE_VTAB → <a href="dbpage.html">dbpage.html</a> +<li>SQLITE_ENABLE_DBSTAT_VTAB → <a href="changes.html#version_3_8_10">changes.html#version_3_8_10</a> + <a href="changes.html#version_3_8_10_1">changes.html#version_3_8_10_1</a> + <a href="dbstat.html">dbstat.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_8_10.html">releaselog/3_8_10.html</a> + <a href="releaselog/3_8_10_1.html">releaselog/3_8_10_1.html</a> + <a href="releaselog/3_8_10_2.html">releaselog/3_8_10_2.html</a> + <a href="vtab.html#epovtab">vtab.html#epovtab</a> +<li>SQLITE_ENABLE_DESERIALIZE → <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +<li>SQLITE_ENABLE_EXPLAIN_COMMENTS → <a href="changes.html#version_3_11_0">changes.html#version_3_11_0</a> + <a href="changes.html#version_3_8_2">changes.html#version_3_8_2</a> + <a href="releaselog/3_11_0.html">releaselog/3_11_0.html</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> + <a href="releaselog/3_8_2.html">releaselog/3_8_2.html</a> +<li>SQLITE_ENABLE_FTS3 → <a href="fts3.html#compiling_and_enabling_fts3_and_fts4">fts3.html#compiling_and_enabling_fts3_and_fts4</a> +<li>SQLITE_ENABLE_FTS3_PARENTHESIS → <a href="changes.html#version_3_39_1">changes.html#version_3_39_1</a> + <a href="changes.html#version_3_6_8">changes.html#version_3_6_8</a> + <a href="fts3.html#compiling_and_enabling_fts3_and_fts4">fts3.html#compiling_and_enabling_fts3_and_fts4</a> + <a href="releaselog/3_39_1.html">releaselog/3_39_1.html</a> + <a href="releaselog/3_39_2.html">releaselog/3_39_2.html</a> + <a href="releaselog/3_39_3.html">releaselog/3_39_3.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> + <a href="releaselog/3_6_8.html">releaselog/3_6_8.html</a> +<li>SQLITE_ENABLE_FTS3_TOKENIZER → <a href="changes.html#version_3_11_0">changes.html#version_3_11_0</a> + <a href="releaselog/3_11_0.html">releaselog/3_11_0.html</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> +<li>SQLITE_ENABLE_FTS5 → <a href="changes.html#version_3_9_0">changes.html#version_3_9_0</a> + <a href="releaselog/3_9_0.html">releaselog/3_9_0.html</a> + <a href="releaselog/3_9_1.html">releaselog/3_9_1.html</a> + <a href="releaselog/3_9_2.html">releaselog/3_9_2.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> +<li>SQLITE_ENABLE_JSON1 → <a href="changes.html#version_3_9_0">changes.html#version_3_9_0</a> + <a href="releaselog/3_9_0.html">releaselog/3_9_0.html</a> + <a href="releaselog/3_9_1.html">releaselog/3_9_1.html</a> + <a href="releaselog/3_9_2.html">releaselog/3_9_2.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> +<li>SQLITE_ENABLE_MEMORY_MANAGEMENT → <a href="c3ref/db_release_memory.html">c3ref/db_release_memory.html</a> + <a href="c3ref/release_memory.html">c3ref/release_memory.html</a> + <a href="capi3ref.html#sqlite3_db_release_memory">capi3ref.html#sqlite3_db_release_memory</a> + <a href="capi3ref.html#sqlite3_release_memory">capi3ref.html#sqlite3_release_memory</a> + <a href="changes.html#version_3_7_3">changes.html#version_3_7_3</a> + <a href="malloc.html#memstatus">malloc.html#memstatus</a> + <a href="releaselog/3_7_3.html">releaselog/3_7_3.html</a> +<li>SQLITE_ENABLE_MEMSYS3 → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigheap">c3ref/c_config_covering_index_scan.html#sqliteconfigheap</a> + <a href="capi3ref.html#sqliteconfigheap">capi3ref.html#sqliteconfigheap</a> + <a href="malloc.html#memsysx">malloc.html#memsysx</a> +<li>SQLITE_ENABLE_MEMSYS5 → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigheap">c3ref/c_config_covering_index_scan.html#sqliteconfigheap</a> + <a href="capi3ref.html#sqliteconfigheap">capi3ref.html#sqliteconfigheap</a> + <a href="malloc.html#memsys5">malloc.html#memsys5</a> +<li>SQLITE_ENABLE_NORMALIZE → <a href="c3ref/expanded_sql.html">c3ref/expanded_sql.html</a> + <a href="capi3ref.html#sqlite3_expanded_sql">capi3ref.html#sqlite3_expanded_sql</a> +<li>SQLITE_ENABLE_NULL_TRIM → <a href="changes.html#version_3_17_0">changes.html#version_3_17_0</a> + <a href="releaselog/3_17_0.html">releaselog/3_17_0.html</a> +<li>SQLITE_ENABLE_PREUPDATE_HOOK → <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> + <a href="capi3ref.html#sqlite3_preupdate_blobwrite">capi3ref.html#sqlite3_preupdate_blobwrite</a> +<li>SQLITE_ENABLE_QPSG → <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="queryplanner-ng.html#qpstab">queryplanner-ng.html#qpstab</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> +<li>SQLITE_ENABLE_RBU → <a href="rbu.html">rbu.html</a> +<li>SQLITE_ENABLE_RTREE → <a href="rtree.html">rtree.html</a> +<li>SQLITE_ENABLE_SNAPSHOT → <a href="c3ref/snapshot_cmp.html">c3ref/snapshot_cmp.html</a> + <a href="c3ref/snapshot_free.html">c3ref/snapshot_free.html</a> + <a href="c3ref/snapshot_get.html">c3ref/snapshot_get.html</a> + <a href="c3ref/snapshot_open.html">c3ref/snapshot_open.html</a> + <a href="c3ref/snapshot_recover.html">c3ref/snapshot_recover.html</a> + <a href="capi3ref.html#sqlite3_snapshot_cmp">capi3ref.html#sqlite3_snapshot_cmp</a> + <a href="capi3ref.html#sqlite3_snapshot_free">capi3ref.html#sqlite3_snapshot_free</a> + <a href="capi3ref.html#sqlite3_snapshot_get">capi3ref.html#sqlite3_snapshot_get</a> + <a href="capi3ref.html#sqlite3_snapshot_open">capi3ref.html#sqlite3_snapshot_open</a> + <a href="capi3ref.html#sqlite3_snapshot_recover">capi3ref.html#sqlite3_snapshot_recover</a> +<li>SQLITE_ENABLE_SORTER_REFERENCES → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigsorterrefsize">c3ref/c_config_covering_index_scan.html#sqliteconfigsorterrefsize</a> + <a href="capi3ref.html#sqliteconfigsorterrefsize">capi3ref.html#sqliteconfigsorterrefsize</a> +<li>SQLITE_ENABLE_SQLLOG → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigsqllog">c3ref/c_config_covering_index_scan.html#sqliteconfigsqllog</a> + <a href="capi3ref.html#sqliteconfigsqllog">capi3ref.html#sqliteconfigsqllog</a> +<li>SQLITE_ENABLE_STAT2 → <a href="changes.html#version_3_6_18">changes.html#version_3_6_18</a> + <a href="changes.html#version_3_6_20">changes.html#version_3_6_20</a> + <a href="changes.html#version_3_7_6">changes.html#version_3_7_6</a> + <a href="changes.html#version_3_7_9">changes.html#version_3_7_9</a> + <a href="lang_analyze.html#req">lang_analyze.html#req</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_6_18.html">releaselog/3_6_18.html</a> + <a href="releaselog/3_6_20.html">releaselog/3_6_20.html</a> + <a href="releaselog/3_7_6.html">releaselog/3_7_6.html</a> + <a href="releaselog/3_7_9.html">releaselog/3_7_9.html</a> +<li>SQLITE_ENABLE_STAT3 → <a href="changes.html#version_3_30_0">changes.html#version_3_30_0</a> + <a href="changes.html#version_3_7_9">changes.html#version_3_7_9</a> + <a href="changes.html#version_3_8_3_1">changes.html#version_3_8_3_1</a> + <a href="compile.html#enable_stat2">compile.html#enable_stat2</a> + <a href="compile.html#enable_stat4">compile.html#enable_stat4</a> + <a href="fileformat2.html#stat3tab">fileformat2.html#stat3tab</a> + <a href="lang_analyze.html#req">lang_analyze.html#req</a> + <a href="oldnews.html">oldnews.html</a> + <a href="optoverview.html#rangequery">optoverview.html#rangequery</a> + <a href="releaselog/3_30_0.html">releaselog/3_30_0.html</a> + <a href="releaselog/3_30_1.html">releaselog/3_30_1.html</a> + <a href="releaselog/3_7_9.html">releaselog/3_7_9.html</a> + <a href="releaselog/3_8_3_1.html">releaselog/3_8_3_1.html</a> +<li>SQLITE_ENABLE_STAT4 → <a href="c3ref/get_auxdata.html">c3ref/get_auxdata.html</a> + <a href="c3ref/prepare.html">c3ref/prepare.html</a> + <a href="capi3ref.html#sqlite3_get_auxdata">capi3ref.html#sqlite3_get_auxdata</a> + <a href="capi3ref.html#sqlite3_prepare">capi3ref.html#sqlite3_prepare</a> + <a href="changes.html#version_3_41_2">changes.html#version_3_41_2</a> + <a href="changes.html#version_3_8_1">changes.html#version_3_8_1</a> + <a href="changes.html#version_3_8_3_1">changes.html#version_3_8_3_1</a> + <a href="changes.html#version_3_8_4">changes.html#version_3_8_4</a> + <a href="compile.html#enable_stat3">compile.html#enable_stat3</a> + <a href="fileformat2.html#stat3tab">fileformat2.html#stat3tab</a> + <a href="fileformat2.html#stat4tab">fileformat2.html#stat4tab</a> + <a href="lang_analyze.html#req">lang_analyze.html#req</a> + <a href="oldnews.html">oldnews.html</a> + <a href="optoverview.html#rangequery">optoverview.html#rangequery</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> + <a href="releaselog/3_8_1.html">releaselog/3_8_1.html</a> + <a href="releaselog/3_8_3_1.html">releaselog/3_8_3_1.html</a> + <a href="releaselog/3_8_4.html">releaselog/3_8_4.html</a> + <a href="releaselog/3_8_4_1.html">releaselog/3_8_4_1.html</a> + <a href="releaselog/3_8_4_2.html">releaselog/3_8_4_2.html</a> + <a href="releaselog/3_8_4_3.html">releaselog/3_8_4_3.html</a> +<li>SQLITE_ENABLE_STMT_SCANSTATUS → <a href="c3ref/stmt_scanstatus.html">c3ref/stmt_scanstatus.html</a> + <a href="c3ref/stmt_scanstatus_reset.html">c3ref/stmt_scanstatus_reset.html</a> + <a href="capi3ref.html#sqlite3_stmt_scanstatus">capi3ref.html#sqlite3_stmt_scanstatus</a> + <a href="capi3ref.html#sqlite3_stmt_scanstatus_reset">capi3ref.html#sqlite3_stmt_scanstatus_reset</a> + <a href="changes.html#version_3_41_0">changes.html#version_3_41_0</a> + <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="profile.html">profile.html</a> + <a href="releaselog/3_41_0.html">releaselog/3_41_0.html</a> + <a href="releaselog/3_41_1.html">releaselog/3_41_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> +<li>SQLITE_ENABLE_STMTVTAB → <a href="stmt.html">stmt.html</a> +<li>SQLITE_ENABLE_TREE_EXPLAIN → <a href="changes.html#version_3_7_10">changes.html#version_3_7_10</a> + <a href="releaselog/3_7_10.html">releaselog/3_7_10.html</a> +<li>SQLITE_ENABLE_UNKNOWN_SQL_FUNCTION → <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> +<li>SQLITE_ENABLE_UNLOCK_NOTIFY → <a href="c3ref/unlock_notify.html">c3ref/unlock_notify.html</a> + <a href="capi3ref.html#sqlite3_unlock_notify">capi3ref.html#sqlite3_unlock_notify</a> + <a href="unlock_notify.html">unlock_notify.html</a> +<li>SQLITE_ENABLE_UPDATE_DELETE_LIMIT → <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="changes.html#version_3_6_4">changes.html#version_3_6_4</a> + <a href="howtocompile.html#amal">howtocompile.html#amal</a> + <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_delete.html">lang_delete.html</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_update.html#upfrom">lang_update.html#upfrom</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> + <a href="releaselog/3_6_4.html">releaselog/3_6_4.html</a> +<li>SQLITE_ERROR → <a href="c3ref/blob_read.html">c3ref/blob_read.html</a> + <a href="c3ref/blob_write.html">c3ref/blob_write.html</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfiggetmutex">c3ref/c_config_covering_index_scan.html#sqliteconfiggetmutex</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigheap">c3ref/c_config_covering_index_scan.html#sqliteconfigheap</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigmultithread">c3ref/c_config_covering_index_scan.html#sqliteconfigmultithread</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigmutex">c3ref/c_config_covering_index_scan.html#sqliteconfigmutex</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigserialized">c3ref/c_config_covering_index_scan.html#sqliteconfigserialized</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigsinglethread">c3ref/c_config_covering_index_scan.html#sqliteconfigsinglethread</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/load_extension.html">c3ref/load_extension.html</a> + <a href="c3ref/prepare.html">c3ref/prepare.html</a> + <a href="c3ref/step.html">c3ref/step.html</a> + <a href="c3ref/vtab_in_first.html">c3ref/vtab_in_first.html</a> + <a href="c3ref/win32_set_directory.html">c3ref/win32_set_directory.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_blob_read">capi3ref.html#sqlite3_blob_read</a> + <a href="capi3ref.html#sqlite3_blob_write">capi3ref.html#sqlite3_blob_write</a> + <a href="capi3ref.html#sqlite3_load_extension">capi3ref.html#sqlite3_load_extension</a> + <a href="capi3ref.html#sqlite3_prepare">capi3ref.html#sqlite3_prepare</a> + <a href="capi3ref.html#sqlite3_step">capi3ref.html#sqlite3_step</a> + <a href="capi3ref.html#sqlite3_vtab_in_first">capi3ref.html#sqlite3_vtab_in_first</a> + <a href="capi3ref.html#sqlite3_win32_set_directory">capi3ref.html#sqlite3_win32_set_directory</a> + <a href="capi3ref.html#sqliteconfiggetmutex">capi3ref.html#sqliteconfiggetmutex</a> + <a href="capi3ref.html#sqliteconfigheap">capi3ref.html#sqliteconfigheap</a> + <a href="capi3ref.html#sqliteconfigmultithread">capi3ref.html#sqliteconfigmultithread</a> + <a href="capi3ref.html#sqliteconfigmutex">capi3ref.html#sqliteconfigmutex</a> + <a href="capi3ref.html#sqliteconfigserialized">capi3ref.html#sqliteconfigserialized</a> + <a href="capi3ref.html#sqliteconfigsinglethread">capi3ref.html#sqliteconfigsinglethread</a> + <a href="changes.html#version_3_6_15">changes.html#version_3_6_15</a> + <a href="changes.html#version_3_6_5">changes.html#version_3_6_5</a> + <a href="changes.html#version_3_7_5">changes.html#version_3_7_5</a> + <a href="releaselog/3_6_15.html">releaselog/3_6_15.html</a> + <a href="releaselog/3_6_5.html">releaselog/3_6_5.html</a> + <a href="releaselog/3_7_5.html">releaselog/3_7_5.html</a> + <a href="rescode.html#pve">rescode.html#pve</a> + <a href="vtab.html#xconnect">vtab.html#xconnect</a> + <a href="vtab.html#xcreate">vtab.html#xcreate</a> +<li>SQLITE_ERROR_MISSING_COLLSEQ → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_ERROR_RETRY → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#error_missing_collseq">rescode.html#error_missing_collseq</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_ERROR_SNAPSHOT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_EXTRA_DURABLE → <a href="changes.html#version_3_11_0">changes.html#version_3_11_0</a> + <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="releaselog/3_11_0.html">releaselog/3_11_0.html</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> +<li>SQLITE_FAIL → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/vtab_on_conflict.html">c3ref/vtab_on_conflict.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_vtab_on_conflict">capi3ref.html#sqlite3_vtab_on_conflict</a> +<li>SQLITE_FCNTL_BEGIN_ATOMIC_WRITE → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlbeginatomicwrite">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlbeginatomicwrite</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlcommitatomicwrite">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlcommitatomicwrite</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlrollbackatomicwrite">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlrollbackatomicwrite</a> + <a href="c3ref/c_iocap_atomic.html">c3ref/c_iocap_atomic.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_IOCAP_ATOMIC">capi3ref.html#SQLITE_IOCAP_ATOMIC</a> + <a href="capi3ref.html#sqlitefcntlbeginatomicwrite">capi3ref.html#sqlitefcntlbeginatomicwrite</a> + <a href="capi3ref.html#sqlitefcntlcommitatomicwrite">capi3ref.html#sqlitefcntlcommitatomicwrite</a> + <a href="capi3ref.html#sqlitefcntlrollbackatomicwrite">capi3ref.html#sqlitefcntlrollbackatomicwrite</a> + <a href="compile.html#enable_batch_atomic_write">compile.html#enable_batch_atomic_write</a> + <a href="rescode.html#ioerr_begin_atomic">rescode.html#ioerr_begin_atomic</a> +<li>SQLITE_FCNTL_BUSYHANDLER → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlbusyhandler">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlbusyhandler</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlitefcntlbusyhandler">capi3ref.html#sqlitefcntlbusyhandler</a> + <a href="changes.html#version_3_7_15">changes.html#version_3_7_15</a> + <a href="releaselog/3_7_15.html">releaselog/3_7_15.html</a> +<li>SQLITE_FCNTL_CHUNK_SIZE → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlchunksize">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlchunksize</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlitefcntlchunksize">capi3ref.html#sqlitefcntlchunksize</a> + <a href="changes.html#version_3_7_1">changes.html#version_3_7_1</a> + <a href="releaselog/3_7_1.html">releaselog/3_7_1.html</a> +<li>SQLITE_FCNTL_CKPT_DONE → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlckptdone">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlckptdone</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlitefcntlckptdone">capi3ref.html#sqlitefcntlckptdone</a> +<li>SQLITE_FCNTL_CKPT_START → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlckptstart">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlckptstart</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlitefcntlckptstart">capi3ref.html#sqlitefcntlckptstart</a> +<li>SQLITE_FCNTL_CKSM_FILE → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlcksmfile">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlcksmfile</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlitefcntlcksmfile">capi3ref.html#sqlitefcntlcksmfile</a> +<li>SQLITE_FCNTL_COMMIT_ATOMIC_WRITE → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlbeginatomicwrite">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlbeginatomicwrite</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlcommitatomicwrite">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlcommitatomicwrite</a> + <a href="c3ref/c_iocap_atomic.html">c3ref/c_iocap_atomic.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_IOCAP_ATOMIC">capi3ref.html#SQLITE_IOCAP_ATOMIC</a> + <a href="capi3ref.html#sqlitefcntlbeginatomicwrite">capi3ref.html#sqlitefcntlbeginatomicwrite</a> + <a href="capi3ref.html#sqlitefcntlcommitatomicwrite">capi3ref.html#sqlitefcntlcommitatomicwrite</a> + <a href="compile.html#enable_batch_atomic_write">compile.html#enable_batch_atomic_write</a> + <a href="rescode.html#ioerr_commit_atomic">rescode.html#ioerr_commit_atomic</a> +<li>SQLITE_FCNTL_COMMIT_PHASETWO → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlcommitphasetwo">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlcommitphasetwo</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlitefcntlcommitphasetwo">capi3ref.html#sqlitefcntlcommitphasetwo</a> +<li>SQLITE_FCNTL_DATA_VERSION → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntldataversion">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntldataversion</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/file_control.html">c3ref/file_control.html</a> + <a href="c3ref/total_changes.html">c3ref/total_changes.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_file_control">capi3ref.html#sqlite3_file_control</a> + <a href="capi3ref.html#sqlite3_total_changes">capi3ref.html#sqlite3_total_changes</a> + <a href="capi3ref.html#sqlitefcntldataversion">capi3ref.html#sqlitefcntldataversion</a> + <a href="changes.html#version_3_25_0">changes.html#version_3_25_0</a> + <a href="releaselog/3_25_0.html">releaselog/3_25_0.html</a> + <a href="releaselog/3_25_1.html">releaselog/3_25_1.html</a> + <a href="releaselog/3_25_2.html">releaselog/3_25_2.html</a> + <a href="releaselog/3_25_3.html">releaselog/3_25_3.html</a> +<li>SQLITE_FCNTL_EXTERNAL_READER → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlexternalreader">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlexternalreader</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlitefcntlexternalreader">capi3ref.html#sqlitefcntlexternalreader</a> +<li>SQLITE_FCNTL_FILE_POINTER → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlfilepointer">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlfilepointer</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntljournalpointer">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntljournalpointer</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/file_control.html">c3ref/file_control.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_file_control">capi3ref.html#sqlite3_file_control</a> + <a href="capi3ref.html#sqlitefcntlfilepointer">capi3ref.html#sqlitefcntlfilepointer</a> + <a href="capi3ref.html#sqlitefcntljournalpointer">capi3ref.html#sqlitefcntljournalpointer</a> + <a href="changes.html#version_3_7_4">changes.html#version_3_7_4</a> + <a href="releaselog/3_7_4.html">releaselog/3_7_4.html</a> +<li>SQLITE_FCNTL_GET_LOCKPROXYFILE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_FCNTL_HAS_MOVED → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlhasmoved">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlhasmoved</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlitefcntlhasmoved">capi3ref.html#sqlitefcntlhasmoved</a> +<li>SQLITE_FCNTL_JOURNAL_POINTER → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlfilepointer">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlfilepointer</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntljournalpointer">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntljournalpointer</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/file_control.html">c3ref/file_control.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_file_control">capi3ref.html#sqlite3_file_control</a> + <a href="capi3ref.html#sqlitefcntlfilepointer">capi3ref.html#sqlitefcntlfilepointer</a> + <a href="capi3ref.html#sqlitefcntljournalpointer">capi3ref.html#sqlitefcntljournalpointer</a> + <a href="changes.html#version_3_10_1">changes.html#version_3_10_1</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> +<li>SQLITE_FCNTL_LAST_ERRNO → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_FCNTL_LOCK_TIMEOUT → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntllocktimeout">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntllocktimeout</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlitefcntllocktimeout">capi3ref.html#sqlitefcntllocktimeout</a> +<li>SQLITE_FCNTL_LOCKSTATE → <a href="34to35.html">34to35.html</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntllockstate">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntllockstate</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlitefcntllockstate">capi3ref.html#sqlitefcntllockstate</a> +<li>SQLITE_FCNTL_MMAP_SIZE → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigmmapsize">c3ref/c_config_covering_index_scan.html#sqliteconfigmmapsize</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlmmapsize">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlmmapsize</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqliteconfigmmapsize">capi3ref.html#sqliteconfigmmapsize</a> + <a href="capi3ref.html#sqlitefcntlmmapsize">capi3ref.html#sqlitefcntlmmapsize</a> + <a href="compile.html#max_mmap_size">compile.html#max_mmap_size</a> +<li>SQLITE_FCNTL_OVERWRITE → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntloverwrite">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntloverwrite</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlitefcntloverwrite">capi3ref.html#sqlitefcntloverwrite</a> + <a href="changes.html#version_3_7_9">changes.html#version_3_7_9</a> + <a href="releaselog/3_7_9.html">releaselog/3_7_9.html</a> +<li>SQLITE_FCNTL_PDB → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_FCNTL_PERSIST_WAL → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpersistwal">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpersistwal</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/snapshot_recover.html">c3ref/snapshot_recover.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_snapshot_recover">capi3ref.html#sqlite3_snapshot_recover</a> + <a href="capi3ref.html#sqlitefcntlpersistwal">capi3ref.html#sqlitefcntlpersistwal</a> + <a href="wal.html#walfile">wal.html#walfile</a> + <a href="walformat.html#locks">walformat.html#locks</a> + <a href="walformat.html#shm">walformat.html#shm</a> +<li>SQLITE_FCNTL_POWERSAFE_OVERWRITE → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpowersafeoverwrite">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpowersafeoverwrite</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlitefcntlpowersafeoverwrite">capi3ref.html#sqlitefcntlpowersafeoverwrite</a> + <a href="psow.html#tornpage">psow.html#tornpage</a> +<li>SQLITE_FCNTL_PRAGMA → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpragma">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpragma</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlitefcntlpragma">capi3ref.html#sqlitefcntlpragma</a> + <a href="changes.html#version_3_7_11">changes.html#version_3_7_11</a> + <a href="pragma.html">pragma.html</a> + <a href="pragma.html#pragfunc">pragma.html#pragfunc</a> + <a href="releaselog/3_7_11.html">releaselog/3_7_11.html</a> +<li>SQLITE_FCNTL_RBU → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlrbu">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlrbu</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlitefcntlrbu">capi3ref.html#sqlitefcntlrbu</a> +<li>SQLITE_FCNTL_RESERVE_BYTES → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_FCNTL_RESET_CACHE → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlresetcache">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlresetcache</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlitefcntlresetcache">capi3ref.html#sqlitefcntlresetcache</a> + <a href="changes.html#version_3_41_0">changes.html#version_3_41_0</a> + <a href="releaselog/3_41_0.html">releaselog/3_41_0.html</a> + <a href="releaselog/3_41_1.html">releaselog/3_41_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> +<li>SQLITE_FCNTL_ROLLBACK_ATOMIC_WRITE → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlbeginatomicwrite">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlbeginatomicwrite</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlrollbackatomicwrite">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlrollbackatomicwrite</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlitefcntlbeginatomicwrite">capi3ref.html#sqlitefcntlbeginatomicwrite</a> + <a href="capi3ref.html#sqlitefcntlrollbackatomicwrite">capi3ref.html#sqlitefcntlrollbackatomicwrite</a> + <a href="rescode.html#ioerr_rollback_atomic">rescode.html#ioerr_rollback_atomic</a> +<li>SQLITE_FCNTL_SET_LOCKPROXYFILE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_FCNTL_SIZE_HINT → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlbeginatomicwrite">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlbeginatomicwrite</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlsizehint">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlsizehint</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlitefcntlbeginatomicwrite">capi3ref.html#sqlitefcntlbeginatomicwrite</a> + <a href="capi3ref.html#sqlitefcntlsizehint">capi3ref.html#sqlitefcntlsizehint</a> + <a href="changes.html#version_3_7_6_1">changes.html#version_3_7_6_1</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_7_6_1.html">releaselog/3_7_6_1.html</a> +<li>SQLITE_FCNTL_SIZE_LIMIT → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigmemdbmaxsize">c3ref/c_config_covering_index_scan.html#sqliteconfigmemdbmaxsize</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlsizelimit">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlsizelimit</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqliteconfigmemdbmaxsize">capi3ref.html#sqliteconfigmemdbmaxsize</a> + <a href="capi3ref.html#sqlitefcntlsizelimit">capi3ref.html#sqlitefcntlsizelimit</a> + <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="compile.html#memdb_default_maxsize">compile.html#memdb_default_maxsize</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> +<li>SQLITE_FCNTL_SYNC → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlsync">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlsync</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlitefcntlsync">capi3ref.html#sqlitefcntlsync</a> +<li>SQLITE_FCNTL_SYNC_OMITTED → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_7_5">changes.html#version_3_7_5</a> + <a href="releaselog/3_7_5.html">releaselog/3_7_5.html</a> +<li>SQLITE_FCNTL_TEMPFILENAME → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntltempfilename">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntltempfilename</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlitefcntltempfilename">capi3ref.html#sqlitefcntltempfilename</a> +<li>SQLITE_FCNTL_TRACE → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntltrace">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntltrace</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlitefcntltrace">capi3ref.html#sqlitefcntltrace</a> + <a href="compile.html#use_fcntl_trace">compile.html#use_fcntl_trace</a> +<li>SQLITE_FCNTL_VFS_POINTER → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlvfspointer">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlvfspointer</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/file_control.html">c3ref/file_control.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_file_control">capi3ref.html#sqlite3_file_control</a> + <a href="capi3ref.html#sqlitefcntlvfspointer">capi3ref.html#sqlitefcntlvfspointer</a> +<li>SQLITE_FCNTL_VFSNAME → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlvfsname">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlvfsname</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlitefcntlvfsname">capi3ref.html#sqlitefcntlvfsname</a> +<li>SQLITE_FCNTL_WAL_BLOCK → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlwalblock">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlwalblock</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlitefcntlwalblock">capi3ref.html#sqlitefcntlwalblock</a> +<li>SQLITE_FCNTL_WIN32_AV_RETRY → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlwin32avretry">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlwin32avretry</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlitefcntlwin32avretry">capi3ref.html#sqlitefcntlwin32avretry</a> +<li>SQLITE_FCNTL_WIN32_GET_HANDLE → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlwin32gethandle">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlwin32gethandle</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlitefcntlwin32gethandle">capi3ref.html#sqlitefcntlwin32gethandle</a> + <a href="changes.html#version_3_15_1">changes.html#version_3_15_1</a> + <a href="changes.html#version_3_16_0">changes.html#version_3_16_0</a> + <a href="releaselog/3_15_1.html">releaselog/3_15_1.html</a> + <a href="releaselog/3_15_2.html">releaselog/3_15_2.html</a> + <a href="releaselog/3_16_0.html">releaselog/3_16_0.html</a> + <a href="releaselog/3_16_1.html">releaselog/3_16_1.html</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> +<li>SQLITE_FCNTL_WIN32_SET_HANDLE → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlwin32sethandle">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlwin32sethandle</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlitefcntlwin32sethandle">capi3ref.html#sqlitefcntlwin32sethandle</a> +<li>SQLITE_FCNTL_ZIPVFS → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlzipvfs">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlzipvfs</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlitefcntlzipvfs">capi3ref.html#sqlitefcntlzipvfs</a> +<li>SQLITE_FLOAT → <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_value_blob">capi3ref.html#sqlite3_value_blob</a> +<li>SQLITE_FORMAT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#pve">rescode.html#pve</a> +<li>SQLITE_FTS3_MAX_EXPR_DEPTH → <a href="changes.html#version_3_8_0">changes.html#version_3_8_0</a> + <a href="compile.html#yystackdepth">compile.html#yystackdepth</a> + <a href="releaselog/3_8_0.html">releaselog/3_8_0.html</a> + <a href="releaselog/3_8_0_1.html">releaselog/3_8_0_1.html</a> + <a href="releaselog/3_8_0_2.html">releaselog/3_8_0_2.html</a> +<li>SQLITE_FULL → <a href="34to35.html">34to35.html</a> + <a href="autoinc.html">autoinc.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/get_autocommit.html">c3ref/get_autocommit.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_get_autocommit">capi3ref.html#sqlite3_get_autocommit</a> + <a href="changes.html#version_3_5_1">changes.html#version_3_5_1</a> + <a href="faq.html#q1">faq.html#q1</a> + <a href="fileformat2.html#seqtab">fileformat2.html#seqtab</a> + <a href="lang_transaction.html#immediate">lang_transaction.html#immediate</a> + <a href="releaselog/3_5_1.html">releaselog/3_5_1.html</a> + <a href="rescode.html#ioerr">rescode.html#ioerr</a> + <a href="rescode.html#pve">rescode.html#pve</a> + <a href="vfs.html#shim">vfs.html#shim</a> +<li>SQLITE_FUNCTION → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_HAVE_ISNAN → <a href="changes.html#version_3_6_14">changes.html#version_3_6_14</a> + <a href="releaselog/3_6_14.html">releaselog/3_6_14.html</a> +<li>SQLITE_IGNORE → <a href="c3ref/c_fail.html">c3ref/c_fail.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> + <a href="c3ref/vtab_on_conflict.html">c3ref/vtab_on_conflict.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_FAIL">capi3ref.html#SQLITE_FAIL</a> + <a href="capi3ref.html#sqlite3_set_authorizer">capi3ref.html#sqlite3_set_authorizer</a> + <a href="capi3ref.html#sqlite3_vtab_on_conflict">capi3ref.html#sqlite3_vtab_on_conflict</a> + <a href="lang_delete.html#truncateopt">lang_delete.html#truncateopt</a> +<li>SQLITE_INDEX_CONSTRAINT_EQ → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/index_info.html">c3ref/index_info.html</a> + <a href="c3ref/vtab_in.html">c3ref/vtab_in.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_index_info">capi3ref.html#sqlite3_index_info</a> + <a href="capi3ref.html#sqlite3_vtab_in">capi3ref.html#sqlite3_vtab_in</a> +<li>SQLITE_INDEX_CONSTRAINT_FUNCTION → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="vtab.html#xbestindex">vtab.html#xbestindex</a> + <a href="vtab.html#xfindfunction">vtab.html#xfindfunction</a> +<li>SQLITE_INDEX_CONSTRAINT_GE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_INDEX_CONSTRAINT_GLOB → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_INDEX_CONSTRAINT_GT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_INDEX_CONSTRAINT_IS → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_INDEX_CONSTRAINT_ISNOT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_INDEX_CONSTRAINT_ISNOTNULL → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/vtab_rhs_value.html">c3ref/vtab_rhs_value.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_vtab_rhs_value">capi3ref.html#sqlite3_vtab_rhs_value</a> + <a href="vtab.html#colUsed">vtab.html#colUsed</a> +<li>SQLITE_INDEX_CONSTRAINT_ISNULL → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/vtab_rhs_value.html">c3ref/vtab_rhs_value.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_vtab_rhs_value">capi3ref.html#sqlite3_vtab_rhs_value</a> + <a href="vtab.html#colUsed">vtab.html#colUsed</a> +<li>SQLITE_INDEX_CONSTRAINT_LE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_INDEX_CONSTRAINT_LIKE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_INDEX_CONSTRAINT_LIMIT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_38_0">changes.html#version_3_38_0</a> + <a href="releaselog/3_38_0.html">releaselog/3_38_0.html</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> +<li>SQLITE_INDEX_CONSTRAINT_LT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_INDEX_CONSTRAINT_MATCH → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_INDEX_CONSTRAINT_NE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_INDEX_CONSTRAINT_OFFSET → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_38_0">changes.html#version_3_38_0</a> + <a href="releaselog/3_38_0.html">releaselog/3_38_0.html</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> + <a href="vtab.html#colUsed">vtab.html#colUsed</a> +<li>SQLITE_INDEX_CONSTRAINT_REGEXP → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_INDEX_SCAN_UNIQUE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_INNOCUOUS → <a href="appfunc.html">appfunc.html</a> + <a href="appfunc.html#sec">appfunc.html#sec</a> + <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfigtrustedschema">c3ref/c_dbconfig_defensive.html#sqlitedbconfigtrustedschema</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlitedbconfigtrustedschema">capi3ref.html#sqlitedbconfigtrustedschema</a> + <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> +<li>SQLITE_INSERT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> + <a href="c3ref/update_hook.html">c3ref/update_hook.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_preupdate_blobwrite">capi3ref.html#sqlite3_preupdate_blobwrite</a> + <a href="capi3ref.html#sqlite3_update_hook">capi3ref.html#sqlite3_update_hook</a> + <a href="session.html#sqlite3changeset_new">session.html#sqlite3changeset_new</a> + <a href="session.html#sqlite3changeset_op">session.html#sqlite3changeset_op</a> + <a href="session/sqlite3changeset_new.html">session/sqlite3changeset_new.html</a> + <a href="session/sqlite3changeset_op.html">session/sqlite3changeset_op.html</a> +<li>SQLITE_INTEGER → <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_value_blob">capi3ref.html#sqlite3_value_blob</a> +<li>SQLITE_INTERNAL → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#pve">rescode.html#pve</a> +<li>SQLITE_INTERRUPT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/get_autocommit.html">c3ref/get_autocommit.html</a> + <a href="c3ref/interrupt.html">c3ref/interrupt.html</a> + <a href="c3ref/step.html">c3ref/step.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_get_autocommit">capi3ref.html#sqlite3_get_autocommit</a> + <a href="capi3ref.html#sqlite3_interrupt">capi3ref.html#sqlite3_interrupt</a> + <a href="capi3ref.html#sqlite3_step">capi3ref.html#sqlite3_step</a> + <a href="rescode.html#abort">rescode.html#abort</a> + <a href="rescode.html#pve">rescode.html#pve</a> +<li>SQLITE_IOCAP_ATOMIC → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_io_methods">capi3ref.html#sqlite3_io_methods</a> + <a href="compile.html#enable_atomic_write">compile.html#enable_atomic_write</a> + <a href="psow.html#tornpage">psow.html#tornpage</a> +<li>SQLITE_IOCAP_ATOMIC16K → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_io_methods">capi3ref.html#sqlite3_io_methods</a> +<li>SQLITE_IOCAP_ATOMIC1K → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_io_methods">capi3ref.html#sqlite3_io_methods</a> +<li>SQLITE_IOCAP_ATOMIC2K → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_io_methods">capi3ref.html#sqlite3_io_methods</a> +<li>SQLITE_IOCAP_ATOMIC32K → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_io_methods">capi3ref.html#sqlite3_io_methods</a> +<li>SQLITE_IOCAP_ATOMIC4K → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_io_methods">capi3ref.html#sqlite3_io_methods</a> +<li>SQLITE_IOCAP_ATOMIC512 → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_io_methods">capi3ref.html#sqlite3_io_methods</a> +<li>SQLITE_IOCAP_ATOMIC64K → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_io_methods">capi3ref.html#sqlite3_io_methods</a> +<li>SQLITE_IOCAP_ATOMIC8K → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_io_methods">capi3ref.html#sqlite3_io_methods</a> +<li>SQLITE_IOCAP_BATCH_ATOMIC → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_io_methods">capi3ref.html#sqlite3_io_methods</a> +<li>SQLITE_IOCAP_IMMUTABLE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> + <a href="c3ref/open.html#coreuriqueryparameters">c3ref/open.html#coreuriqueryparameters</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#coreuriqueryparameters">capi3ref.html#coreuriqueryparameters</a> + <a href="capi3ref.html#sqlite3_io_methods">capi3ref.html#sqlite3_io_methods</a> + <a href="changes.html#version_3_8_5">changes.html#version_3_8_5</a> + <a href="releaselog/3_8_5.html">releaselog/3_8_5.html</a> + <a href="uri.html#uriimmutable">uri.html#uriimmutable</a> +<li>SQLITE_IOCAP_POWERSAFE_OVERWRITE → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpowersafeoverwrite">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpowersafeoverwrite</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_io_methods">capi3ref.html#sqlite3_io_methods</a> + <a href="capi3ref.html#sqlitefcntlpowersafeoverwrite">capi3ref.html#sqlitefcntlpowersafeoverwrite</a> + <a href="changes.html#version_3_7_10">changes.html#version_3_7_10</a> + <a href="psow.html#tornpage">psow.html#tornpage</a> + <a href="releaselog/3_7_10.html">releaselog/3_7_10.html</a> +<li>SQLITE_IOCAP_SAFE_APPEND → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_io_methods">capi3ref.html#sqlite3_io_methods</a> +<li>SQLITE_IOCAP_SEQUENTIAL → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_io_methods">capi3ref.html#sqlite3_io_methods</a> +<li>SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_io_methods">capi3ref.html#sqlite3_io_methods</a> +<li>SQLITE_IOERR → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/get_autocommit.html">c3ref/get_autocommit.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_get_autocommit">capi3ref.html#sqlite3_get_autocommit</a> + <a href="changes.html#version_3_5_1">changes.html#version_3_5_1</a> + <a href="lang_transaction.html#immediate">lang_transaction.html#immediate</a> + <a href="releaselog/3_5_1.html">releaselog/3_5_1.html</a> + <a href="rescode.html#ioerr_access">rescode.html#ioerr_access</a> + <a href="rescode.html#ioerr_checkreservedlock">rescode.html#ioerr_checkreservedlock</a> + <a href="rescode.html#ioerr_close">rescode.html#ioerr_close</a> + <a href="rescode.html#ioerr_convpath">rescode.html#ioerr_convpath</a> + <a href="rescode.html#ioerr_corruptfs">rescode.html#ioerr_corruptfs</a> + <a href="rescode.html#ioerr_data">rescode.html#ioerr_data</a> + <a href="rescode.html#ioerr_delete">rescode.html#ioerr_delete</a> + <a href="rescode.html#ioerr_delete_noent">rescode.html#ioerr_delete_noent</a> + <a href="rescode.html#ioerr_dir_fsync">rescode.html#ioerr_dir_fsync</a> + <a href="rescode.html#ioerr_fstat">rescode.html#ioerr_fstat</a> + <a href="rescode.html#ioerr_fsync">rescode.html#ioerr_fsync</a> + <a href="rescode.html#ioerr_gettemppath">rescode.html#ioerr_gettemppath</a> + <a href="rescode.html#ioerr_lock">rescode.html#ioerr_lock</a> + <a href="rescode.html#ioerr_mmap">rescode.html#ioerr_mmap</a> + <a href="rescode.html#ioerr_rdlock">rescode.html#ioerr_rdlock</a> + <a href="rescode.html#ioerr_read">rescode.html#ioerr_read</a> + <a href="rescode.html#ioerr_seek">rescode.html#ioerr_seek</a> + <a href="rescode.html#ioerr_shmmap">rescode.html#ioerr_shmmap</a> + <a href="rescode.html#ioerr_shmopen">rescode.html#ioerr_shmopen</a> + <a href="rescode.html#ioerr_shmsize">rescode.html#ioerr_shmsize</a> + <a href="rescode.html#ioerr_short_read">rescode.html#ioerr_short_read</a> + <a href="rescode.html#ioerr_truncate">rescode.html#ioerr_truncate</a> + <a href="rescode.html#ioerr_unlock">rescode.html#ioerr_unlock</a> + <a href="rescode.html#ioerr_write">rescode.html#ioerr_write</a> + <a href="rescode.html#pve">rescode.html#pve</a> +<li>SQLITE_IOERR_ACCESS → <a href="35to36.html">35to36.html</a> + <a href="c3ref/backup_finish.html#sqlite3backupstep">c3ref/backup_finish.html#sqlite3backupstep</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3backupstep">capi3ref.html#sqlite3backupstep</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_AUTH → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_BEGIN_ATOMIC → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_BLOCKED → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_CHECKRESERVEDLOCK → <a href="35to36.html">35to36.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_CLOSE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_COMMIT_ATOMIC → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_CONVPATH → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#cantopen_convpath">rescode.html#cantopen_convpath</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_CORRUPTFS → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_DATA → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_DELETE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_DELETE_NOENT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_DIR_CLOSE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_DIR_FSYNC → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_FSTAT → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_FSYNC → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_GETTEMPPATH → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_IN_PAGE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_IOERR_LOCK → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_MMAP → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_NOMEM → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_RDLOCK → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_READ → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_ROLLBACK_ATOMIC → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_SEEK → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_SHMLOCK → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_SHMMAP → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_SHMOPEN → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_SHMSIZE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_SHORT_READ → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_TRUNCATE → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_UNLOCK → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_VNODE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_IOERR_WRITE → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_JSON_MAX_DEPTH → <a href="compile.html#yystackdepth">compile.html#yystackdepth</a> +<li>SQLITE_LIKE_DOESNT_MATCH_BLOBS → <a href="changes.html#version_3_10_0">changes.html#version_3_10_0</a> + <a href="compile.html#rcmd">compile.html#rcmd</a> + <a href="releaselog/3_10_0.html">releaselog/3_10_0.html</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> +<li>SQLITE_LIMIT_ATTACHED → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="lang_attach.html">lang_attach.html</a> + <a href="limits.html#max_attached">limits.html#max_attached</a> +<li>SQLITE_LIMIT_COLUMN → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="lang_createindex.html">lang_createindex.html</a> + <a href="limits.html#max_column">limits.html#max_column</a> +<li>SQLITE_LIMIT_COMPOUND_SELECT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="lang_select.html#values">lang_select.html#values</a> + <a href="limits.html#max_compound_select">limits.html#max_compound_select</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> +<li>SQLITE_LIMIT_EXPR_DEPTH → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="limits.html#max_expr_depth">limits.html#max_expr_depth</a> +<li>SQLITE_LIMIT_FUNCTION_ARG → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/create_function.html">c3ref/create_function.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_create_function">capi3ref.html#sqlite3_create_function</a> + <a href="limits.html#max_function_arg">limits.html#max_function_arg</a> +<li>SQLITE_LIMIT_LENGTH → <a href="c3ref/bind_blob.html#byteorderdeterminationrules">c3ref/bind_blob.html#byteorderdeterminationrules</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/expanded_sql.html">c3ref/expanded_sql.html</a> + <a href="c3ref/str_new.html">c3ref/str_new.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#byteorderdeterminationrules">capi3ref.html#byteorderdeterminationrules</a> + <a href="capi3ref.html#sqlite3_expanded_sql">capi3ref.html#sqlite3_expanded_sql</a> + <a href="capi3ref.html#sqlite3_str_new">capi3ref.html#sqlite3_str_new</a> + <a href="compile.html#printf_precision_limit">compile.html#printf_precision_limit</a> + <a href="limits.html">limits.html</a> + <a href="limits.html#max_length">limits.html#max_length</a> + <a href="rescode.html#toobig">rescode.html#toobig</a> +<li>SQLITE_LIMIT_LIKE_PATTERN_LENGTH → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="limits.html#max_like_pattern_length">limits.html#max_like_pattern_length</a> +<li>SQLITE_LIMIT_SQL_LENGTH → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_39_1">changes.html#version_3_39_1</a> + <a href="limits.html#max_sql_length">limits.html#max_sql_length</a> + <a href="releaselog/3_39_1.html">releaselog/3_39_1.html</a> + <a href="releaselog/3_39_2.html">releaselog/3_39_2.html</a> + <a href="releaselog/3_39_3.html">releaselog/3_39_3.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> + <a href="rescode.html#toobig">rescode.html#toobig</a> +<li>SQLITE_LIMIT_TRIGGER_DEPTH → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="foreignkeys.html#fk_actions">foreignkeys.html#fk_actions</a> + <a href="pragma.html#pragma_recursive_triggers">pragma.html#pragma_recursive_triggers</a> +<li>SQLITE_LIMIT_VARIABLE_NUMBER → <a href="c3ref/bind_blob.html">c3ref/bind_blob.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_bind_blob">capi3ref.html#sqlite3_bind_blob</a> + <a href="lang_expr.html#varparam">lang_expr.html#varparam</a> + <a href="limits.html#max_variable_number">limits.html#max_variable_number</a> +<li>SQLITE_LIMIT_VDBE_OP → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_18_0">changes.html#version_3_18_0</a> + <a href="releaselog/3_18_0.html">releaselog/3_18_0.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> +<li>SQLITE_LIMIT_WORKER_THREADS → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_8_7">changes.html#version_3_8_7</a> + <a href="compile.html#default_worker_threads">compile.html#default_worker_threads</a> + <a href="compile.html#max_worker_threads">compile.html#max_worker_threads</a> + <a href="pragma.html#pragma_threads">pragma.html#pragma_threads</a> + <a href="releaselog/3_8_7.html">releaselog/3_8_7.html</a> +<li>SQLITE_LOCK_EXCLUSIVE → <a href="34to35.html">34to35.html</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntllockstate">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntllockstate</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_io_methods">capi3ref.html#sqlite3_io_methods</a> + <a href="capi3ref.html#sqlitefcntllockstate">capi3ref.html#sqlitefcntllockstate</a> +<li>SQLITE_LOCK_NONE → <a href="34to35.html">34to35.html</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntllockstate">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntllockstate</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_io_methods">capi3ref.html#sqlite3_io_methods</a> + <a href="capi3ref.html#sqlitefcntllockstate">capi3ref.html#sqlitefcntllockstate</a> +<li>SQLITE_LOCK_PENDING → <a href="34to35.html">34to35.html</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntllockstate">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntllockstate</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_io_methods">capi3ref.html#sqlite3_io_methods</a> + <a href="capi3ref.html#sqlitefcntllockstate">capi3ref.html#sqlitefcntllockstate</a> +<li>SQLITE_LOCK_RESERVED → <a href="34to35.html">34to35.html</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntllockstate">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntllockstate</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_io_methods">capi3ref.html#sqlite3_io_methods</a> + <a href="capi3ref.html#sqlitefcntllockstate">capi3ref.html#sqlitefcntllockstate</a> +<li>SQLITE_LOCK_SHARED → <a href="34to35.html">34to35.html</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntllockstate">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntllockstate</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_io_methods">capi3ref.html#sqlite3_io_methods</a> + <a href="capi3ref.html#sqlitefcntllockstate">capi3ref.html#sqlitefcntllockstate</a> +<li>SQLITE_LOCKED → <a href="c3ref/backup_finish.html#sqlite3backupfinish">c3ref/backup_finish.html#sqlite3backupfinish</a> + <a href="c3ref/backup_finish.html#sqlite3backupstep">c3ref/backup_finish.html#sqlite3backupstep</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/unlock_notify.html">c3ref/unlock_notify.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_unlock_notify">capi3ref.html#sqlite3_unlock_notify</a> + <a href="capi3ref.html#sqlite3backupfinish">capi3ref.html#sqlite3backupfinish</a> + <a href="capi3ref.html#sqlite3backupstep">capi3ref.html#sqlite3backupstep</a> + <a href="compile.html#omit_autoreset">compile.html#omit_autoreset</a> + <a href="rescode.html#busy">rescode.html#busy</a> + <a href="rescode.html#pve">rescode.html#pve</a> + <a href="rtree.html#readwrite">rtree.html#readwrite</a> +<li>SQLITE_LOCKED_SHAREDCACHE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_LOCKED_VTAB → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>sqlite_master table → <a href="changes.html#version_3_30_0">changes.html#version_3_30_0</a> + <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="releaselog/3_30_0.html">releaselog/3_30_0.html</a> + <a href="releaselog/3_30_1.html">releaselog/3_30_1.html</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> +<li>SQLITE_MAX_ALLOCATION_SIZE → <a href="changes.html#version_3_40_0">changes.html#version_3_40_0</a> + <a href="compile.html#max_memory">compile.html#max_memory</a> + <a href="compile.html#yystackdepth">compile.html#yystackdepth</a> + <a href="releaselog/3_40_0.html">releaselog/3_40_0.html</a> + <a href="releaselog/3_40_1.html">releaselog/3_40_1.html</a> + <a href="security.html">security.html</a> +<li>SQLITE_MAX_ATTACHED → <a href="changes.html#version_3_7_6">changes.html#version_3_7_6</a> + <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="compile.html#yystackdepth">compile.html#yystackdepth</a> + <a href="releaselog/3_7_6.html">releaselog/3_7_6.html</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> +<li>SQLITE_MAX_COLUMN → <a href="compile.html#yystackdepth">compile.html#yystackdepth</a> + <a href="lang_createtable.html#tablecoldef">lang_createtable.html#tablecoldef</a> +<li>SQLITE_MAX_COMPOUND_SELECT → <a href="compile.html#yystackdepth">compile.html#yystackdepth</a> +<li>SQLITE_MAX_EXPR_DEPTH → <a href="compile.html#rcmd">compile.html#rcmd</a> + <a href="compile.html#yystackdepth">compile.html#yystackdepth</a> +<li>SQLITE_MAX_FUNCTION_ARG → <a href="appfunc.html">appfunc.html</a> + <a href="compile.html#yystackdepth">compile.html#yystackdepth</a> +<li>SQLITE_MAX_LENGTH → <a href="c3ref/bind_blob.html#byteorderdeterminationrules">c3ref/bind_blob.html#byteorderdeterminationrules</a> + <a href="c3ref/str_errcode.html">c3ref/str_errcode.html</a> + <a href="c3ref/str_new.html">c3ref/str_new.html</a> + <a href="capi3ref.html#byteorderdeterminationrules">capi3ref.html#byteorderdeterminationrules</a> + <a href="capi3ref.html#sqlite3_str_errcode">capi3ref.html#sqlite3_str_errcode</a> + <a href="capi3ref.html#sqlite3_str_new">capi3ref.html#sqlite3_str_new</a> + <a href="compile.html#yystackdepth">compile.html#yystackdepth</a> + <a href="datatype3.html#affname">datatype3.html#affname</a> + <a href="fts5.html#_summary_of_technical_differences_">fts5.html#_summary_of_technical_differences_</a> + <a href="lang_createtable.html#tablecoldef">lang_createtable.html#tablecoldef</a> + <a href="rescode.html#toobig">rescode.html#toobig</a> +<li>SQLITE_MAX_LIKE_PATTERN_LENGTH → <a href="compile.html#yystackdepth">compile.html#yystackdepth</a> +<li>SQLITE_MAX_MEMORY → <a href="changes.html#version_3_18_0">changes.html#version_3_18_0</a> + <a href="compile.html#default_memstatus">compile.html#default_memstatus</a> + <a href="compile.html#max_allocation_size">compile.html#max_allocation_size</a> + <a href="compile.html#yystackdepth">compile.html#yystackdepth</a> + <a href="releaselog/3_18_0.html">releaselog/3_18_0.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> +<li>SQLITE_MAX_MMAP_SIZE → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigmmapsize">c3ref/c_config_covering_index_scan.html#sqliteconfigmmapsize</a> + <a href="capi3ref.html#sqliteconfigmmapsize">capi3ref.html#sqliteconfigmmapsize</a> + <a href="compile.html#default_mmap_size">compile.html#default_mmap_size</a> + <a href="compile.html#yystackdepth">compile.html#yystackdepth</a> + <a href="mmap.html">mmap.html</a> + <a href="pragma.html#pragma_mmap_size">pragma.html#pragma_mmap_size</a> +<li>SQLITE_MAX_PAGE_COUNT → <a href="changes.html#version_3_45_0">changes.html#version_3_45_0</a> + <a href="compile.html#yystackdepth">compile.html#yystackdepth</a> + <a href="releaselog/3_45_0.html">releaselog/3_45_0.html</a> + <a href="releaselog/3_45_1.html">releaselog/3_45_1.html</a> +<li>SQLITE_MAX_SCHEMA_RETRY → <a href="c3ref/prepare.html">c3ref/prepare.html</a> + <a href="capi3ref.html#sqlite3_prepare">capi3ref.html#sqlite3_prepare</a> + <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> + <a href="rescode.html#schema">rescode.html#schema</a> +<li>SQLITE_MAX_SQL_LENGTH → <a href="compile.html#yystackdepth">compile.html#yystackdepth</a> + <a href="rescode.html#toobig">rescode.html#toobig</a> +<li>SQLITE_MAX_TRIGGER_DEPTH → <a href="foreignkeys.html#fk_actions">foreignkeys.html#fk_actions</a> + <a href="pragma.html#pragma_recursive_triggers">pragma.html#pragma_recursive_triggers</a> +<li>SQLITE_MAX_VARIABLE_NUMBER → <a href="changes.html#version_3_32_0">changes.html#version_3_32_0</a> + <a href="compile.html#yystackdepth">compile.html#yystackdepth</a> + <a href="lang_expr.html#varparam">lang_expr.html#varparam</a> + <a href="releaselog/3_32_0.html">releaselog/3_32_0.html</a> + <a href="releaselog/3_32_1.html">releaselog/3_32_1.html</a> + <a href="releaselog/3_32_2.html">releaselog/3_32_2.html</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> +<li>SQLITE_MAX_WORKER_THREADS → <a href="compile.html#default_worker_threads">compile.html#default_worker_threads</a> +<li>SQLITE_MEMDB_DEFAULT_MAXSIZE → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigmemdbmaxsize">c3ref/c_config_covering_index_scan.html#sqliteconfigmemdbmaxsize</a> + <a href="capi3ref.html#sqliteconfigmemdbmaxsize">capi3ref.html#sqliteconfigmemdbmaxsize</a> + <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> +<li>SQLITE_MEMDEBUG → <a href="malloc.html">malloc.html</a> + <a href="malloc.html#memdebug">malloc.html#memdebug</a> + <a href="testing.html#memtesting">testing.html#memtesting</a> + <a href="th3.html">th3.html</a> +<li>sqlite_memstat → <a href="vtablist.html">vtablist.html</a> +<li>SQLITE_MINIMUM_FILE_DESCRIPTOR → <a href="changes.html#version_3_8_1">changes.html#version_3_8_1</a> + <a href="howtocorrupt.html#stalefd">howtocorrupt.html#stalefd</a> + <a href="releaselog/3_8_1.html">releaselog/3_8_1.html</a> +<li>SQLITE_MISMATCH → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#pve">rescode.html#pve</a> +<li>SQLITE_MISUSE → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/bind_blob.html#byteorderdeterminationrules">c3ref/bind_blob.html#byteorderdeterminationrules</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/create_function.html">c3ref/create_function.html</a> + <a href="c3ref/step.html">c3ref/step.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#byteorderdeterminationrules">capi3ref.html#byteorderdeterminationrules</a> + <a href="capi3ref.html#sqlite3_create_function">capi3ref.html#sqlite3_create_function</a> + <a href="capi3ref.html#sqlite3_step">capi3ref.html#sqlite3_step</a> + <a href="changes.html#version_3_5_3">changes.html#version_3_5_3</a> + <a href="changes.html#version_3_6_15">changes.html#version_3_6_15</a> + <a href="compile.html#omit_autoreset">compile.html#omit_autoreset</a> + <a href="releaselog/3_5_3.html">releaselog/3_5_3.html</a> + <a href="releaselog/3_6_15.html">releaselog/3_6_15.html</a> + <a href="rescode.html#pve">rescode.html#pve</a> + <a href="session.html#sqlite3changeset_conflict">session.html#sqlite3changeset_conflict</a> + <a href="session.html#sqlite3changeset_finalize">session.html#sqlite3changeset_finalize</a> + <a href="session.html#sqlite3changeset_new">session.html#sqlite3changeset_new</a> + <a href="session.html#sqlite3changeset_old">session.html#sqlite3changeset_old</a> + <a href="session.html#sqlite3changeset_op">session.html#sqlite3changeset_op</a> + <a href="session/sqlite3changeset_conflict.html">session/sqlite3changeset_conflict.html</a> + <a href="session/sqlite3changeset_finalize.html">session/sqlite3changeset_finalize.html</a> + <a href="session/sqlite3changeset_new.html">session/sqlite3changeset_new.html</a> + <a href="session/sqlite3changeset_old.html">session/sqlite3changeset_old.html</a> + <a href="session/sqlite3changeset_op.html">session/sqlite3changeset_op.html</a> +<li>SQLITE_MUTEX_FAST → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_MUTEX_RECURSIVE → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_MUTEX_STATIC_APP1 → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_MUTEX_STATIC_APP2 → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_MUTEX_STATIC_APP3 → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_MUTEX_STATIC_LRU → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_MUTEX_STATIC_LRU2 → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_MUTEX_STATIC_MAIN → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/mem_methods.html">c3ref/mem_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_mem_methods">capi3ref.html#sqlite3_mem_methods</a> +<li>SQLITE_MUTEX_STATIC_MEM → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/mem_methods.html">c3ref/mem_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_mem_methods">capi3ref.html#sqlite3_mem_methods</a> +<li>SQLITE_MUTEX_STATIC_MEM2 → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_MUTEX_STATIC_OPEN → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_MUTEX_STATIC_PMEM → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_MUTEX_STATIC_PRNG → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_MUTEX_STATIC_VFS1 → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> +<li>SQLITE_MUTEX_STATIC_VFS2 → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_MUTEX_STATIC_VFS3 → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_NOLFS → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#pve">rescode.html#pve</a> +<li>SQLITE_NOMEM → <a href="c3ref/backup_finish.html#sqlite3backupstep">c3ref/backup_finish.html#sqlite3backupstep</a> + <a href="c3ref/bind_blob.html#byteorderdeterminationrules">c3ref/bind_blob.html#byteorderdeterminationrules</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/get_autocommit.html">c3ref/get_autocommit.html</a> + <a href="c3ref/hard_heap_limit64.html">c3ref/hard_heap_limit64.html</a> + <a href="c3ref/str_errcode.html">c3ref/str_errcode.html</a> + <a href="c3ref/win32_set_directory.html">c3ref/win32_set_directory.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#byteorderdeterminationrules">capi3ref.html#byteorderdeterminationrules</a> + <a href="capi3ref.html#sqlite3_get_autocommit">capi3ref.html#sqlite3_get_autocommit</a> + <a href="capi3ref.html#sqlite3_hard_heap_limit64">capi3ref.html#sqlite3_hard_heap_limit64</a> + <a href="capi3ref.html#sqlite3_str_errcode">capi3ref.html#sqlite3_str_errcode</a> + <a href="capi3ref.html#sqlite3_win32_set_directory">capi3ref.html#sqlite3_win32_set_directory</a> + <a href="capi3ref.html#sqlite3backupstep">capi3ref.html#sqlite3backupstep</a> + <a href="lang_transaction.html#immediate">lang_transaction.html#immediate</a> + <a href="malloc.html">malloc.html</a> + <a href="malloc.html#nofrag">malloc.html#nofrag</a> + <a href="rescode.html#ioerr_nomem">rescode.html#ioerr_nomem</a> + <a href="rescode.html#pve">rescode.html#pve</a> + <a href="session.html#sqlite3changeset_finalize">session.html#sqlite3changeset_finalize</a> + <a href="session/sqlite3changeset_finalize.html">session/sqlite3changeset_finalize.html</a> + <a href="vtab.html#obc">vtab.html#obc</a> +<li>SQLITE_NOTADB → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#pve">rescode.html#pve</a> +<li>SQLITE_NOTFOUND → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpragma">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpragma</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> + <a href="c3ref/vtab_rhs_value.html">c3ref/vtab_rhs_value.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_io_methods">capi3ref.html#sqlite3_io_methods</a> + <a href="capi3ref.html#sqlite3_vtab_rhs_value">capi3ref.html#sqlite3_vtab_rhs_value</a> + <a href="capi3ref.html#sqlitefcntlpragma">capi3ref.html#sqlitefcntlpragma</a> + <a href="changes.html#version_3_7_5">changes.html#version_3_7_5</a> + <a href="releaselog/3_7_5.html">releaselog/3_7_5.html</a> + <a href="rescode.html#pve">rescode.html#pve</a> + <a href="vtab.html#colUsed">vtab.html#colUsed</a> +<li>SQLITE_NOTICE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#pve">rescode.html#pve</a> +<li>SQLITE_NOTICE_RBU → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_NOTICE_RECOVER_ROLLBACK → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_NOTICE_RECOVER_WAL → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_NULL → <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_value_blob">capi3ref.html#sqlite3_value_blob</a> +<li>sqlite_offset → <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="compile.html#enable_offset_sql_func">compile.html#enable_offset_sql_func</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> +<li>sqlite_offset SQL function → <a href="changes.html#version_3_38_1">changes.html#version_3_38_1</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> +<li>SQLITE_OK → <a href="34to35.html">34to35.html</a> + <a href="c3ref/backup_finish.html#sqlite3backupfinish">c3ref/backup_finish.html#sqlite3backupfinish</a> + <a href="c3ref/backup_finish.html#sqlite3backupstep">c3ref/backup_finish.html#sqlite3backupstep</a> + <a href="c3ref/bind_blob.html#byteorderdeterminationrules">c3ref/bind_blob.html#byteorderdeterminationrules</a> + <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> + <a href="c3ref/c_deny.html">c3ref/c_deny.html</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlcommitatomicwrite">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlcommitatomicwrite</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpragma">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpragma</a> + <a href="c3ref/close.html">c3ref/close.html</a> + <a href="c3ref/config.html">c3ref/config.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/enable_shared_cache.html">c3ref/enable_shared_cache.html</a> + <a href="c3ref/initialize.html">c3ref/initialize.html</a> + <a href="c3ref/intro.html">c3ref/intro.html</a> + <a href="c3ref/load_extension.html">c3ref/load_extension.html</a> + <a href="c3ref/mutex_alloc.html">c3ref/mutex_alloc.html</a> + <a href="c3ref/open.html">c3ref/open.html</a> + <a href="c3ref/prepare.html">c3ref/prepare.html</a> + <a href="c3ref/reset.html">c3ref/reset.html</a> + <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> + <a href="c3ref/str_errcode.html">c3ref/str_errcode.html</a> + <a href="c3ref/vfs.html#sqlite3vfsxaccess">c3ref/vfs.html#sqlite3vfsxaccess</a> + <a href="c3ref/wal_hook.html">c3ref/wal_hook.html</a> + <a href="c3ref/win32_set_directory.html">c3ref/win32_set_directory.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_DENY">capi3ref.html#SQLITE_DENY</a> + <a href="capi3ref.html#byteorderdeterminationrules">capi3ref.html#byteorderdeterminationrules</a> + <a href="capi3ref.html#sqlite3_blob_open">capi3ref.html#sqlite3_blob_open</a> + <a href="capi3ref.html#sqlite3_close">capi3ref.html#sqlite3_close</a> + <a href="capi3ref.html#sqlite3_config">capi3ref.html#sqlite3_config</a> + <a href="capi3ref.html#sqlite3_enable_shared_cache">capi3ref.html#sqlite3_enable_shared_cache</a> + <a href="capi3ref.html#sqlite3_initialize">capi3ref.html#sqlite3_initialize</a> + <a href="capi3ref.html#sqlite3_load_extension">capi3ref.html#sqlite3_load_extension</a> + <a href="capi3ref.html#sqlite3_mutex_alloc">capi3ref.html#sqlite3_mutex_alloc</a> + <a href="capi3ref.html#sqlite3_open">capi3ref.html#sqlite3_open</a> + <a href="capi3ref.html#sqlite3_prepare">capi3ref.html#sqlite3_prepare</a> + <a href="capi3ref.html#sqlite3_reset">capi3ref.html#sqlite3_reset</a> + <a href="capi3ref.html#sqlite3_set_authorizer">capi3ref.html#sqlite3_set_authorizer</a> + <a href="capi3ref.html#sqlite3_str_errcode">capi3ref.html#sqlite3_str_errcode</a> + <a href="capi3ref.html#sqlite3_wal_hook">capi3ref.html#sqlite3_wal_hook</a> + <a href="capi3ref.html#sqlite3_win32_set_directory">capi3ref.html#sqlite3_win32_set_directory</a> + <a href="capi3ref.html#sqlite3backupfinish">capi3ref.html#sqlite3backupfinish</a> + <a href="capi3ref.html#sqlite3backupstep">capi3ref.html#sqlite3backupstep</a> + <a href="capi3ref.html#sqlite3vfsxaccess">capi3ref.html#sqlite3vfsxaccess</a> + <a href="capi3ref.html#sqlitefcntlcommitatomicwrite">capi3ref.html#sqlitefcntlcommitatomicwrite</a> + <a href="capi3ref.html#sqlitefcntlpragma">capi3ref.html#sqlitefcntlpragma</a> + <a href="pragma.html#pragma_wal_checkpoint">pragma.html#pragma_wal_checkpoint</a> + <a href="rescode.html">rescode.html</a> + <a href="rescode.html#pve">rescode.html#pve</a> + <a href="vtab.html#xcolumn">vtab.html#xcolumn</a> + <a href="vtab.html#xconnect">vtab.html#xconnect</a> + <a href="vtab.html#xcreate">vtab.html#xcreate</a> + <a href="vtab.html#xfilter">vtab.html#xfilter</a> + <a href="vtab.html#xnext">vtab.html#xnext</a> + <a href="vtab.html#xopen">vtab.html#xopen</a> + <a href="vtab.html#xrename">vtab.html#xrename</a> + <a href="vtab.html#xrowid">vtab.html#xrowid</a> + <a href="vtab.html#xupdate">vtab.html#xupdate</a> +<li>SQLITE_OK_LOAD_PERMANENTLY → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="loadext.html#persist">loadext.html#persist</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_OK_SYMLINK → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_OMIT_ALTERTABLE → <a href="howtocompile.html#amal">howtocompile.html#amal</a> +<li>SQLITE_OMIT_ANALYZE → <a href="howtocompile.html#amal">howtocompile.html#amal</a> +<li>SQLITE_OMIT_ATTACH → <a href="howtocompile.html#amal">howtocompile.html#amal</a> +<li>SQLITE_OMIT_AUTOINCREMENT → <a href="howtocompile.html#amal">howtocompile.html#amal</a> +<li>SQLITE_OMIT_AUTOINIT → <a href="c3ref/initialize.html">c3ref/initialize.html</a> + <a href="capi3ref.html#sqlite3_initialize">capi3ref.html#sqlite3_initialize</a> + <a href="changes.html#version_3_7_14">changes.html#version_3_7_14</a> + <a href="compile.html#rcmd">compile.html#rcmd</a> + <a href="releaselog/3_7_14.html">releaselog/3_7_14.html</a> +<li>SQLITE_OMIT_AUTOMATIC_INDEX → <a href="compile.html#default_automatic_index">compile.html#default_automatic_index</a> + <a href="optoverview.html#autoindex">optoverview.html#autoindex</a> +<li>SQLITE_OMIT_AUTORESET → <a href="c3ref/step.html">c3ref/step.html</a> + <a href="capi3ref.html#sqlite3_step">capi3ref.html#sqlite3_step</a> + <a href="changes.html#version_3_7_5">changes.html#version_3_7_5</a> + <a href="changes.html#version_3_8_9">changes.html#version_3_8_9</a> + <a href="releaselog/3_7_5.html">releaselog/3_7_5.html</a> + <a href="releaselog/3_8_9.html">releaselog/3_8_9.html</a> +<li>SQLITE_OMIT_BUILTIN_TEST → <a href="changes.html#version_3_16_0">changes.html#version_3_16_0</a> + <a href="releaselog/3_16_0.html">releaselog/3_16_0.html</a> + <a href="releaselog/3_16_1.html">releaselog/3_16_1.html</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> +<li>SQLITE_OMIT_CAST → <a href="howtocompile.html#amal">howtocompile.html#amal</a> +<li>SQLITE_OMIT_COMPILEOPTION_DIAGS → <a href="c3ref/compileoption_get.html">c3ref/compileoption_get.html</a> + <a href="capi3ref.html#sqlite3_compileoption_get">capi3ref.html#sqlite3_compileoption_get</a> +<li>SQLITE_OMIT_COMPOUND_SELECT → <a href="howtocompile.html#amal">howtocompile.html#amal</a> +<li>SQLITE_OMIT_DATETIME_FUNCS → <a href="compile.html#gmtime_r">compile.html#gmtime_r</a> +<li>SQLITE_OMIT_DECLTYPE → <a href="compile.html#rcmd">compile.html#rcmd</a> +<li>SQLITE_OMIT_DEPRECATED → <a href="changes.html#version_3_11_0">changes.html#version_3_11_0</a> + <a href="compile.html#rcmd">compile.html#rcmd</a> + <a href="pragma.html#pragma_case_sensitive_like">pragma.html#pragma_case_sensitive_like</a> + <a href="pragma.html#pragma_count_changes">pragma.html#pragma_count_changes</a> + <a href="pragma.html#pragma_data_store_directory">pragma.html#pragma_data_store_directory</a> + <a href="pragma.html#pragma_default_cache_size">pragma.html#pragma_default_cache_size</a> + <a href="pragma.html#pragma_empty_result_callbacks">pragma.html#pragma_empty_result_callbacks</a> + <a href="pragma.html#pragma_full_column_names">pragma.html#pragma_full_column_names</a> + <a href="pragma.html#pragma_short_column_names">pragma.html#pragma_short_column_names</a> + <a href="pragma.html#pragma_temp_store_directory">pragma.html#pragma_temp_store_directory</a> + <a href="releaselog/3_11_0.html">releaselog/3_11_0.html</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> +<li>SQLITE_OMIT_DESERIALIZE → <a href="c3ref/deserialize.html">c3ref/deserialize.html</a> + <a href="c3ref/serialize.html">c3ref/serialize.html</a> + <a href="capi3ref.html#sqlite3_deserialize">capi3ref.html#sqlite3_deserialize</a> + <a href="capi3ref.html#sqlite3_serialize">capi3ref.html#sqlite3_serialize</a> + <a href="compile.html#enable_deserialize">compile.html#enable_deserialize</a> +<li>SQLITE_OMIT_EXPLAIN → <a href="howtocompile.html#amal">howtocompile.html#amal</a> +<li>SQLITE_OMIT_FLOATING_POINT → <a href="changes.html#version_3_3_3">changes.html#version_3_3_3</a> + <a href="changes.html#version_3_6_23">changes.html#version_3_6_23</a> + <a href="changes.html#version_3_7_14">changes.html#version_3_7_14</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_3_0.html">releaselog/3_3_0.html</a> + <a href="releaselog/3_6_23.html">releaselog/3_6_23.html</a> + <a href="releaselog/3_7_14.html">releaselog/3_7_14.html</a> +<li>SQLITE_OMIT_FOREIGN_KEY → <a href="foreignkeys.html#fk_enable">foreignkeys.html#fk_enable</a> + <a href="howtocompile.html#amal">howtocompile.html#amal</a> +<li>SQLITE_OMIT_INTROSPECTION_PRAGMAS → <a href="compile.html#introspection_pragmas">compile.html#introspection_pragmas</a> +<li>SQLITE_OMIT_LOAD_EXTENSION → <a href="34to35.html">34to35.html</a> + <a href="howtocompile.html#cli">howtocompile.html#cli</a> + <a href="loadext.html#statext">loadext.html#statext</a> +<li>SQLITE_OMIT_PRAGMA → <a href="howtocompile.html#amal">howtocompile.html#amal</a> +<li>SQLITE_OMIT_PROGRESS_CALLBACK → <a href="compile.html#rcmd">compile.html#rcmd</a> +<li>SQLITE_OMIT_REINDEX → <a href="howtocompile.html#amal">howtocompile.html#amal</a> +<li>SQLITE_OMIT_SHARED_CACHE → <a href="compile.html#rcmd">compile.html#rcmd</a> +<li>SQLITE_OMIT_SUBQUERY → <a href="howtocompile.html#amal">howtocompile.html#amal</a> +<li>SQLITE_OMIT_TEMPDB → <a href="howtocompile.html#amal">howtocompile.html#amal</a> +<li>SQLITE_OMIT_TRACE → <a href="c3ref/expanded_sql.html">c3ref/expanded_sql.html</a> + <a href="capi3ref.html#sqlite3_expanded_sql">capi3ref.html#sqlite3_expanded_sql</a> +<li>SQLITE_OMIT_TRIGGER → <a href="foreignkeys.html#fk_enable">foreignkeys.html#fk_enable</a> + <a href="howtocompile.html#amal">howtocompile.html#amal</a> +<li>SQLITE_OMIT_TRUNCATE_OPTIMIZATION → <a href="changes.html#version_3_6_4">changes.html#version_3_6_4</a> + <a href="changes.html#version_3_6_5">changes.html#version_3_6_5</a> + <a href="lang_delete.html#truncateopt">lang_delete.html#truncateopt</a> + <a href="releaselog/3_6_4.html">releaselog/3_6_4.html</a> + <a href="releaselog/3_6_5.html">releaselog/3_6_5.html</a> +<li>SQLITE_OMIT_VACUUM → <a href="howtocompile.html#amal">howtocompile.html#amal</a> +<li>SQLITE_OMIT_VIEW → <a href="howtocompile.html#amal">howtocompile.html#amal</a> +<li>SQLITE_OMIT_VIRTUALTABLE → <a href="fts3.html#compiling_and_enabling_fts3_and_fts4">fts3.html#compiling_and_enabling_fts3_and_fts4</a> + <a href="howtocompile.html#amal">howtocompile.html#amal</a> +<li>SQLITE_OMIT_WINDOWFUNC → <a href="changes.html#version_3_39_1">changes.html#version_3_39_1</a> + <a href="releaselog/3_39_1.html">releaselog/3_39_1.html</a> + <a href="releaselog/3_39_2.html">releaselog/3_39_2.html</a> + <a href="releaselog/3_39_3.html">releaselog/3_39_3.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> +<li>SQLITE_OPEN_AUTOPROXY → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_OPEN_CREATE → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/open.html">c3ref/open.html</a> + <a href="c3ref/vfs.html#sqlite3vfsxopen">c3ref/vfs.html#sqlite3vfsxopen</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_open">capi3ref.html#sqlite3_open</a> + <a href="capi3ref.html#sqlite3vfsxopen">capi3ref.html#sqlite3vfsxopen</a> +<li>SQLITE_OPEN_DELETEONCLOSE → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/vfs.html#sqlite3vfsxopen">c3ref/vfs.html#sqlite3vfsxopen</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3vfsxopen">capi3ref.html#sqlite3vfsxopen</a> +<li>SQLITE_OPEN_EXCLUSIVE → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/vfs.html#sqlite3vfsxopen">c3ref/vfs.html#sqlite3vfsxopen</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3vfsxopen">capi3ref.html#sqlite3vfsxopen</a> +<li>SQLITE_OPEN_EXRESCODE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/open.html#openexrescode">c3ref/open.html#openexrescode</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#openexrescode">capi3ref.html#openexrescode</a> + <a href="changes.html#version_3_37_0">changes.html#version_3_37_0</a> + <a href="releaselog/3_37_0.html">releaselog/3_37_0.html</a> + <a href="releaselog/3_37_1.html">releaselog/3_37_1.html</a> + <a href="releaselog/3_37_2.html">releaselog/3_37_2.html</a> +<li>SQLITE_OPEN_FULLMUTEX → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/open.html">c3ref/open.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_open">capi3ref.html#sqlite3_open</a> + <a href="compile.html#threadsafe">compile.html#threadsafe</a> + <a href="threadsafe.html">threadsafe.html</a> +<li>SQLITE_OPEN_MAIN_DB → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/vfs.html#sqlite3vfsxopen">c3ref/vfs.html#sqlite3vfsxopen</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3vfsxopen">capi3ref.html#sqlite3vfsxopen</a> +<li>SQLITE_OPEN_MAIN_JOURNAL → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/database_file_object.html">c3ref/database_file_object.html</a> + <a href="c3ref/vfs.html#sqlite3vfsxopen">c3ref/vfs.html#sqlite3vfsxopen</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_database_file_object">capi3ref.html#sqlite3_database_file_object</a> + <a href="capi3ref.html#sqlite3vfsxopen">capi3ref.html#sqlite3vfsxopen</a> +<li>SQLITE_OPEN_MEMORY → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/open.html">c3ref/open.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_open">capi3ref.html#sqlite3_open</a> +<li>SQLITE_OPEN_NOFOLLOW → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/open.html#opennofollow">c3ref/open.html#opennofollow</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#opennofollow">capi3ref.html#opennofollow</a> + <a href="changes.html#version_3_39_0">changes.html#version_3_39_0</a> + <a href="releaselog/3_39_0.html">releaselog/3_39_0.html</a> + <a href="releaselog/3_39_1.html">releaselog/3_39_1.html</a> + <a href="releaselog/3_39_2.html">releaselog/3_39_2.html</a> + <a href="releaselog/3_39_3.html">releaselog/3_39_3.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> + <a href="rescode.html#cantopen_symlink">rescode.html#cantopen_symlink</a> +<li>SQLITE_OPEN_NOMUTEX → <a href="35to36.html">35to36.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/open.html">c3ref/open.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_open">capi3ref.html#sqlite3_open</a> + <a href="changes.html#version_3_6_1">changes.html#version_3_6_1</a> + <a href="compile.html#threadsafe">compile.html#threadsafe</a> + <a href="releaselog/3_6_0.html">releaselog/3_6_0.html</a> + <a href="threadsafe.html">threadsafe.html</a> +<li>SQLITE_OPEN_PRIVATECACHE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/open.html">c3ref/open.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_open">capi3ref.html#sqlite3_open</a> + <a href="changes.html#version_3_6_18">changes.html#version_3_6_18</a> + <a href="releaselog/3_6_18.html">releaselog/3_6_18.html</a> + <a href="sharedcache.html#dontuse">sharedcache.html#dontuse</a> +<li>SQLITE_OPEN_READONLY → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/intro.html">c3ref/intro.html</a> + <a href="c3ref/open.html">c3ref/open.html</a> + <a href="c3ref/open.html#coreuriqueryparameters">c3ref/open.html#coreuriqueryparameters</a> + <a href="c3ref/open.html#opennofollow">c3ref/open.html#opennofollow</a> + <a href="c3ref/vfs.html#sqlite3vfsxopen">c3ref/vfs.html#sqlite3vfsxopen</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#coreuriqueryparameters">capi3ref.html#coreuriqueryparameters</a> + <a href="capi3ref.html#opennofollow">capi3ref.html#opennofollow</a> + <a href="capi3ref.html#sqlite3_open">capi3ref.html#sqlite3_open</a> + <a href="capi3ref.html#sqlite3vfsxopen">capi3ref.html#sqlite3vfsxopen</a> +<li>SQLITE_OPEN_READWRITE → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/open.html">c3ref/open.html</a> + <a href="c3ref/vfs.html#sqlite3vfsxopen">c3ref/vfs.html#sqlite3vfsxopen</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_open">capi3ref.html#sqlite3_open</a> + <a href="capi3ref.html#sqlite3vfsxopen">capi3ref.html#sqlite3vfsxopen</a> +<li>SQLITE_OPEN_SHAREDCACHE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/enable_shared_cache.html">c3ref/enable_shared_cache.html</a> + <a href="c3ref/open.html">c3ref/open.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_enable_shared_cache">capi3ref.html#sqlite3_enable_shared_cache</a> + <a href="capi3ref.html#sqlite3_open">capi3ref.html#sqlite3_open</a> + <a href="changes.html#version_3_6_18">changes.html#version_3_6_18</a> + <a href="releaselog/3_6_18.html">releaselog/3_6_18.html</a> + <a href="sharedcache.html#dontuse">sharedcache.html#dontuse</a> +<li>SQLITE_OPEN_SUBJOURNAL → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/vfs.html#sqlite3vfsxopen">c3ref/vfs.html#sqlite3vfsxopen</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3vfsxopen">capi3ref.html#sqlite3vfsxopen</a> +<li>SQLITE_OPEN_SUPER_JOURNAL → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/vfs.html#sqlite3vfsxopen">c3ref/vfs.html#sqlite3vfsxopen</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3vfsxopen">capi3ref.html#sqlite3vfsxopen</a> +<li>SQLITE_OPEN_TEMP_DB → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/vfs.html#sqlite3vfsxopen">c3ref/vfs.html#sqlite3vfsxopen</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3vfsxopen">capi3ref.html#sqlite3vfsxopen</a> +<li>SQLITE_OPEN_TEMP_JOURNAL → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/vfs.html#sqlite3vfsxopen">c3ref/vfs.html#sqlite3vfsxopen</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3vfsxopen">capi3ref.html#sqlite3vfsxopen</a> +<li>SQLITE_OPEN_TRANSIENT_DB → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/vfs.html#sqlite3vfsxopen">c3ref/vfs.html#sqlite3vfsxopen</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3vfsxopen">capi3ref.html#sqlite3vfsxopen</a> +<li>SQLITE_OPEN_URI → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfiguri">c3ref/c_config_covering_index_scan.html#sqliteconfiguri</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/open.html">c3ref/open.html</a> + <a href="c3ref/open.html#urifilenamesinsqlite3open">c3ref/open.html#urifilenamesinsqlite3open</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_open">capi3ref.html#sqlite3_open</a> + <a href="capi3ref.html#sqliteconfiguri">capi3ref.html#sqliteconfiguri</a> + <a href="capi3ref.html#urifilenamesinsqlite3open">capi3ref.html#urifilenamesinsqlite3open</a> + <a href="lang_vacuum.html#vacuuminto">lang_vacuum.html#vacuuminto</a> + <a href="uri.html">uri.html</a> +<li>SQLITE_OPEN_WAL → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/database_file_object.html">c3ref/database_file_object.html</a> + <a href="c3ref/vfs.html#sqlite3vfsxopen">c3ref/vfs.html#sqlite3vfsxopen</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_database_file_object">capi3ref.html#sqlite3_database_file_object</a> + <a href="capi3ref.html#sqlite3vfsxopen">capi3ref.html#sqlite3vfsxopen</a> +<li>SQLITE_OS_OTHER → <a href="c3ref/initialize.html">c3ref/initialize.html</a> + <a href="capi3ref.html#sqlite3_initialize">capi3ref.html#sqlite3_initialize</a> +<li>SQLITE_PERM → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#pve">rescode.html#pve</a> +<li>SQLITE_POWERSAFE_OVERWRITE → <a href="changes.html#version_3_7_10">changes.html#version_3_7_10</a> + <a href="psow.html#tornpage">psow.html#tornpage</a> + <a href="releaselog/3_7_10.html">releaselog/3_7_10.html</a> +<li>SQLITE_PRAGMA → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_PREPARE_NO_VTAB → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> +<li>SQLITE_PREPARE_NORMALIZE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> +<li>SQLITE_PREPARE_PERSISTENT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/prepare.html">c3ref/prepare.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_prepare">capi3ref.html#sqlite3_prepare</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> +<li>SQLITE_PRINTF_PRECISION_LIMIT → <a href="compile.html#yystackdepth">compile.html#yystackdepth</a> +<li>SQLITE_PROTOCOL → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_33_0">changes.html#version_3_33_0</a> + <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="releaselog/3_33_0.html">releaselog/3_33_0.html</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> + <a href="rescode.html#pve">rescode.html#pve</a> +<li>SQLITE_QUERY_PLANNER_LIMIT → <a href="compile.html#query_planner_limit_incr">compile.html#query_planner_limit_incr</a> +<li>SQLITE_QUERY_PLANNER_LIMIT_INCR → <a href="compile.html#query_planner_limit">compile.html#query_planner_limit</a> +<li>SQLITE_RANGE → <a href="c3ref/bind_blob.html#byteorderdeterminationrules">c3ref/bind_blob.html#byteorderdeterminationrules</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#byteorderdeterminationrules">capi3ref.html#byteorderdeterminationrules</a> + <a href="rescode.html#pve">rescode.html#pve</a> + <a href="session.html#sqlite3changeset_conflict">session.html#sqlite3changeset_conflict</a> + <a href="session.html#sqlite3changeset_new">session.html#sqlite3changeset_new</a> + <a href="session.html#sqlite3changeset_old">session.html#sqlite3changeset_old</a> + <a href="session/sqlite3changeset_conflict.html">session/sqlite3changeset_conflict.html</a> + <a href="session/sqlite3changeset_new.html">session/sqlite3changeset_new.html</a> + <a href="session/sqlite3changeset_old.html">session/sqlite3changeset_old.html</a> +<li>SQLITE_READ → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_set_authorizer">capi3ref.html#sqlite3_set_authorizer</a> + <a href="changes.html#version_3_19_0">changes.html#version_3_19_0</a> + <a href="releaselog/3_19_0.html">releaselog/3_19_0.html</a> + <a href="releaselog/3_19_1.html">releaselog/3_19_1.html</a> + <a href="releaselog/3_19_2.html">releaselog/3_19_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> +<li>SQLITE_READONLY → <a href="c3ref/backup_finish.html#sqlite3backupstep">c3ref/backup_finish.html#sqlite3backupstep</a> + <a href="c3ref/blob_write.html">c3ref/blob_write.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_blob_write">capi3ref.html#sqlite3_blob_write</a> + <a href="capi3ref.html#sqlite3backupstep">capi3ref.html#sqlite3backupstep</a> + <a href="pragma.html#pragma_query_only">pragma.html#pragma_query_only</a> + <a href="rescode.html#pve">rescode.html#pve</a> + <a href="rescode.html#readonly_cantlock">rescode.html#readonly_cantlock</a> + <a href="rescode.html#readonly_dbmoved">rescode.html#readonly_dbmoved</a> + <a href="rescode.html#readonly_recovery">rescode.html#readonly_recovery</a> + <a href="rescode.html#readonly_rollback">rescode.html#readonly_rollback</a> +<li>SQLITE_READONLY_CANTINIT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_READONLY_CANTLOCK → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_READONLY_DBMOVED → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_8_3">changes.html#version_3_8_3</a> + <a href="releaselog/3_8_3.html">releaselog/3_8_3.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_READONLY_DIRECTORY → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_READONLY_RECOVERY → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_READONLY_ROLLBACK → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_RECURSIVE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_REINDEX → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_REPLACE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/vtab_on_conflict.html">c3ref/vtab_on_conflict.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_vtab_on_conflict">capi3ref.html#sqlite3_vtab_on_conflict</a> +<li>SQLITE_RESULT_SUBTYPE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/result_subtype.html">c3ref/result_subtype.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_result_subtype">capi3ref.html#sqlite3_result_subtype</a> + <a href="changes.html#version_3_45_0">changes.html#version_3_45_0</a> + <a href="compile.html#rcmd">compile.html#rcmd</a> + <a href="compile.html#strict_subtype">compile.html#strict_subtype</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_45_0.html">releaselog/3_45_0.html</a> + <a href="releaselog/3_45_1.html">releaselog/3_45_1.html</a> +<li>SQLITE_REVERSE_UNORDERED_SELECTS → <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> +<li>SQLITE_ROLLBACK → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/vtab_on_conflict.html">c3ref/vtab_on_conflict.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_vtab_on_conflict">capi3ref.html#sqlite3_vtab_on_conflict</a> +<li>SQLITE_ROW → <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/data_count.html">c3ref/data_count.html</a> + <a href="c3ref/step.html">c3ref/step.html</a> + <a href="c3ref/wal_hook.html">c3ref/wal_hook.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_data_count">capi3ref.html#sqlite3_data_count</a> + <a href="capi3ref.html#sqlite3_step">capi3ref.html#sqlite3_step</a> + <a href="capi3ref.html#sqlite3_wal_hook">capi3ref.html#sqlite3_wal_hook</a> + <a href="compile.html#omit_autoreset">compile.html#omit_autoreset</a> + <a href="opcode.html">opcode.html</a> + <a href="rescode.html">rescode.html</a> + <a href="rescode.html#pve">rescode.html#pve</a> + <a href="session.html#sqlite3changeset_op">session.html#sqlite3changeset_op</a> + <a href="session/sqlite3changeset_op.html">session/sqlite3changeset_op.html</a> +<li>SQLITE_RTREE_INT_ONLY → <a href="changes.html#version_3_7_12">changes.html#version_3_7_12</a> + <a href="releaselog/3_7_12.html">releaselog/3_7_12.html</a> +<li>SQLITE_SAVEPOINT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_SCANSTAT_COMPLEX → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_SCANSTAT_EST → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_SCANSTAT_EXPLAIN → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_SCANSTAT_NAME → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_SCANSTAT_NCYCLE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_SCANSTAT_NLOOP → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_SCANSTAT_NVISIT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_SCANSTAT_PARENTID → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_SCANSTAT_SELECTID → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_SCHEMA → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/prepare.html">c3ref/prepare.html</a> + <a href="c3ref/step.html">c3ref/step.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_prepare">capi3ref.html#sqlite3_prepare</a> + <a href="capi3ref.html#sqlite3_step">capi3ref.html#sqlite3_step</a> + <a href="changes.html#version_3_7_15">changes.html#version_3_7_15</a> + <a href="changes.html#version_3_7_7_1">changes.html#version_3_7_7_1</a> + <a href="faq.html#q15">faq.html#q15</a> + <a href="fileformat2.html#filesize">fileformat2.html#filesize</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_foreign_keys">pragma.html#pragma_foreign_keys</a> + <a href="pragma.html#pragma_recursive_triggers">pragma.html#pragma_recursive_triggers</a> + <a href="releaselog/3_7_15.html">releaselog/3_7_15.html</a> + <a href="releaselog/3_7_7_1.html">releaselog/3_7_7_1.html</a> + <a href="rescode.html#pve">rescode.html#pve</a> +<li>sqlite_schema → <a href="atomiccommit.html#rdlck">atomiccommit.html#rdlck</a> + <a href="cli.html#dtables">cli.html#dtables</a> + <a href="cli.html#sha3sum">cli.html#sha3sum</a> + <a href="fileformat2.html#btypes">fileformat2.html#btypes</a> + <a href="fileformat2.html#ffschema">fileformat2.html#ffschema</a> + <a href="lang_altertable.html#altertableishard">lang_altertable.html#altertableishard</a> + <a href="lang_droptrigger.html">lang_droptrigger.html</a> + <a href="lemon.html">lemon.html</a> + <a href="pragma.html#pragma_integrity_check">pragma.html#pragma_integrity_check</a> + <a href="pragma.html#pragma_writable_schema">pragma.html#pragma_writable_schema</a> + <a href="sharedcache.html#dontuse">sharedcache.html#dontuse</a> +<li>sqlite_schema table → <a href="changes.html#version_3_38_0">changes.html#version_3_38_0</a> + <a href="compile.html#printf_precision_limit">compile.html#printf_precision_limit</a> + <a href="foreignkeys.html#fk_actions">foreignkeys.html#fk_actions</a> + <a href="imposter.html">imposter.html</a> + <a href="lang_altertable.html#altertabaddcol">lang_altertable.html#altertabaddcol</a> + <a href="lang_altertable.html#altertabdropcol">lang_altertable.html#altertabdropcol</a> + <a href="lang_altertable.html#caution">lang_altertable.html#caution</a> + <a href="pragma.html#pragma_schema_version">pragma.html#pragma_schema_version</a> + <a href="releaselog/3_38_0.html">releaselog/3_38_0.html</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> + <a href="security.html">security.html</a> + <a href="sharedcache.html#dontuse">sharedcache.html#dontuse</a> + <a href="unlock_notify.html">unlock_notify.html</a> +<li>SQLITE_SECURE_DELETE → <a href="changes.html#version_3_6_21">changes.html#version_3_6_21</a> + <a href="faq.html#q20">faq.html#q20</a> + <a href="pragma.html#pragma_secure_delete">pragma.html#pragma_secure_delete</a> + <a href="releaselog/3_6_21.html">releaselog/3_6_21.html</a> +<li>SQLITE_SELECT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>sqlite_sequence → <a href="autoinc.html">autoinc.html</a> + <a href="changes.html#version_3_24_0">changes.html#version_3_24_0</a> + <a href="releaselog/3_24_0.html">releaselog/3_24_0.html</a> +<li>SQLITE_SERIALIZE_NOCOPY → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_SESSION_CONFIG_STRMSIZE → <a href="session.html">session.html</a> + <a href="session/constlist.html">session/constlist.html</a> +<li>SQLITE_SESSION_OBJCONFIG_ROWID → <a href="session.html">session.html</a> + <a href="session.html#sqlite3session_object_config">session.html#sqlite3session_object_config</a> + <a href="session/constlist.html">session/constlist.html</a> + <a href="session/sqlite3session_object_config.html">session/sqlite3session_object_config.html</a> +<li>SQLITE_SESSION_OBJCONFIG_SIZE → <a href="session.html#sqlite3session_object_config">session.html#sqlite3session_object_config</a> + <a href="session/sqlite3session_object_config.html">session/sqlite3session_object_config.html</a> +<li>SQLITE_SHM_EXCLUSIVE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_SHM_LOCK → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_SHM_NLOCK → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_SHM_SHARED → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_SHM_UNLOCK → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_SORTER_PMASZ → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigpmasz">c3ref/c_config_covering_index_scan.html#sqliteconfigpmasz</a> + <a href="capi3ref.html#sqliteconfigpmasz">capi3ref.html#sqliteconfigpmasz</a> + <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> +<li>SQLITE_SOUNDEX → <a href="lang_corefunc.html#soundex">lang_corefunc.html#soundex</a> +<li>sqlite_source_id → <a href="c3ref/c_source_id.html">c3ref/c_source_id.html</a> + <a href="c3ref/libversion.html">c3ref/libversion.html</a> + <a href="capi3ref.html#SQLITE_SOURCE_ID">capi3ref.html#SQLITE_SOURCE_ID</a> + <a href="capi3ref.html#sqlite3_libversion">capi3ref.html#sqlite3_libversion</a> + <a href="changes.html#version_3_18_0">changes.html#version_3_18_0</a> + <a href="changes.html#version_3_6_18">changes.html#version_3_6_18</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="releaselog/3_18_0.html">releaselog/3_18_0.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> + <a href="releaselog/3_6_18.html">releaselog/3_6_18.html</a> +<li>SQLITE_SOURCE_ID → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/libversion.html">c3ref/libversion.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_libversion">capi3ref.html#sqlite3_libversion</a> + <a href="changes.html#version_3_18_0">changes.html#version_3_18_0</a> + <a href="changes.html#version_3_6_18">changes.html#version_3_6_18</a> + <a href="releaselog/3_18_0.html">releaselog/3_18_0.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> + <a href="releaselog/3_6_18.html">releaselog/3_6_18.html</a> + <a href="th3.html">th3.html</a> +<li>sqlite_stat1 → <a href="changes.html#version_3_13_0">changes.html#version_3_13_0</a> + <a href="changes.html#version_3_33_0">changes.html#version_3_33_0</a> + <a href="changes.html#version_3_8_1">changes.html#version_3_8_1</a> + <a href="lang_analyze.html#req">lang_analyze.html#req</a> + <a href="oldnews.html">oldnews.html</a> + <a href="optoverview.html#manctrl">optoverview.html#manctrl</a> + <a href="optoverview.html#multi_index">optoverview.html#multi_index</a> + <a href="pragma.html#pragma_optimize">pragma.html#pragma_optimize</a> + <a href="queryplanner-ng.html#fossilcasestudy">queryplanner-ng.html#fossilcasestudy</a> + <a href="queryplanner-ng.html#howtofix">queryplanner-ng.html#howtofix</a> + <a href="releaselog/3_13_0.html">releaselog/3_13_0.html</a> + <a href="releaselog/3_33_0.html">releaselog/3_33_0.html</a> + <a href="releaselog/3_8_1.html">releaselog/3_8_1.html</a> +<li>SQLITE_STAT1 → <a href="queryplanner-ng.html#fossilcasestudy">queryplanner-ng.html#fossilcasestudy</a> + <a href="queryplanner-ng.html#hazards">queryplanner-ng.html#hazards</a> + <a href="queryplanner-ng.html#howtofix">queryplanner-ng.html#howtofix</a> +<li>sqlite_stat2 → <a href="lang_analyze.html#req">lang_analyze.html#req</a> +<li>sqlite_stat3 → <a href="lang_analyze.html#req">lang_analyze.html#req</a> + <a href="optoverview.html#manctrl">optoverview.html#manctrl</a> + <a href="optoverview.html#rangequery">optoverview.html#rangequery</a> +<li>sqlite_stat4 → <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="changes.html#version_3_8_7">changes.html#version_3_8_7</a> + <a href="compile.html#enable_stat4">compile.html#enable_stat4</a> + <a href="lang_analyze.html#req">lang_analyze.html#req</a> + <a href="optoverview.html#manctrl">optoverview.html#manctrl</a> + <a href="optoverview.html#rangequery">optoverview.html#rangequery</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> + <a href="releaselog/3_8_7.html">releaselog/3_8_7.html</a> +<li>SQLITE_STAT4 → <a href="th3.html">th3.html</a> +<li>SQLITE_STATIC → <a href="c3ref/bind_blob.html#byteorderdeterminationrules">c3ref/bind_blob.html#byteorderdeterminationrules</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#byteorderdeterminationrules">capi3ref.html#byteorderdeterminationrules</a> + <a href="carray.html#onearg">carray.html#onearg</a> +<li>SQLITE_STATUS_MALLOC_COUNT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_STATUS_MALLOC_SIZE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="memstat.html">memstat.html</a> +<li>SQLITE_STATUS_MEMORY_USED → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="compile.html#default_memstatus">compile.html#default_memstatus</a> + <a href="compile.html#max_memory">compile.html#max_memory</a> + <a href="malloc.html#memstatus">malloc.html#memstatus</a> + <a href="malloc.html#nofrag">malloc.html#nofrag</a> + <a href="memstat.html">memstat.html</a> +<li>SQLITE_STATUS_PAGECACHE_OVERFLOW → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="compile.html#disable_pagecache_overflow_stats">compile.html#disable_pagecache_overflow_stats</a> +<li>SQLITE_STATUS_PAGECACHE_SIZE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_6_1">changes.html#version_3_6_1</a> + <a href="compile.html#disable_pagecache_overflow_stats">compile.html#disable_pagecache_overflow_stats</a> + <a href="releaselog/3_6_1.html">releaselog/3_6_1.html</a> +<li>SQLITE_STATUS_PAGECACHE_USED → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_STATUS_PARSER_STACK → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="compile.html#yytrackmaxstackdepth">compile.html#yytrackmaxstackdepth</a> +<li>SQLITE_STATUS_SCRATCH_OVERFLOW → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_STATUS_SCRATCH_SIZE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_6_1">changes.html#version_3_6_1</a> + <a href="releaselog/3_6_1.html">releaselog/3_6_1.html</a> +<li>SQLITE_STATUS_SCRATCH_USED → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>sqlite_stmt → <a href="changes.html#version_3_39_1">changes.html#version_3_39_1</a> + <a href="releaselog/3_39_1.html">releaselog/3_39_1.html</a> + <a href="releaselog/3_39_2.html">releaselog/3_39_2.html</a> + <a href="releaselog/3_39_3.html">releaselog/3_39_3.html</a> + <a href="releaselog/3_39_4.html">releaselog/3_39_4.html</a> + <a href="vtablist.html">vtablist.html</a> +<li>SQLITE_STMT virtual table → <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="compile.html#enable_stmtvtab">compile.html#enable_stmtvtab</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> +<li>SQLITE_STMTJRNL_SPILL → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigstmtjrnlspill">c3ref/c_config_covering_index_scan.html#sqliteconfigstmtjrnlspill</a> + <a href="capi3ref.html#sqliteconfigstmtjrnlspill">capi3ref.html#sqliteconfigstmtjrnlspill</a> + <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> +<li>SQLITE_STMTSTATUS counter → <a href="c3ref/stmt_status.html">c3ref/stmt_status.html</a> + <a href="capi3ref.html#sqlite3_stmt_status">capi3ref.html#sqlite3_stmt_status</a> +<li>SQLITE_STMTSTATUS counters → <a href="c3ref/stmt_status.html">c3ref/stmt_status.html</a> + <a href="capi3ref.html#sqlite3_stmt_status">capi3ref.html#sqlite3_stmt_status</a> +<li>SQLITE_STMTSTATUS_AUTOINDEX → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="stmt.html">stmt.html</a> +<li>SQLITE_STMTSTATUS_FILTER_HIT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_STMTSTATUS_FILTER_MISS → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_STMTSTATUS_FULLSCAN_STEP → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="lang_indexedby.html">lang_indexedby.html</a> + <a href="stmt.html">stmt.html</a> +<li>SQLITE_STMTSTATUS_MEMUSED → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> + <a href="stmt.html">stmt.html</a> +<li>SQLITE_STMTSTATUS_REPREPARE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> + <a href="stmt.html">stmt.html</a> +<li>SQLITE_STMTSTATUS_RUN → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> + <a href="stmt.html">stmt.html</a> +<li>SQLITE_STMTSTATUS_SORT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="lang_indexedby.html">lang_indexedby.html</a> + <a href="stmt.html">stmt.html</a> +<li>SQLITE_STMTSTATUS_VM_STEP → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_8_0">changes.html#version_3_8_0</a> + <a href="releaselog/3_8_0.html">releaselog/3_8_0.html</a> + <a href="releaselog/3_8_0_1.html">releaselog/3_8_0_1.html</a> + <a href="releaselog/3_8_0_2.html">releaselog/3_8_0_2.html</a> + <a href="stmt.html">stmt.html</a> +<li>SQLITE_STRICT_SUBTYPE → <a href="compile.html#rcmd">compile.html#rcmd</a> +<li>SQLITE_SUBTYPE → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/value_subtype.html">c3ref/value_subtype.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_value_subtype">capi3ref.html#sqlite3_value_subtype</a> + <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> +<li>SQLITE_SYNC_DATAONLY → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_io_methods">capi3ref.html#sqlite3_io_methods</a> +<li>SQLITE_SYNC_FULL → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_io_methods">capi3ref.html#sqlite3_io_methods</a> +<li>SQLITE_SYNC_NORMAL → <a href="34to35.html">34to35.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/io_methods.html">c3ref/io_methods.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_io_methods">capi3ref.html#sqlite3_io_methods</a> +<li>SQLITE_SYSAPI → <a href="compile.html#apicall">compile.html#apicall</a> + <a href="compile.html#cdecl">compile.html#cdecl</a> + <a href="compile.html#sysapi">compile.html#sysapi</a> + <a href="compile.html#tclapi">compile.html#tclapi</a> +<li>SQLITE_TEMP_STORE → <a href="35to36.html">35to36.html</a> + <a href="inmemorydb.html#temp_db">inmemorydb.html#temp_db</a> + <a href="pragma.html#pragma_temp_store">pragma.html#pragma_temp_store</a> + <a href="tempfiles.html#otheropt">tempfiles.html#otheropt</a> + <a href="tempfiles.html#tempstore">tempfiles.html#tempstore</a> +<li>SQLITE_TESTCTRL_ALWAYS → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="testing.html#defcode">testing.html#defcode</a> +<li>SQLITE_TESTCTRL_ASSERT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_BENIGN_MALLOC_HOOKS → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_BITVEC_TEST → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_BYTEORDER → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_8_5">changes.html#version_3_8_5</a> + <a href="releaselog/3_8_5.html">releaselog/3_8_5.html</a> +<li>SQLITE_TESTCTRL_EXPLAIN_STMT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_7_10">changes.html#version_3_7_10</a> + <a href="releaselog/3_7_10.html">releaselog/3_7_10.html</a> +<li>SQLITE_TESTCTRL_EXTRA_SCHEMA_CHECKS → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_FAULT_INSTALL → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_FIRST → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_FK_NO_ACTION → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_IMPOSTER → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_INTERNAL_FUNCTIONS → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_ISINIT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_ISKEYWORD → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_JSON_SELFCHECK → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_LAST → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_LOCALTIME_FAULT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_LOGEST → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_NEVER_CORRUPT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_ONCE_RESET_THRESHOLD → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_OPTIMIZATIONS → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="testing.html#disopttest">testing.html#disopttest</a> +<li>SQLITE_TESTCTRL_PARSER_COVERAGE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_PENDING_BYTE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_PRNG_RESET → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_PRNG_RESTORE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_PRNG_SAVE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_PRNG_SEED → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_RESERVE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_RESULT_INTREAL → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_SCRATCHMALLOC → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_SEEK_COUNT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_SORTER_MMAP → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_TRACEFLAGS → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_TUNE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_USELONGDOUBLE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TESTCTRL_VDBE_COVERAGE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_8_4">changes.html#version_3_8_4</a> + <a href="releaselog/3_8_4.html">releaselog/3_8_4.html</a> + <a href="releaselog/3_8_4_1.html">releaselog/3_8_4_1.html</a> + <a href="releaselog/3_8_4_2.html">releaselog/3_8_4_2.html</a> + <a href="releaselog/3_8_4_3.html">releaselog/3_8_4_3.html</a> +<li>SQLITE_TEXT → <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_value_blob">capi3ref.html#sqlite3_value_blob</a> +<li>SQLITE_THREADSAFE → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfiggetmutex">c3ref/c_config_covering_index_scan.html#sqliteconfiggetmutex</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigmultithread">c3ref/c_config_covering_index_scan.html#sqliteconfigmultithread</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigmutex">c3ref/c_config_covering_index_scan.html#sqliteconfigmutex</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigserialized">c3ref/c_config_covering_index_scan.html#sqliteconfigserialized</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigsinglethread">c3ref/c_config_covering_index_scan.html#sqliteconfigsinglethread</a> + <a href="c3ref/threadsafe.html">c3ref/threadsafe.html</a> + <a href="c3ref/value.html">c3ref/value.html</a> + <a href="capi3ref.html#sqlite3_threadsafe">capi3ref.html#sqlite3_threadsafe</a> + <a href="capi3ref.html#sqlite3_value">capi3ref.html#sqlite3_value</a> + <a href="capi3ref.html#sqliteconfiggetmutex">capi3ref.html#sqliteconfiggetmutex</a> + <a href="capi3ref.html#sqliteconfigmultithread">capi3ref.html#sqliteconfigmultithread</a> + <a href="capi3ref.html#sqliteconfigmutex">capi3ref.html#sqliteconfigmutex</a> + <a href="capi3ref.html#sqliteconfigserialized">capi3ref.html#sqliteconfigserialized</a> + <a href="capi3ref.html#sqliteconfigsinglethread">capi3ref.html#sqliteconfigsinglethread</a> + <a href="compile.html#rcmd">compile.html#rcmd</a> + <a href="threadsafe.html">threadsafe.html</a> +<li>SQLITE_TOOBIG → <a href="c3ref/bind_blob.html#byteorderdeterminationrules">c3ref/bind_blob.html#byteorderdeterminationrules</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/str_errcode.html">c3ref/str_errcode.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#byteorderdeterminationrules">capi3ref.html#byteorderdeterminationrules</a> + <a href="capi3ref.html#sqlite3_str_errcode">capi3ref.html#sqlite3_str_errcode</a> + <a href="compile.html#printf_precision_limit">compile.html#printf_precision_limit</a> + <a href="rescode.html#pve">rescode.html#pve</a> +<li>SQLITE_TRACE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/trace_v2.html">c3ref/trace_v2.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_trace_v2">capi3ref.html#sqlite3_trace_v2</a> +<li>SQLITE_TRACE_CLOSE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TRACE_PROFILE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TRACE_ROW → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TRACE_SIZE_LIMIT → <a href="c3ref/expanded_sql.html">c3ref/expanded_sql.html</a> + <a href="c3ref/profile.html">c3ref/profile.html</a> + <a href="capi3ref.html#sqlite3_expanded_sql">capi3ref.html#sqlite3_expanded_sql</a> + <a href="capi3ref.html#sqlite3_profile">capi3ref.html#sqlite3_profile</a> + <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="compile.html#yystackdepth">compile.html#yystackdepth</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> +<li>SQLITE_TRACE_STMT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TRANSACTION → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TRANSIENT → <a href="c3ref/bind_blob.html#byteorderdeterminationrules">c3ref/bind_blob.html#byteorderdeterminationrules</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#byteorderdeterminationrules">capi3ref.html#byteorderdeterminationrules</a> + <a href="carray.html#onearg">carray.html#onearg</a> +<li>SQLITE_TXN_NONE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TXN_READ → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_TXN_WRITE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_UNTESTABLE → <a href="changes.html#version_3_16_0">changes.html#version_3_16_0</a> + <a href="compile.html#omit_builtin_test">compile.html#omit_builtin_test</a> + <a href="releaselog/3_16_0.html">releaselog/3_16_0.html</a> + <a href="releaselog/3_16_1.html">releaselog/3_16_1.html</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> +<li>SQLITE_UPDATE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> + <a href="c3ref/update_hook.html">c3ref/update_hook.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_preupdate_blobwrite">capi3ref.html#sqlite3_preupdate_blobwrite</a> + <a href="capi3ref.html#sqlite3_update_hook">capi3ref.html#sqlite3_update_hook</a> + <a href="session.html#sqlite3changeset_new">session.html#sqlite3changeset_new</a> + <a href="session.html#sqlite3changeset_old">session.html#sqlite3changeset_old</a> + <a href="session.html#sqlite3changeset_op">session.html#sqlite3changeset_op</a> + <a href="session/sqlite3changeset_new.html">session/sqlite3changeset_new.html</a> + <a href="session/sqlite3changeset_old.html">session/sqlite3changeset_old.html</a> + <a href="session/sqlite3changeset_op.html">session/sqlite3changeset_op.html</a> +<li>SQLITE_USE_ALLOCA → <a href="compile.html#rcmd">compile.html#rcmd</a> +<li>SQLITE_USE_FCNTL_TRACE → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntltrace">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntltrace</a> + <a href="capi3ref.html#sqlitefcntltrace">capi3ref.html#sqlitefcntltrace</a> +<li>SQLITE_USE_SEH → <a href="changes.html#version_3_43_0">changes.html#version_3_43_0</a> + <a href="changes.html#version_3_44_0">changes.html#version_3_44_0</a> + <a href="releaselog/3_43_0.html">releaselog/3_43_0.html</a> + <a href="releaselog/3_43_1.html">releaselog/3_43_1.html</a> + <a href="releaselog/3_43_2.html">releaselog/3_43_2.html</a> + <a href="releaselog/3_44_0.html">releaselog/3_44_0.html</a> + <a href="releaselog/3_44_1.html">releaselog/3_44_1.html</a> + <a href="releaselog/3_44_2.html">releaselog/3_44_2.html</a> +<li>SQLITE_USE_URI → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfiguri">c3ref/c_config_covering_index_scan.html#sqliteconfiguri</a> + <a href="c3ref/open.html#urifilenamesinsqlite3open">c3ref/open.html#urifilenamesinsqlite3open</a> + <a href="capi3ref.html#sqliteconfiguri">capi3ref.html#sqliteconfiguri</a> + <a href="capi3ref.html#urifilenamesinsqlite3open">capi3ref.html#urifilenamesinsqlite3open</a> + <a href="uri.html">uri.html</a> +<li>SQLITE_UTF16 → <a href="c3ref/bind_blob.html#byteorderdeterminationrules">c3ref/bind_blob.html#byteorderdeterminationrules</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/create_collation.html">c3ref/create_collation.html</a> + <a href="c3ref/create_function.html">c3ref/create_function.html</a> + <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#byteorderdeterminationrules">capi3ref.html#byteorderdeterminationrules</a> + <a href="capi3ref.html#sqlite3_create_collation">capi3ref.html#sqlite3_create_collation</a> + <a href="capi3ref.html#sqlite3_create_function">capi3ref.html#sqlite3_create_function</a> + <a href="capi3ref.html#sqlite3_result_blob">capi3ref.html#sqlite3_result_blob</a> +<li>SQLITE_UTF16_ALIGNED → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/create_collation.html">c3ref/create_collation.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlite3_create_collation">capi3ref.html#sqlite3_create_collation</a> +<li>SQLITE_UTF16BE → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/bind_blob.html#byteorderdeterminationrules">c3ref/bind_blob.html#byteorderdeterminationrules</a> + <a href="c3ref/collation_needed.html">c3ref/collation_needed.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/create_collation.html">c3ref/create_collation.html</a> + <a href="c3ref/create_function.html">c3ref/create_function.html</a> + <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> + <a href="c3ref/value_encoding.html">c3ref/value_encoding.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#byteorderdeterminationrules">capi3ref.html#byteorderdeterminationrules</a> + <a href="capi3ref.html#sqlite3_collation_needed">capi3ref.html#sqlite3_collation_needed</a> + <a href="capi3ref.html#sqlite3_create_collation">capi3ref.html#sqlite3_create_collation</a> + <a href="capi3ref.html#sqlite3_create_function">capi3ref.html#sqlite3_create_function</a> + <a href="capi3ref.html#sqlite3_result_blob">capi3ref.html#sqlite3_result_blob</a> + <a href="capi3ref.html#sqlite3_value_encoding">capi3ref.html#sqlite3_value_encoding</a> +<li>SQLITE_UTF16LE → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/bind_blob.html#byteorderdeterminationrules">c3ref/bind_blob.html#byteorderdeterminationrules</a> + <a href="c3ref/collation_needed.html">c3ref/collation_needed.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/create_collation.html">c3ref/create_collation.html</a> + <a href="c3ref/create_function.html">c3ref/create_function.html</a> + <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> + <a href="c3ref/value_encoding.html">c3ref/value_encoding.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#byteorderdeterminationrules">capi3ref.html#byteorderdeterminationrules</a> + <a href="capi3ref.html#sqlite3_collation_needed">capi3ref.html#sqlite3_collation_needed</a> + <a href="capi3ref.html#sqlite3_create_collation">capi3ref.html#sqlite3_create_collation</a> + <a href="capi3ref.html#sqlite3_create_function">capi3ref.html#sqlite3_create_function</a> + <a href="capi3ref.html#sqlite3_result_blob">capi3ref.html#sqlite3_result_blob</a> + <a href="capi3ref.html#sqlite3_value_encoding">capi3ref.html#sqlite3_value_encoding</a> +<li>SQLITE_UTF8 → <a href="appfunc.html">appfunc.html</a> + <a href="c3ref/bind_blob.html#byteorderdeterminationrules">c3ref/bind_blob.html#byteorderdeterminationrules</a> + <a href="c3ref/c_deterministic.html">c3ref/c_deterministic.html</a> + <a href="c3ref/collation_needed.html">c3ref/collation_needed.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/create_collation.html">c3ref/create_collation.html</a> + <a href="c3ref/create_function.html">c3ref/create_function.html</a> + <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> + <a href="c3ref/value_encoding.html">c3ref/value_encoding.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_DETERMINISTIC">capi3ref.html#SQLITE_DETERMINISTIC</a> + <a href="capi3ref.html#byteorderdeterminationrules">capi3ref.html#byteorderdeterminationrules</a> + <a href="capi3ref.html#sqlite3_collation_needed">capi3ref.html#sqlite3_collation_needed</a> + <a href="capi3ref.html#sqlite3_create_collation">capi3ref.html#sqlite3_create_collation</a> + <a href="capi3ref.html#sqlite3_create_function">capi3ref.html#sqlite3_create_function</a> + <a href="capi3ref.html#sqlite3_result_blob">capi3ref.html#sqlite3_result_blob</a> + <a href="capi3ref.html#sqlite3_value_encoding">capi3ref.html#sqlite3_value_encoding</a> +<li>sqlite_version → <a href="c3ref/c_source_id.html">c3ref/c_source_id.html</a> + <a href="c3ref/libversion.html">c3ref/libversion.html</a> + <a href="capi3ref.html#SQLITE_SOURCE_ID">capi3ref.html#SQLITE_SOURCE_ID</a> + <a href="capi3ref.html#sqlite3_libversion">capi3ref.html#sqlite3_libversion</a> + <a href="deterministic.html#dtexception">deterministic.html#dtexception</a> + <a href="expridx.html">expridx.html</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="lang_createindex.html#indexexpr">lang_createindex.html#indexexpr</a> +<li>SQLITE_VERSION → <a href="c3ref/c_source_id.html">c3ref/c_source_id.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/libversion.html">c3ref/libversion.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_SOURCE_ID">capi3ref.html#SQLITE_SOURCE_ID</a> + <a href="capi3ref.html#sqlite3_libversion">capi3ref.html#sqlite3_libversion</a> +<li>SQLITE_VERSION_NUMBER → <a href="c3ref/c_source_id.html">c3ref/c_source_id.html</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="c3ref/libversion.html">c3ref/libversion.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#SQLITE_SOURCE_ID">capi3ref.html#SQLITE_SOURCE_ID</a> + <a href="capi3ref.html#sqlite3_libversion">capi3ref.html#sqlite3_libversion</a> + <a href="fileformat2.html#database_header">fileformat2.html#database_header</a> + <a href="fileformat2.html#validfor">fileformat2.html#validfor</a> + <a href="versionnumbers.html">versionnumbers.html</a> +<li>SQLITE_VTAB_CONSTRAINT_SUPPORT → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_VTAB_DIRECTONLY → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> + <a href="security.html#baddb">security.html#baddb</a> + <a href="vtab.html#xcreate">vtab.html#xcreate</a> +<li>SQLITE_VTAB_INNOCUOUS → <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfigtrustedschema">c3ref/c_dbconfig_defensive.html#sqlitedbconfigtrustedschema</a> + <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="capi3ref.html#sqlitedbconfigtrustedschema">capi3ref.html#sqlitedbconfigtrustedschema</a> + <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="changes.html#version_3_44_0">changes.html#version_3_44_0</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> + <a href="releaselog/3_44_0.html">releaselog/3_44_0.html</a> + <a href="releaselog/3_44_1.html">releaselog/3_44_1.html</a> + <a href="releaselog/3_44_2.html">releaselog/3_44_2.html</a> +<li>SQLITE_VTAB_USES_ALL_SCHEMAS → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_WARNING → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="rescode.html#pve">rescode.html#pve</a> +<li>SQLITE_WARNING_AUTOINDEX → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> + <a href="changes.html#version_3_8_0">changes.html#version_3_8_0</a> + <a href="optoverview.html#autoindex">optoverview.html#autoindex</a> + <a href="releaselog/3_8_0.html">releaselog/3_8_0.html</a> + <a href="releaselog/3_8_0_1.html">releaselog/3_8_0_1.html</a> + <a href="releaselog/3_8_0_2.html">releaselog/3_8_0_2.html</a> + <a href="rescode.html#extrc">rescode.html#extrc</a> +<li>SQLITE_WIN32_DATA_DIRECTORY_TYPE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_WIN32_HEAP_CREATE → <a href="malloc.html#win32heap">malloc.html#win32heap</a> +<li>SQLITE_WIN32_MALLOC → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigwin32heapsize">c3ref/c_config_covering_index_scan.html#sqliteconfigwin32heapsize</a> + <a href="capi3ref.html#sqliteconfigwin32heapsize">capi3ref.html#sqliteconfigwin32heapsize</a> + <a href="malloc.html#win32heap">malloc.html#win32heap</a> +<li>SQLITE_WIN32_MALLOC_VALIDATE → <a href="malloc.html#win32heap">malloc.html#win32heap</a> +<li>SQLITE_WIN32_TEMP_DIRECTORY_TYPE → <a href="c3ref/constlist.html">c3ref/constlist.html</a> + <a href="capi3ref.html">capi3ref.html</a> +<li>SQLITE_ZERO_MALLOC → <a href="changes.html#version_3_6_5">changes.html#version_3_6_5</a> + <a href="malloc.html#memsysx">malloc.html#memsysx</a> + <a href="releaselog/3_6_5.html">releaselog/3_6_5.html</a> + <a href="selfcontained.html">selfcontained.html</a> +<li>sqrt → <a href="lang_mathfunc.html">lang_mathfunc.html</a> +<li>statement journal → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigstmtjrnlspill">c3ref/c_config_covering_index_scan.html#sqliteconfigstmtjrnlspill</a> + <a href="capi3ref.html#sqliteconfigstmtjrnlspill">capi3ref.html#sqliteconfigstmtjrnlspill</a> + <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> +<li>Statement journals → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigstmtjrnlspill">c3ref/c_config_covering_index_scan.html#sqliteconfigstmtjrnlspill</a> + <a href="capi3ref.html#sqliteconfigstmtjrnlspill">capi3ref.html#sqliteconfigstmtjrnlspill</a> +<li>statement journals → <a href="compile.html#stmtjrnl_spill">compile.html#stmtjrnl_spill</a> +<li>status parameters → <a href="c3ref/status.html">c3ref/status.html</a> + <a href="capi3ref.html#sqlite3_status">capi3ref.html#sqlite3_status</a> +<li>storage class → <a href="lang_expr.html#castexpr">lang_expr.html#castexpr</a> +<li>strategies → <a href="eqp.html">eqp.html</a> +<li>strftime → <a href="lang_datefunc.html#subsec">lang_datefunc.html#subsec</a> +<li>strftime SQL function → <a href="changes.html#version_3_44_0">changes.html#version_3_44_0</a> + <a href="releaselog/3_44_0.html">releaselog/3_44_0.html</a> + <a href="releaselog/3_44_1.html">releaselog/3_44_1.html</a> + <a href="releaselog/3_44_2.html">releaselog/3_44_2.html</a> +<li>STRICT → <a href="datatype3.html#affname">datatype3.html#affname</a> + <a href="lang_createtable.html#primkeyconst">lang_createtable.html#primkeyconst</a> +<li>STRICT table → <a href="pragma.html#pragma_table_list">pragma.html#pragma_table_list</a> +<li>STRICT tables → <a href="changes.html#version_3_37_0">changes.html#version_3_37_0</a> + <a href="datatype3.html">datatype3.html</a> + <a href="flextypegood.html">flextypegood.html</a> + <a href="news.html">news.html</a> + <a href="quirks.html">quirks.html</a> + <a href="recovery.html">recovery.html</a> + <a href="releaselog/3_37_0.html">releaselog/3_37_0.html</a> + <a href="releaselog/3_37_1.html">releaselog/3_37_1.html</a> + <a href="releaselog/3_37_2.html">releaselog/3_37_2.html</a> +<li>strict type checking → <a href="lang_createtable.html">lang_createtable.html</a> +<li>string_agg → <a href="changes.html#version_3_44_0">changes.html#version_3_44_0</a> + <a href="lang_aggfunc.html#aggorderby">lang_aggfunc.html#aggorderby</a> + <a href="releaselog/3_44_0.html">releaselog/3_44_0.html</a> + <a href="releaselog/3_44_1.html">releaselog/3_44_1.html</a> + <a href="releaselog/3_44_2.html">releaselog/3_44_2.html</a> +<li>subprograms → <a href="opcode.html">opcode.html</a> +<li>Subqueries → <a href="fullsql.html">fullsql.html</a> +<li>subsec modifier → <a href="lang_datefunc.html#uepch">lang_datefunc.html#uepch</a> +<li>subsecond modifier → <a href="changes.html#version_3_42_0">changes.html#version_3_42_0</a> + <a href="releaselog/3_42_0.html">releaselog/3_42_0.html</a> +<li>substr → <a href="arch.html">arch.html</a> + <a href="changes.html#version_3_6_21">changes.html#version_3_6_21</a> + <a href="fts3.html#fts3tok">fts3.html#fts3tok</a> + <a href="invalidutf.html">invalidutf.html</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="releaselog/3_6_21.html">releaselog/3_6_21.html</a> +<li>substr SQL function → <a href="changes.html#version_3_34_0">changes.html#version_3_34_0</a> + <a href="releaselog/3_34_0.html">releaselog/3_34_0.html</a> + <a href="releaselog/3_34_1.html">releaselog/3_34_1.html</a> +<li>sum → <a href="changes.html#version_3_43_1">changes.html#version_3_43_1</a> + <a href="lang_select.html#bareagg">lang_select.html#bareagg</a> + <a href="releaselog/3_43_1.html">releaselog/3_43_1.html</a> + <a href="releaselog/3_43_2.html">releaselog/3_43_2.html</a> +<li>sum aggregate function → <a href="floatingpoint.html#decext">floatingpoint.html#decext</a> +<li>sumFunc → <a href="lang_aggfunc.html#aggfunclist">lang_aggfunc.html#aggfunclist</a> +<li>swarmvtab → <a href="vtablist.html">vtablist.html</a> +<li>swarmvtab context → <a href="swarmvtab.html#overview">swarmvtab.html#overview</a> +<li>synchronous → <a href="tempfiles.html#tempdb">tempfiles.html#tempdb</a> +<li>synchronous pragma → <a href="c3ref/c_sync_dataonly.html">c3ref/c_sync_dataonly.html</a> + <a href="capi3ref.html#SQLITE_SYNC_DATAONLY">capi3ref.html#SQLITE_SYNC_DATAONLY</a> + <a href="howtocorrupt.html#fork">howtocorrupt.html#fork</a> +<li>syntax diagrams → <a href="changes.html#version_3_34_0">changes.html#version_3_34_0</a> + <a href="lang.html">lang.html</a> + <a href="releaselog/3_34_0.html">releaselog/3_34_0.html</a> + <a href="releaselog/3_34_1.html">releaselog/3_34_1.html</a> +<li>table b-tree → <a href="opcode.html#codes">opcode.html#codes</a> +<li>table data format → <a href="stricttables.html">stricttables.html</a> +<li>table-constraint → <a href="lang_createtable.html">lang_createtable.html</a> + <a href="lang_createtable.html#primkeyconst">lang_createtable.html#primkeyconst</a> + <a href="lang_createtable.html#tablecoldef">lang_createtable.html#tablecoldef</a> + <a href="lang_createtable.html#uniqueconst">lang_createtable.html#uniqueconst</a> +<li>table-options → <a href="lang_createtable.html">lang_createtable.html</a> +<li>table-or-subquery → <a href="lang_aggfunc.html">lang_aggfunc.html</a> + <a href="lang_altertable.html">lang_altertable.html</a> + <a href="lang_attach.html">lang_attach.html</a> + <a href="lang_createindex.html">lang_createindex.html</a> + <a href="lang_createtable.html">lang_createtable.html</a> + <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_createview.html">lang_createview.html</a> + <a href="lang_delete.html">lang_delete.html</a> + <a href="lang_expr.html">lang_expr.html</a> + <a href="lang_insert.html">lang_insert.html</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_select.html">lang_select.html</a> + <a href="lang_select.html#compound">lang_select.html#compound</a> + <a href="lang_select.html#simpleselect">lang_select.html#simpleselect</a> + <a href="lang_update.html">lang_update.html</a> + <a href="lang_upsert.html">lang_upsert.html</a> + <a href="lang_with.html">lang_with.html</a> + <a href="partialindex.html">partialindex.html</a> + <a href="windowfunctions.html">windowfunctions.html</a> + <a href="windowfunctions.html#framespec">windowfunctions.html#framespec</a> + <a href="windowfunctions.html#wexcls">windowfunctions.html#wexcls</a> +<li>table-valued function → <a href="carray.html">carray.html</a> + <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="changes.html#version_3_9_0">changes.html#version_3_9_0</a> + <a href="completion.html">completion.html</a> + <a href="dbpage.html">dbpage.html</a> + <a href="fts5.html">fts5.html</a> + <a href="fullsql.html">fullsql.html</a> + <a href="lang_expr.html#in_op">lang_expr.html#in_op</a> + <a href="lang_select.html#tabfunc1">lang_select.html#tabfunc1</a> + <a href="loadext.html#write">loadext.html#write</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> + <a href="releaselog/3_9_0.html">releaselog/3_9_0.html</a> + <a href="releaselog/3_9_1.html">releaselog/3_9_1.html</a> + <a href="releaselog/3_9_2.html">releaselog/3_9_2.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> + <a href="series.html">series.html</a> + <a href="vtablist.html">vtablist.html</a> + <a href="zipfile.html">zipfile.html</a> +<li>table-valued functions → <a href="appfunc.html">appfunc.html</a> + <a href="bytecodevtab.html">bytecodevtab.html</a> + <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="changes.html#version_3_26_0">changes.html#version_3_26_0</a> + <a href="changes.html#version_3_9_0">changes.html#version_3_9_0</a> + <a href="json1.html">json1.html</a> + <a href="json1.html#jtree">json1.html#jtree</a> + <a href="lang_select.html#tabfunc1">lang_select.html#tabfunc1</a> + <a href="loadext.html#write">loadext.html#write</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragfunc">pragma.html#pragfunc</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="releaselog/3_26_0.html">releaselog/3_26_0.html</a> + <a href="releaselog/3_9_0.html">releaselog/3_9_0.html</a> + <a href="releaselog/3_9_1.html">releaselog/3_9_1.html</a> + <a href="releaselog/3_9_2.html">releaselog/3_9_2.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> + <a href="vtab.html#epoonlyvtab">vtab.html#epoonlyvtab</a> + <a href="vtab.html#obc">vtab.html#obc</a> + <a href="vtab.html#xshadowname">vtab.html#xshadowname</a> + <a href="vtablist.html">vtablist.html</a> +<li>table-valued functions in the FROM clause → <a href="dbstat.html">dbstat.html</a> +<li>tan → <a href="lang_mathfunc.html">lang_mathfunc.html</a> +<li>tanh → <a href="lang_mathfunc.html">lang_mathfunc.html</a> +<li>Tcl extension → <a href="lang_expr.html#varparam">lang_expr.html#varparam</a> +<li>TCL Interface → <a href="arch.html">arch.html</a> + <a href="changes.html#version_3_11_0">changes.html#version_3_11_0</a> + <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="changes.html#version_3_30_0">changes.html#version_3_30_0</a> + <a href="changes.html#version_3_6_19">changes.html#version_3_6_19</a> + <a href="changes.html#version_3_7_10">changes.html#version_3_7_10</a> + <a href="compile.html#tclapi">compile.html#tclapi</a> + <a href="releaselog/3_11_0.html">releaselog/3_11_0.html</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> + <a href="releaselog/3_30_0.html">releaselog/3_30_0.html</a> + <a href="releaselog/3_30_1.html">releaselog/3_30_1.html</a> + <a href="releaselog/3_6_19.html">releaselog/3_6_19.html</a> + <a href="releaselog/3_7_10.html">releaselog/3_7_10.html</a> +<li>TCL interface eval method → <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> +<li>TCL test suite → <a href="compile.html#tclapi">compile.html#tclapi</a> + <a href="malloc.html">malloc.html</a> + <a href="qmplan.html">qmplan.html</a> +<li>TEA tarball → <a href="howtocompile.html#tcl">howtocompile.html#tcl</a> +<li>temp_store pragma → <a href="inmemorydb.html#temp_db">inmemorydb.html#temp_db</a> + <a href="tempfiles.html#otheropt">tempfiles.html#otheropt</a> + <a href="tempfiles.html#tempstore">tempfiles.html#tempstore</a> +<li>temp_store_directory → <a href="pragma.html#pragma_temp_store">pragma.html#pragma_temp_store</a> +<li>temp_store_directory pragma → <a href="c3ref/c_access_exists.html">c3ref/c_access_exists.html</a> + <a href="c3ref/temp_directory.html">c3ref/temp_directory.html</a> + <a href="capi3ref.html#SQLITE_ACCESS_EXISTS">capi3ref.html#SQLITE_ACCESS_EXISTS</a> + <a href="capi3ref.html#sqlite3_temp_directory">capi3ref.html#sqlite3_temp_directory</a> +<li>temporary directory search algorithm → <a href="changes.html#version_3_13_0">changes.html#version_3_13_0</a> + <a href="releaselog/3_13_0.html">releaselog/3_13_0.html</a> +<li>temporary disk files → <a href="rescode.html#cantopen">rescode.html#cantopen</a> + <a href="rescode.html#full">rescode.html#full</a> + <a href="shortnames.html">shortnames.html</a> +<li>temporary tables → <a href="pragma.html#pragma_temp_store">pragma.html#pragma_temp_store</a> + <a href="pragma.html#pragma_temp_store_directory">pragma.html#pragma_temp_store_directory</a> +<li>tempstore → <a href="compile.html#temp_store">compile.html#temp_store</a> +<li>test coverage → <a href="about.html">about.html</a> + <a href="changes.html#version_3_6_17">changes.html#version_3_6_17</a> + <a href="faq.html#q17">faq.html#q17</a> + <a href="features.html">features.html</a> + <a href="malloc.html">malloc.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_6_17.html">releaselog/3_6_17.html</a> + <a href="support.html#prosupport">support.html#prosupport</a> + <a href="th3.html">th3.html</a> +<li>test suite → <a href="limits.html">limits.html</a> + <a href="tclsqlite.html">tclsqlite.html</a> +<li>testcase macros → <a href="testing.html#tension">testing.html#tension</a> +<li>tested → <a href="appfileformat.html">appfileformat.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>testing → <a href="assert.html">assert.html</a> + <a href="changes.html#version_3_8_10">changes.html#version_3_8_10</a> + <a href="hirely.html">hirely.html</a> + <a href="howtocorrupt.html#cfgerr">howtocorrupt.html#cfgerr</a> + <a href="malloc.html">malloc.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="qmplan.html">qmplan.html</a> + <a href="releaselog/3_8_10.html">releaselog/3_8_10.html</a> + <a href="releaselog/3_8_10_1.html">releaselog/3_8_10_1.html</a> + <a href="releaselog/3_8_10_2.html">releaselog/3_8_10_2.html</a> +<li>text encoding → <a href="fileformat2.html#serialtype">fileformat2.html#serialtype</a> +<li>TH3 → <a href="malloc.html">malloc.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="qmplan.html">qmplan.html</a> + <a href="support.html#prosupport">support.html#prosupport</a> + <a href="testing.html#coverage">testing.html#coverage</a> + <a href="testing.html#stmtvbr">testing.html#stmtvbr</a> + <a href="testing.html#tcl">testing.html#tcl</a> +<li>the - and - operators → <a href="changes.html#version_3_38_0">changes.html#version_3_38_0</a> + <a href="lang_expr.html#collateop">lang_expr.html#collateop</a> + <a href="lang_expr.html#extract">lang_expr.html#extract</a> + <a href="releaselog/3_38_0.html">releaselog/3_38_0.html</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> +<li>the - operator → <a href="json1.html#jobj">json1.html#jobj</a> + <a href="json1.html#jset">json1.html#jset</a> + <a href="json1.html#varg">json1.html#varg</a> +<li>the amalgamation → <a href="c3ref/libversion.html">c3ref/libversion.html</a> + <a href="capi3ref.html#sqlite3_libversion">capi3ref.html#sqlite3_libversion</a> +<li>The Fossil NGQP Upgrade Case Study → <a href="optoverview.html#crossjoin">optoverview.html#crossjoin</a> +<li>the json1 extension → <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="changes.html#version_3_9_0">changes.html#version_3_9_0</a> + <a href="changes.html#version_3_9_1">changes.html#version_3_9_1</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="releaselog/3_9_0.html">releaselog/3_9_0.html</a> + <a href="releaselog/3_9_1.html">releaselog/3_9_1.html</a> + <a href="releaselog/3_9_2.html">releaselog/3_9_2.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> +<li>The Use Of assert In SQLite → <a href="howtocorrupt.html#svptbug">howtocorrupt.html#svptbug</a> + <a href="testing.html#asserts">testing.html#asserts</a> +<li>Things That Can Go Wrong → <a href="lockingv3.html#how_to_corrupt">lockingv3.html#how_to_corrupt</a> +<li>threading mode → <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigmultithread">c3ref/c_config_covering_index_scan.html#sqliteconfigmultithread</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigserialized">c3ref/c_config_covering_index_scan.html#sqliteconfigserialized</a> + <a href="c3ref/c_config_covering_index_scan.html#sqliteconfigsinglethread">c3ref/c_config_covering_index_scan.html#sqliteconfigsinglethread</a> + <a href="c3ref/db_mutex.html">c3ref/db_mutex.html</a> + <a href="c3ref/errcode.html">c3ref/errcode.html</a> + <a href="c3ref/open.html">c3ref/open.html</a> + <a href="c3ref/threadsafe.html">c3ref/threadsafe.html</a> + <a href="capi3ref.html#sqlite3_db_mutex">capi3ref.html#sqlite3_db_mutex</a> + <a href="capi3ref.html#sqlite3_errcode">capi3ref.html#sqlite3_errcode</a> + <a href="capi3ref.html#sqlite3_open">capi3ref.html#sqlite3_open</a> + <a href="capi3ref.html#sqlite3_threadsafe">capi3ref.html#sqlite3_threadsafe</a> + <a href="capi3ref.html#sqliteconfigmultithread">capi3ref.html#sqliteconfigmultithread</a> + <a href="capi3ref.html#sqliteconfigserialized">capi3ref.html#sqliteconfigserialized</a> + <a href="capi3ref.html#sqliteconfigsinglethread">capi3ref.html#sqliteconfigsinglethread</a> + <a href="cintro.html">cintro.html</a> + <a href="compile.html#threadsafe">compile.html#threadsafe</a> + <a href="faq.html#q6">faq.html#q6</a> +<li>three test harnesses → <a href="th3.html">th3.html</a> +<li>time → <a href="lang_datefunc.html#subsec">lang_datefunc.html#subsec</a> +<li>time shift modifiers → <a href="changes.html#version_3_43_0">changes.html#version_3_43_0</a> + <a href="releaselog/3_43_0.html">releaselog/3_43_0.html</a> + <a href="releaselog/3_43_1.html">releaselog/3_43_1.html</a> + <a href="releaselog/3_43_2.html">releaselog/3_43_2.html</a> +<li>timediff SQL function → <a href="changes.html#version_3_43_0">changes.html#version_3_43_0</a> + <a href="releaselog/3_43_0.html">releaselog/3_43_0.html</a> + <a href="releaselog/3_43_1.html">releaselog/3_43_1.html</a> + <a href="releaselog/3_43_2.html">releaselog/3_43_2.html</a> +<li>tokenizer → <a href="fts3.html#compiling_and_enabling_fts3_and_fts4">fts3.html#compiling_and_enabling_fts3_and_fts4</a> + <a href="fts3.html#f4alid">fts3.html#f4alid</a> + <a href="fts3.html#fts4">fts3.html#fts4</a> + <a href="fts3.html#simple_fts_queries">fts3.html#simple_fts_queries</a> +<li>total → <a href="changes.html#version_3_43_1">changes.html#version_3_43_1</a> + <a href="lang_aggfunc.html#avg">lang_aggfunc.html#avg</a> + <a href="releaselog/3_43_1.html">releaselog/3_43_1.html</a> + <a href="releaselog/3_43_2.html">releaselog/3_43_2.html</a> +<li>total_changes → <a href="lang_corefunc.html">lang_corefunc.html</a> +<li>transaction state → <a href="c3ref/txn_state.html">c3ref/txn_state.html</a> + <a href="capi3ref.html#sqlite3_txn_state">capi3ref.html#sqlite3_txn_state</a> +<li>transactional → <a href="fasterthanfs.html">fasterthanfs.html</a> +<li>treats the CROSS JOIN operator specially → <a href="optoverview.html#table_order">optoverview.html#table_order</a> + <a href="queryplanner-ng.html#howtofix">queryplanner-ng.html#howtofix</a> +<li>triggers → <a href="lang_returning.html">lang_returning.html</a> +<li>trigram indexes → <a href="changes.html#version_3_34_0">changes.html#version_3_34_0</a> + <a href="releaselog/3_34_0.html">releaselog/3_34_0.html</a> + <a href="releaselog/3_34_1.html">releaselog/3_34_1.html</a> +<li>trim → <a href="lang_corefunc.html">lang_corefunc.html</a> +<li>trunc → <a href="lang_mathfunc.html">lang_mathfunc.html</a> +<li>truncate optimization → <a href="c3ref/set_authorizer.html">c3ref/set_authorizer.html</a> + <a href="c3ref/update_hook.html">c3ref/update_hook.html</a> + <a href="capi3ref.html#sqlite3_set_authorizer">capi3ref.html#sqlite3_set_authorizer</a> + <a href="capi3ref.html#sqlite3_update_hook">capi3ref.html#sqlite3_update_hook</a> + <a href="changes.html#version_3_6_21">changes.html#version_3_6_21</a> + <a href="changes.html#version_3_6_5">changes.html#version_3_6_5</a> + <a href="releaselog/3_6_21.html">releaselog/3_6_21.html</a> + <a href="releaselog/3_6_5.html">releaselog/3_6_5.html</a> +<li>trusted_schema pragma → <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> +<li>type affinity → <a href="rtree.html">rtree.html</a> + <a href="rtree.html#auxcol">rtree.html#auxcol</a> +<li>type-name → <a href="lang_aggfunc.html">lang_aggfunc.html</a> + <a href="lang_altertable.html">lang_altertable.html</a> + <a href="lang_attach.html">lang_attach.html</a> + <a href="lang_createindex.html">lang_createindex.html</a> + <a href="lang_createtable.html">lang_createtable.html</a> + <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_createview.html">lang_createview.html</a> + <a href="lang_delete.html">lang_delete.html</a> + <a href="lang_expr.html">lang_expr.html</a> + <a href="lang_insert.html">lang_insert.html</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_select.html">lang_select.html</a> + <a href="lang_select.html#compound">lang_select.html#compound</a> + <a href="lang_select.html#simpleselect">lang_select.html#simpleselect</a> + <a href="lang_update.html">lang_update.html</a> + <a href="lang_upsert.html">lang_upsert.html</a> + <a href="lang_with.html">lang_with.html</a> + <a href="partialindex.html">partialindex.html</a> + <a href="windowfunctions.html">windowfunctions.html</a> + <a href="windowfunctions.html#framespec">windowfunctions.html#framespec</a> + <a href="windowfunctions.html#wexcls">windowfunctions.html#wexcls</a> +<li>typeof → <a href="arch.html">arch.html</a> + <a href="changes.html#version_3_7_12">changes.html#version_3_7_12</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="releaselog/3_7_12.html">releaselog/3_7_12.html</a> +<li>UINT collating sequence → <a href="changes.html#version_3_32_0">changes.html#version_3_32_0</a> + <a href="releaselog/3_32_0.html">releaselog/3_32_0.html</a> + <a href="releaselog/3_32_1.html">releaselog/3_32_1.html</a> + <a href="releaselog/3_32_2.html">releaselog/3_32_2.html</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> +<li>unhex → <a href="changes.html#version_3_41_0">changes.html#version_3_41_0</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="lang_corefunc.html#hex">lang_corefunc.html#hex</a> + <a href="releaselog/3_41_0.html">releaselog/3_41_0.html</a> + <a href="releaselog/3_41_1.html">releaselog/3_41_1.html</a> + <a href="releaselog/3_41_2.html">releaselog/3_41_2.html</a> +<li>unicode → <a href="changes.html#version_3_7_16">changes.html#version_3_7_16</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="releaselog/3_7_16.html">releaselog/3_7_16.html</a> + <a href="releaselog/3_7_16_1.html">releaselog/3_7_16_1.html</a> + <a href="releaselog/3_7_16_2.html">releaselog/3_7_16_2.html</a> +<li>unicode61 → <a href="changes.html#version_3_8_0">changes.html#version_3_8_0</a> + <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="compile.html#disable_fts3_unicode">compile.html#disable_fts3_unicode</a> + <a href="releaselog/3_8_0.html">releaselog/3_8_0.html</a> + <a href="releaselog/3_8_0_1.html">releaselog/3_8_0_1.html</a> + <a href="releaselog/3_8_0_2.html">releaselog/3_8_0_2.html</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> +<li>unindexed → <a href="fts5.html#appendix_a">fts5.html#appendix_a</a> + <a href="fts5.html#fts5_table_creation_and_initialization">fts5.html#fts5_table_creation_and_initialization</a> +<li>UNION virtual table → <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> +<li>unionvtab → <a href="swarmvtab.html#compiling_and_using_swarmvtab">swarmvtab.html#compiling_and_using_swarmvtab</a> + <a href="vtablist.html">vtablist.html</a> +<li>UNIQUE → <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="conflict.html">conflict.html</a> + <a href="expridx.html">expridx.html</a> + <a href="fileformat2.html#ffschema">fileformat2.html#ffschema</a> + <a href="fileformat2.html#intschema">fileformat2.html#intschema</a> + <a href="fullsql.html">fullsql.html</a> + <a href="lang_conflict.html">lang_conflict.html</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> + <a href="schematab.html">schematab.html</a> + <a href="withoutrowid.html#bene">withoutrowid.html#bene</a> +<li>UNIQUE constraint → <a href="optoverview.html#autoindex">optoverview.html#autoindex</a> + <a href="pragma.html#pragma_index_info">pragma.html#pragma_index_info</a> + <a href="pragma.html#pragma_index_list">pragma.html#pragma_index_list</a> + <a href="pragma.html#pragma_index_xinfo">pragma.html#pragma_index_xinfo</a> + <a href="rescode.html#constraint_unique">rescode.html#constraint_unique</a> + <a href="rowidtable.html">rowidtable.html</a> +<li>UNIQUE constraints → <a href="stricttables.html">stricttables.html</a> +<li>unique index → <a href="lang_upsert.html">lang_upsert.html</a> + <a href="withoutrowid.html#bene">withoutrowid.html#bene</a> +<li>unixepoch → <a href="lang_datefunc.html#subsec">lang_datefunc.html#subsec</a> +<li>unixepoch function → <a href="changes.html#version_3_38_0">changes.html#version_3_38_0</a> + <a href="releaselog/3_38_0.html">releaselog/3_38_0.html</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> +<li>unlikely → <a href="changes.html#version_3_8_1">changes.html#version_3_8_1</a> + <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="lang_corefunc.html#likelihood">lang_corefunc.html#likelihood</a> + <a href="lang_corefunc.html#likely">lang_corefunc.html#likely</a> + <a href="oldnews.html">oldnews.html</a> + <a href="queryplanner-ng.html#howtofix">queryplanner-ng.html#howtofix</a> + <a href="releaselog/3_8_1.html">releaselog/3_8_1.html</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> +<li>unlink corruption → <a href="errlog.html">errlog.html</a> +<li>unlinked database files → <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> +<li>unprotected sqlite3_value → <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/result_blob.html">c3ref/result_blob.html</a> + <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_result_blob">capi3ref.html#sqlite3_result_blob</a> + <a href="capi3ref.html#sqlite3_value_blob">capi3ref.html#sqlite3_value_blob</a> +<li>UPDATE → <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> + <a href="c3ref/column_count.html">c3ref/column_count.html</a> + <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> + <a href="c3ref/total_changes.html">c3ref/total_changes.html</a> + <a href="capi3ref.html#sqlite3_blob_open">capi3ref.html#sqlite3_blob_open</a> + <a href="capi3ref.html#sqlite3_column_count">capi3ref.html#sqlite3_column_count</a> + <a href="capi3ref.html#sqlite3_preupdate_blobwrite">capi3ref.html#sqlite3_preupdate_blobwrite</a> + <a href="capi3ref.html#sqlite3_total_changes">capi3ref.html#sqlite3_total_changes</a> + <a href="changes.html#version_3_11_0">changes.html#version_3_11_0</a> + <a href="changes.html#version_3_17_0">changes.html#version_3_17_0</a> + <a href="changes.html#version_3_24_0">changes.html#version_3_24_0</a> + <a href="changes.html#version_3_26_0">changes.html#version_3_26_0</a> + <a href="changes.html#version_3_35_0">changes.html#version_3_35_0</a> + <a href="changes.html#version_3_6_4">changes.html#version_3_6_4</a> + <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="compile.html#enable_update_delete_limit">compile.html#enable_update_delete_limit</a> + <a href="conflict.html">conflict.html</a> + <a href="fts3.html#fts4">fts3.html#fts4</a> + <a href="fts5.html">fts5.html</a> + <a href="fullsql.html">fullsql.html</a> + <a href="isolation.html">isolation.html</a> + <a href="lang.html">lang.html</a> + <a href="lang_altertable.html#caution">lang_altertable.html#caution</a> + <a href="lang_analyze.html#req">lang_analyze.html#req</a> + <a href="lang_createtable.html#notnullconst">lang_createtable.html#notnullconst</a> + <a href="lang_createtable.html#primkeyconst">lang_createtable.html#primkeyconst</a> + <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_createview.html">lang_createview.html</a> + <a href="lang_indexedby.html">lang_indexedby.html</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_upsert.html">lang_upsert.html</a> + <a href="lang_with.html">lang_with.html</a> + <a href="pragma.html#pragma_count_changes">pragma.html#pragma_count_changes</a> + <a href="pragma.html#pragma_writable_schema">pragma.html#pragma_writable_schema</a> + <a href="rbu.html">rbu.html</a> + <a href="rbu.html#rbu_updates">rbu.html#rbu_updates</a> + <a href="releaselog/3_11_0.html">releaselog/3_11_0.html</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> + <a href="releaselog/3_17_0.html">releaselog/3_17_0.html</a> + <a href="releaselog/3_24_0.html">releaselog/3_24_0.html</a> + <a href="releaselog/3_26_0.html">releaselog/3_26_0.html</a> + <a href="releaselog/3_35_0.html">releaselog/3_35_0.html</a> + <a href="releaselog/3_35_1.html">releaselog/3_35_1.html</a> + <a href="releaselog/3_35_2.html">releaselog/3_35_2.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> + <a href="releaselog/3_6_4.html">releaselog/3_6_4.html</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> + <a href="rowvalue.html">rowvalue.html</a> + <a href="rowvalue.html#rvinop">rowvalue.html#rvinop</a> + <a href="rtree.html">rtree.html</a> + <a href="vtab.html">vtab.html</a> + <a href="vtab.html#xupdate">vtab.html#xupdate</a> +<li>UPDATE FROM → <a href="c3ref/vtab_nochange.html">c3ref/vtab_nochange.html</a> + <a href="capi3ref.html#sqlite3_vtab_nochange">capi3ref.html#sqlite3_vtab_nochange</a> + <a href="changes.html#version_3_33_0">changes.html#version_3_33_0</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="releaselog/3_33_0.html">releaselog/3_33_0.html</a> +<li>UPDATE trigger → <a href="rescode.html#constraint_pinned">rescode.html#constraint_pinned</a> +<li>update-stmt → <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_update.html">lang_update.html</a> +<li>update-stmt-limited → <a href="lang_update.html#upfrom">lang_update.html#upfrom</a> +<li>upluscontrol → <a href="lang_indexedby.html">lang_indexedby.html</a> + <a href="queryplanner-ng.html#howtofix">queryplanner-ng.html#howtofix</a> +<li>upper → <a href="faq.html#q18">faq.html#q18</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> +<li>upsert → <a href="pragma.html#pragma_count_changes">pragma.html#pragma_count_changes</a> +<li>UPSERT → <a href="changes.html#version_3_24_0">changes.html#version_3_24_0</a> + <a href="changes.html#version_3_35_0">changes.html#version_3_35_0</a> + <a href="changes.html#version_3_37_1">changes.html#version_3_37_1</a> + <a href="fullsql.html">fullsql.html</a> + <a href="lang.html">lang.html</a> + <a href="lang_conflict.html">lang_conflict.html</a> + <a href="lang_insert.html">lang_insert.html</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_24_0.html">releaselog/3_24_0.html</a> + <a href="releaselog/3_35_0.html">releaselog/3_35_0.html</a> + <a href="releaselog/3_35_1.html">releaselog/3_35_1.html</a> + <a href="releaselog/3_35_2.html">releaselog/3_35_2.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> + <a href="releaselog/3_37_1.html">releaselog/3_37_1.html</a> + <a href="releaselog/3_37_2.html">releaselog/3_37_2.html</a> +<li>upsert clause → <a href="lang_insert.html">lang_insert.html</a> +<li>upsert-clause → <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_insert.html">lang_insert.html</a> + <a href="lang_upsert.html">lang_upsert.html</a> +<li>URI filename → <a href="c3ref/open.html#urifilenamesinsqlite3open">c3ref/open.html#urifilenamesinsqlite3open</a> + <a href="c3ref/uri_boolean.html">c3ref/uri_boolean.html</a> + <a href="capi3ref.html#sqlite3_uri_boolean">capi3ref.html#sqlite3_uri_boolean</a> + <a href="capi3ref.html#urifilenamesinsqlite3open">capi3ref.html#urifilenamesinsqlite3open</a> + <a href="compile.html#use_uri">compile.html#use_uri</a> + <a href="inmemorydb.html#sharedmemdb">inmemorydb.html#sharedmemdb</a> + <a href="lang_attach.html">lang_attach.html</a> + <a href="lang_vacuum.html#vacuuminto">lang_vacuum.html#vacuuminto</a> + <a href="psow.html#tornpage">psow.html#tornpage</a> + <a href="sharedcache.html#inmemsharedcache">sharedcache.html#inmemsharedcache</a> + <a href="tclsqlite.html">tclsqlite.html</a> +<li>URI filename examples → <a href="uri.html#urivfs">uri.html#urivfs</a> +<li>URI filenames → <a href="c3ref/open.html#urifilenamesinsqlite3open">c3ref/open.html#urifilenamesinsqlite3open</a> + <a href="capi3ref.html#urifilenamesinsqlite3open">capi3ref.html#urifilenamesinsqlite3open</a> + <a href="changes.html#version_3_11_0">changes.html#version_3_11_0</a> + <a href="changes.html#version_3_7_10">changes.html#version_3_7_10</a> + <a href="changes.html#version_3_7_13">changes.html#version_3_7_13</a> + <a href="changes.html#version_3_7_7">changes.html#version_3_7_7</a> + <a href="compile.html#allow_uri_authority">compile.html#allow_uri_authority</a> + <a href="compile.html#enable_8_3_names">compile.html#enable_8_3_names</a> + <a href="inmemorydb.html">inmemorydb.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_11_0.html">releaselog/3_11_0.html</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> + <a href="releaselog/3_7_10.html">releaselog/3_7_10.html</a> + <a href="releaselog/3_7_13.html">releaselog/3_7_13.html</a> + <a href="releaselog/3_7_7.html">releaselog/3_7_7.html</a> + <a href="sharedcache.html#dontuse">sharedcache.html#dontuse</a> + <a href="shortnames.html">shortnames.html</a> + <a href="tclsqlite.html">tclsqlite.html</a> + <a href="vfs.html">vfs.html</a> +<li>URI filenames in sqlite3_open → <a href="uri.html#urivfs">uri.html#urivfs</a> +<li>URI query parameters → <a href="changes.html#version_3_8_5">changes.html#version_3_8_5</a> + <a href="releaselog/3_8_5.html">releaselog/3_8_5.html</a> +<li>use of shared cache mode is discouraged → <a href="c3ref/enable_shared_cache.html">c3ref/enable_shared_cache.html</a> + <a href="c3ref/open.html">c3ref/open.html</a> + <a href="capi3ref.html#sqlite3_enable_shared_cache">capi3ref.html#sqlite3_enable_shared_cache</a> + <a href="capi3ref.html#sqlite3_open">capi3ref.html#sqlite3_open</a> +<li>user-defined window functions → <a href="c3ref/create_function.html">c3ref/create_function.html</a> + <a href="capi3ref.html#sqlite3_create_function">capi3ref.html#sqlite3_create_function</a> + <a href="windowfunctions.html#aggwinfunc">windowfunctions.html#aggwinfunc</a> +<li>user_version → <a href="compile.html#omit_schema_version_pragmas">compile.html#omit_schema_version_pragmas</a> +<li>user_version pragma → <a href="fileformat2.html#database_header">fileformat2.html#database_header</a> + <a href="fileformat2.html#enc">fileformat2.html#enc</a> + <a href="pragma.html#pragma_application_id">pragma.html#pragma_application_id</a> + <a href="pragma.html#pragma_schema_version">pragma.html#pragma_schema_version</a> +<li>using SQLite for websites → <a href="np1queryprob.html">np1queryprob.html</a> +<li>Using the SQLite Online Backup API → <a href="c3ref/backup.html">c3ref/backup.html</a> + <a href="c3ref/backup_finish.html">c3ref/backup_finish.html</a> + <a href="capi3ref.html#sqlite3_backup">capi3ref.html#sqlite3_backup</a> + <a href="capi3ref.html#sqlite3_backup_finish">capi3ref.html#sqlite3_backup_finish</a> +<li>Using the SQLite Unlock Notification Feature → <a href="c3ref/unlock_notify.html">c3ref/unlock_notify.html</a> + <a href="capi3ref.html#sqlite3_unlock_notify">capi3ref.html#sqlite3_unlock_notify</a> + <a href="compile.html#enable_unlock_notify">compile.html#enable_unlock_notify</a> +<li>utc modifier → <a href="changes.html#version_3_10_0">changes.html#version_3_10_0</a> + <a href="deterministic.html#dtexception">deterministic.html#dtexception</a> + <a href="releaselog/3_10_0.html">releaselog/3_10_0.html</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> +<li>VACUUM → <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfiglegacyfileformat">c3ref/c_dbconfig_defensive.html#sqlitedbconfiglegacyfileformat</a> + <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfigresetdatabase">c3ref/c_dbconfig_defensive.html#sqlitedbconfigresetdatabase</a> + <a href="capi3ref.html#sqlitedbconfiglegacyfileformat">capi3ref.html#sqlitedbconfiglegacyfileformat</a> + <a href="capi3ref.html#sqlitedbconfigresetdatabase">capi3ref.html#sqlitedbconfigresetdatabase</a> + <a href="changes.html#version_3_15_0">changes.html#version_3_15_0</a> + <a href="changes.html#version_3_15_1">changes.html#version_3_15_1</a> + <a href="changes.html#version_3_19_0">changes.html#version_3_19_0</a> + <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="changes.html#version_3_35_0">changes.html#version_3_35_0</a> + <a href="changes.html#version_3_5_8">changes.html#version_3_5_8</a> + <a href="changes.html#version_3_7_5">changes.html#version_3_7_5</a> + <a href="changes.html#version_3_7_9">changes.html#version_3_7_9</a> + <a href="changes.html#version_3_8_1">changes.html#version_3_8_1</a> + <a href="changes.html#version_3_8_10">changes.html#version_3_8_10</a> + <a href="changes.html#version_3_9_0">changes.html#version_3_9_0</a> + <a href="cli.html#sha3sum">cli.html#sha3sum</a> + <a href="compile.html#omit_vacuum">compile.html#omit_vacuum</a> + <a href="dbhash.html">dbhash.html</a> + <a href="dbstat.html#dbstatagg">dbstat.html#dbstatagg</a> + <a href="faq.html#q20">faq.html#q20</a> + <a href="fts3.html#*fts4optcmd">fts3.html#*fts4optcmd</a> + <a href="fts3.html#fts4">fts3.html#fts4</a> + <a href="fullsql.html">fullsql.html</a> + <a href="howtocorrupt.html#cfgerr">howtocorrupt.html#cfgerr</a> + <a href="imposter.html">imposter.html</a> + <a href="lang.html">lang.html</a> + <a href="mmap.html">mmap.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_auto_vacuum">pragma.html#pragma_auto_vacuum</a> + <a href="pragma.html#pragma_journal_size_limit">pragma.html#pragma_journal_size_limit</a> + <a href="pragma.html#pragma_page_size">pragma.html#pragma_page_size</a> + <a href="pragma.html#pragma_schema_version">pragma.html#pragma_schema_version</a> + <a href="pragma.html#pragma_secure_delete">pragma.html#pragma_secure_delete</a> + <a href="rbu.html">rbu.html</a> + <a href="releaselog/3_15_0.html">releaselog/3_15_0.html</a> + <a href="releaselog/3_15_1.html">releaselog/3_15_1.html</a> + <a href="releaselog/3_15_2.html">releaselog/3_15_2.html</a> + <a href="releaselog/3_19_0.html">releaselog/3_19_0.html</a> + <a href="releaselog/3_19_1.html">releaselog/3_19_1.html</a> + <a href="releaselog/3_19_2.html">releaselog/3_19_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> + <a href="releaselog/3_35_0.html">releaselog/3_35_0.html</a> + <a href="releaselog/3_35_1.html">releaselog/3_35_1.html</a> + <a href="releaselog/3_35_2.html">releaselog/3_35_2.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> + <a href="releaselog/3_5_8.html">releaselog/3_5_8.html</a> + <a href="releaselog/3_7_5.html">releaselog/3_7_5.html</a> + <a href="releaselog/3_7_9.html">releaselog/3_7_9.html</a> + <a href="releaselog/3_8_1.html">releaselog/3_8_1.html</a> + <a href="releaselog/3_8_10.html">releaselog/3_8_10.html</a> + <a href="releaselog/3_8_10_1.html">releaselog/3_8_10_1.html</a> + <a href="releaselog/3_8_10_2.html">releaselog/3_8_10_2.html</a> + <a href="releaselog/3_9_0.html">releaselog/3_9_0.html</a> + <a href="releaselog/3_9_1.html">releaselog/3_9_1.html</a> + <a href="releaselog/3_9_2.html">releaselog/3_9_2.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> + <a href="rowidtable.html">rowidtable.html</a> + <a href="tempfiles.html">tempfiles.html</a> + <a href="tempfiles.html#vacuumdb">tempfiles.html#vacuumdb</a> + <a href="wal.html#advantages">wal.html#advantages</a> +<li>VACUUM INTO → <a href="backup.html">backup.html</a> + <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="changes.html#version_3_40_0">changes.html#version_3_40_0</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> + <a href="releaselog/3_40_0.html">releaselog/3_40_0.html</a> + <a href="releaselog/3_40_1.html">releaselog/3_40_1.html</a> +<li>vacuum-stmt → <a href="lang_vacuum.html">lang_vacuum.html</a> +<li>VALUES → <a href="lang_select.html">lang_select.html</a> + <a href="lang_select.html#compound">lang_select.html#compound</a> + <a href="lang_select.html#orderby">lang_select.html#orderby</a> +<li>VALUES clause → <a href="changes.html#version_3_8_3">changes.html#version_3_8_3</a> + <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="lang_select.html#limitoffset">lang_select.html#limitoffset</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_8_3.html">releaselog/3_8_3.html</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> + <a href="unionvtab.html">unionvtab.html</a> +<li>variable-length integer → <a href="fileformat2.html#record_format">fileformat2.html#record_format</a> + <a href="rowidtable.html">rowidtable.html</a> +<li>varint → <a href="fileformat2.html#record_format">fileformat2.html#record_format</a> +<li>VDBE → <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="compile.html#debug">compile.html#debug</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> +<li>vdbe_trace → <a href="debugging.html">debugging.html</a> + <a href="opcode.html#subprog">opcode.html#subprog</a> +<li>Version 3.0.0 → <a href="lockingv3.html">lockingv3.html</a> +<li>version 3.0.0 → <a href="chronology.html">chronology.html</a> + <a href="fileformat2.html#schemaformat">fileformat2.html#schemaformat</a> +<li>version 3.0.1 → <a href="chronology.html">chronology.html</a> +<li>version 3.0.2 → <a href="chronology.html">chronology.html</a> +<li>version 3.0.3 → <a href="chronology.html">chronology.html</a> +<li>version 3.0.4 → <a href="chronology.html">chronology.html</a> +<li>version 3.0.5 → <a href="chronology.html">chronology.html</a> +<li>version 3.0.6 → <a href="chronology.html">chronology.html</a> +<li>version 3.0.7 → <a href="chronology.html">chronology.html</a> +<li>version 3.0.8 → <a href="chronology.html">chronology.html</a> +<li>version 3.1.0 → <a href="chronology.html">chronology.html</a> +<li>version 3.1.1 → <a href="chronology.html">chronology.html</a> +<li>version 3.1.2 → <a href="chronology.html">chronology.html</a> +<li>version 3.1.3 → <a href="chronology.html">chronology.html</a> + <a href="fileformat2.html#schemaformat">fileformat2.html#schemaformat</a> +<li>version 3.1.4 → <a href="chronology.html">chronology.html</a> + <a href="fileformat2.html#schemaformat">fileformat2.html#schemaformat</a> +<li>version 3.1.5 → <a href="chronology.html">chronology.html</a> +<li>version 3.1.6 → <a href="chronology.html">chronology.html</a> +<li>version 3.10.0 → <a href="chronology.html">chronology.html</a> + <a href="howtocorrupt.html#alias">howtocorrupt.html#alias</a> + <a href="news.html">news.html</a> + <a href="vtab.html#colUsed">vtab.html#colUsed</a> +<li>version 3.10.1 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> +<li>version 3.10.2 → <a href="chronology.html">chronology.html</a> +<li>version 3.11.0 → <a href="chronology.html">chronology.html</a> + <a href="fts3.html#f3tknzr">fts3.html#f3tknzr</a> + <a href="news.html">news.html</a> + <a href="wal.html#advantages">wal.html#advantages</a> + <a href="wal.html#bigwal">wal.html#bigwal</a> +<li>Version 3.11.0 → <a href="compile.html#enable_fts3_tokenizer">compile.html#enable_fts3_tokenizer</a> +<li>version 3.11.1 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> +<li>version 3.12.0 → <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> + <a href="pgszchng2016.html">pgszchng2016.html</a> + <a href="pragma.html#pragma_page_size">pragma.html#pragma_page_size</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> +<li>Version 3.12.0 → <a href="compile.html#enable_fts3_tokenizer">compile.html#enable_fts3_tokenizer</a> +<li>version 3.12.0 page size change → <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> +<li>version 3.12.1 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> +<li>version 3.12.2 → <a href="chronology.html">chronology.html</a> +<li>version 3.13.0 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> + <a href="sessionintro.html">sessionintro.html</a> +<li>version 3.14 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> +<li>version 3.14.0 → <a href="vtab.html#worid">vtab.html#worid</a> +<li>version 3.14.1 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> +<li>version 3.14.2 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> +<li>version 3.15.0 → <a href="chronology.html">chronology.html</a> + <a href="lang_update.html">lang_update.html</a> + <a href="lang_vacuum.html">lang_vacuum.html</a> + <a href="news.html">news.html</a> + <a href="rowvalue.html#rvinop">rowvalue.html#rvinop</a> + <a href="uri.html#coreqp">uri.html#coreqp</a> +<li>version 3.15.1 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> +<li>version 3.15.2 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> +<li>version 3.16.0 → <a href="changes.html#version_3_18_1">changes.html#version_3_18_1</a> + <a href="changes.html#version_3_19_3">changes.html#version_3_19_3</a> + <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_18_1.html">releaselog/3_18_1.html</a> + <a href="releaselog/3_18_2.html">releaselog/3_18_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> +<li>version 3.16.1 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> +<li>version 3.16.2 → <a href="chronology.html">chronology.html</a> +<li>version 3.17.0 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> +<li>version 3.18.0 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> +<li>version 3.18.1 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> +<li>version 3.18.2 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> +<li>version 3.19.0 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> +<li>version 3.19.1 → <a href="chronology.html">chronology.html</a> +<li>version 3.19.2 → <a href="chronology.html">chronology.html</a> +<li>version 3.19.3 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> +<li>Version 3.19.3 → <a href="news.html">news.html</a> +<li>version 3.2.0 → <a href="chronology.html">chronology.html</a> +<li>version 3.2.1 → <a href="chronology.html">chronology.html</a> +<li>version 3.2.2 → <a href="chronology.html">chronology.html</a> +<li>version 3.2.3 → <a href="chronology.html">chronology.html</a> +<li>version 3.2.4 → <a href="chronology.html">chronology.html</a> +<li>version 3.2.5 → <a href="chronology.html">chronology.html</a> +<li>version 3.2.6 → <a href="chronology.html">chronology.html</a> +<li>version 3.2.7 → <a href="chronology.html">chronology.html</a> +<li>version 3.2.8 → <a href="chronology.html">chronology.html</a> +<li>version 3.20.0 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> +<li>version 3.20.1 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> +<li>version 3.21.0 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> +<li>version 3.22.0 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> + <a href="sqlar.html#cltools">sqlar.html#cltools</a> + <a href="wal.html#advantages">wal.html#advantages</a> + <a href="wal.html#readonly">wal.html#readonly</a> +<li>version 3.23.0 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> + <a href="quirks.html">quirks.html</a> + <a href="sqlar.html#cltools">sqlar.html#cltools</a> +<li>version 3.23.1 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> +<li>version 3.24.0 → <a href="c3ref/c_dbconfig_defensive.html#sqlitedbconfiglegacyaltertable">c3ref/c_dbconfig_defensive.html#sqlitedbconfiglegacyaltertable</a> + <a href="capi3ref.html#sqlitedbconfiglegacyaltertable">capi3ref.html#sqlitedbconfiglegacyaltertable</a> + <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> +<li>version 3.25.0 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> + <a href="windowfunctions.html#udfwinfunc">windowfunctions.html#udfwinfunc</a> +<li>version 3.25.1 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> +<li>version 3.25.2 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> +<li>version 3.25.3 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> +<li>version 3.26.0 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> +<li>version 3.27.0 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> +<li>version 3.27.1 → <a href="chronology.html">chronology.html</a> +<li>version 3.27.2 → <a href="chronology.html">chronology.html</a> +<li>version 3.28.0 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> + <a href="windowfunctions.html#udfwinfunc">windowfunctions.html#udfwinfunc</a> +<li>version 3.29.0 → <a href="chronology.html">chronology.html</a> + <a href="compile.html#enable_stat3">compile.html#enable_stat3</a> + <a href="news.html">news.html</a> + <a href="testing.html#aflfuzz">testing.html#aflfuzz</a> +<li>version 3.3.0 → <a href="chronology.html">chronology.html</a> + <a href="sharedcache.html#sqlite_shared_cache_mode">sharedcache.html#sqlite_shared_cache_mode</a> +<li>version 3.3.1 → <a href="chronology.html">chronology.html</a> +<li>version 3.3.10 → <a href="chronology.html">chronology.html</a> +<li>version 3.3.11 → <a href="chronology.html">chronology.html</a> +<li>version 3.3.12 → <a href="chronology.html">chronology.html</a> +<li>version 3.3.13 → <a href="chronology.html">chronology.html</a> +<li>version 3.3.14 → <a href="chronology.html">chronology.html</a> +<li>Version 3.3.14 → <a href="changes.html#version_3_3_16">changes.html#version_3_3_16</a> + <a href="releaselog/3_3_16.html">releaselog/3_3_16.html</a> +<li>version 3.3.15 → <a href="chronology.html">chronology.html</a> +<li>Version 3.3.15 → <a href="changes.html#version_3_3_16">changes.html#version_3_3_16</a> + <a href="releaselog/3_3_16.html">releaselog/3_3_16.html</a> +<li>version 3.3.16 → <a href="chronology.html">chronology.html</a> +<li>version 3.3.17 → <a href="chronology.html">chronology.html</a> +<li>version 3.3.2 → <a href="chronology.html">chronology.html</a> +<li>version 3.3.3 → <a href="chronology.html">chronology.html</a> +<li>version 3.3.4 → <a href="chronology.html">chronology.html</a> +<li>version 3.3.5 → <a href="chronology.html">chronology.html</a> +<li>version 3.3.6 → <a href="chronology.html">chronology.html</a> +<li>version 3.3.7 → <a href="chronology.html">chronology.html</a> +<li>version 3.3.8 → <a href="chronology.html">chronology.html</a> +<li>version 3.3.9 → <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="chronology.html">chronology.html</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> +<li>version 3.30.0 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> + <a href="pragma.html#pragma_index_info">pragma.html#pragma_index_info</a> + <a href="pragma.html#pragma_index_xinfo">pragma.html#pragma_index_xinfo</a> +<li>version 3.30.1 → <a href="chronology.html">chronology.html</a> +<li>version 3.31.0 → <a href="c3ref/uri_boolean.html">c3ref/uri_boolean.html</a> + <a href="capi3ref.html#sqlite3_uri_boolean">capi3ref.html#sqlite3_uri_boolean</a> + <a href="chronology.html">chronology.html</a> + <a href="cves.html#cvetab">cves.html#cvetab</a> + <a href="news.html">news.html</a> +<li>version 3.31.1 → <a href="chronology.html">chronology.html</a> +<li>version 3.32.0 → <a href="chronology.html">chronology.html</a> + <a href="cves.html#cvetab">cves.html#cvetab</a> + <a href="news.html">news.html</a> +<li>version 3.32.1 → <a href="chronology.html">chronology.html</a> + <a href="cves.html#cvetab">cves.html#cvetab</a> +<li>version 3.32.2 → <a href="chronology.html">chronology.html</a> +<li>version 3.32.3 → <a href="chronology.html">chronology.html</a> + <a href="cves.html#cvetab">cves.html#cvetab</a> +<li>version 3.33.0 → <a href="chronology.html">chronology.html</a> +<li>version 3.34.0 → <a href="chronology.html">chronology.html</a> + <a href="cves.html#cvetab">cves.html#cvetab</a> + <a href="lang_with.html#recursivecte">lang_with.html#recursivecte</a> +<li>version 3.34.1 → <a href="chronology.html">chronology.html</a> + <a href="cves.html#cvetab">cves.html#cvetab</a> +<li>version 3.35.0 → <a href="changes.html#version_3_36_0">changes.html#version_3_36_0</a> + <a href="changes.html#version_3_37_1">changes.html#version_3_37_1</a> + <a href="changes.html#version_3_37_2">changes.html#version_3_37_2</a> + <a href="chronology.html">chronology.html</a> + <a href="howtocorrupt.html#svptbug">howtocorrupt.html#svptbug</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_36_0.html">releaselog/3_36_0.html</a> + <a href="releaselog/3_37_1.html">releaselog/3_37_1.html</a> + <a href="releaselog/3_37_2.html">releaselog/3_37_2.html</a> +<li>version 3.35.1 → <a href="chronology.html">chronology.html</a> +<li>version 3.35.2 → <a href="chronology.html">chronology.html</a> +<li>version 3.35.3 → <a href="chronology.html">chronology.html</a> +<li>version 3.35.4 → <a href="chronology.html">chronology.html</a> +<li>version 3.35.5 → <a href="chronology.html">chronology.html</a> +<li>version 3.36.0 → <a href="chronology.html">chronology.html</a> +<li>Version 3.37.0 → <a href="amalgamation.html">amalgamation.html</a> +<li>version 3.37.0 → <a href="chronology.html">chronology.html</a> +<li>version 3.37.1 → <a href="chronology.html">chronology.html</a> +<li>version 3.37.2 → <a href="chronology.html">chronology.html</a> + <a href="howtocorrupt.html#svptbug">howtocorrupt.html#svptbug</a> +<li>version 3.38.0 → <a href="chronology.html">chronology.html</a> +<li>version 3.38.1 → <a href="chronology.html">chronology.html</a> +<li>version 3.38.2 → <a href="chronology.html">chronology.html</a> +<li>version 3.38.3 → <a href="chronology.html">chronology.html</a> +<li>version 3.38.4 → <a href="chronology.html">chronology.html</a> +<li>version 3.38.5 → <a href="chronology.html">chronology.html</a> +<li>version 3.39.0 → <a href="chronology.html">chronology.html</a> +<li>version 3.39.1 → <a href="chronology.html">chronology.html</a> +<li>version 3.39.2 → <a href="chronology.html">chronology.html</a> + <a href="cves.html#cvetab">cves.html#cvetab</a> +<li>version 3.39.3 → <a href="chronology.html">chronology.html</a> +<li>version 3.39.4 → <a href="chronology.html">chronology.html</a> +<li>version 3.4.0 → <a href="chronology.html">chronology.html</a> +<li>version 3.4.1 → <a href="chronology.html">chronology.html</a> +<li>version 3.4.2 → <a href="chronology.html">chronology.html</a> +<li>version 3.40.0 → <a href="chronology.html">chronology.html</a> +<li>version 3.40.1 → <a href="chronology.html">chronology.html</a> +<li>version 3.41.0 → <a href="chronology.html">chronology.html</a> +<li>version 3.41.1 → <a href="chronology.html">chronology.html</a> +<li>version 3.41.2 → <a href="chronology.html">chronology.html</a> +<li>version 3.42.0 → <a href="changes.html#version_3_44_0">changes.html#version_3_44_0</a> + <a href="chronology.html">chronology.html</a> + <a href="releaselog/3_44_0.html">releaselog/3_44_0.html</a> + <a href="releaselog/3_44_1.html">releaselog/3_44_1.html</a> + <a href="releaselog/3_44_2.html">releaselog/3_44_2.html</a> + <a href="testing.html">testing.html</a> +<li>version 3.43.0 → <a href="chronology.html">chronology.html</a> +<li>version 3.43.1 → <a href="chronology.html">chronology.html</a> +<li>version 3.43.2 → <a href="chronology.html">chronology.html</a> + <a href="cves.html#cvetab">cves.html#cvetab</a> +<li>version 3.44.0 → <a href="changes.html#version_3_45_1">changes.html#version_3_45_1</a> + <a href="chronology.html">chronology.html</a> + <a href="releaselog/3_45_1.html">releaselog/3_45_1.html</a> +<li>version 3.44.1 → <a href="chronology.html">chronology.html</a> +<li>version 3.44.2 → <a href="chronology.html">chronology.html</a> +<li>version 3.45.0 → <a href="chronology.html">chronology.html</a> + <a href="news.html">news.html</a> +<li>version 3.45.1 → <a href="chronology.html">chronology.html</a> +<li>version 3.5.0 → <a href="35to36.html">35to36.html</a> + <a href="c3ref/enable_shared_cache.html">c3ref/enable_shared_cache.html</a> + <a href="c3ref/vfs.html">c3ref/vfs.html</a> + <a href="capi3ref.html#sqlite3_enable_shared_cache">capi3ref.html#sqlite3_enable_shared_cache</a> + <a href="capi3ref.html#sqlite3_vfs">capi3ref.html#sqlite3_vfs</a> + <a href="chronology.html">chronology.html</a> + <a href="custombuild.html">custombuild.html</a> + <a href="fts3.html#fts4">fts3.html#fts4</a> + <a href="sharedcache.html#dontuse">sharedcache.html#dontuse</a> + <a href="sharedcache.html#sqlite_shared_cache_mode">sharedcache.html#sqlite_shared_cache_mode</a> +<li>version 3.5.1 → <a href="chronology.html">chronology.html</a> +<li>version 3.5.2 → <a href="chronology.html">chronology.html</a> +<li>version 3.5.3 → <a href="chronology.html">chronology.html</a> +<li>version 3.5.4 → <a href="chronology.html">chronology.html</a> + <a href="tempfiles.html#views">tempfiles.html#views</a> +<li>version 3.5.5 → <a href="chronology.html">chronology.html</a> +<li>version 3.5.6 → <a href="chronology.html">chronology.html</a> +<li>version 3.5.7 → <a href="chronology.html">chronology.html</a> +<li>version 3.5.8 → <a href="changes.html#version_3_5_9">changes.html#version_3_5_9</a> + <a href="chronology.html">chronology.html</a> + <a href="releaselog/3_5_9.html">releaselog/3_5_9.html</a> +<li>version 3.5.9 → <a href="c3ref/vfs.html">c3ref/vfs.html</a> + <a href="capi3ref.html#sqlite3_vfs">capi3ref.html#sqlite3_vfs</a> + <a href="chronology.html">chronology.html</a> +<li>version 3.6.0 → <a href="c3ref/vfs.html">c3ref/vfs.html</a> + <a href="capi3ref.html#sqlite3_vfs">capi3ref.html#sqlite3_vfs</a> + <a href="chronology.html">chronology.html</a> +<li>version 3.6.1 → <a href="chronology.html">chronology.html</a> + <a href="malloc.html#lookaside">malloc.html#lookaside</a> + <a href="malloc.html#memstatus">malloc.html#memstatus</a> +<li>version 3.6.10 → <a href="chronology.html">chronology.html</a> +<li>version 3.6.11 → <a href="chronology.html">chronology.html</a> +<li>version 3.6.12 → <a href="changes.html#version_3_6_13">changes.html#version_3_6_13</a> + <a href="chronology.html">chronology.html</a> + <a href="releaselog/3_6_13.html">releaselog/3_6_13.html</a> +<li>version 3.6.13 → <a href="chronology.html">chronology.html</a> +<li>version 3.6.14 → <a href="changes.html#version_3_6_14_2">changes.html#version_3_6_14_2</a> + <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_6_14_2.html">releaselog/3_6_14_2.html</a> +<li>version 3.6.14.1 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.6.14.2 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.6.15 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.6.16 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.6.16.1 → <a href="chronology.html">chronology.html</a> +<li>version 3.6.17 → <a href="chronology.html">chronology.html</a> + <a href="sharedcache.html#dontuse">sharedcache.html#dontuse</a> + <a href="th3.html">th3.html</a> + <a href="vtab.html#epoonlyvtab">vtab.html#epoonlyvtab</a> +<li>version 3.6.18 → <a href="c3ref/c_source_id.html">c3ref/c_source_id.html</a> + <a href="capi3ref.html#SQLITE_SOURCE_ID">capi3ref.html#SQLITE_SOURCE_ID</a> + <a href="chronology.html">chronology.html</a> + <a href="limits.html#max_trigger_depth">limits.html#max_trigger_depth</a> + <a href="pragma.html#pragma_recursive_triggers">pragma.html#pragma_recursive_triggers</a> +<li>version 3.6.19 → <a href="chronology.html">chronology.html</a> + <a href="faq.html#q22">faq.html#q22</a> + <a href="foreignkeys.html">foreignkeys.html</a> + <a href="foreignkeys.html#fk_enable">foreignkeys.html#fk_enable</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_foreign_keys">pragma.html#pragma_foreign_keys</a> + <a href="quirks.html">quirks.html</a> +<li>version 3.6.2 → <a href="chronology.html">chronology.html</a> +<li>version 3.6.20 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.6.21 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.6.22 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.6.23 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.6.23.1 → <a href="c3ref/step.html">c3ref/step.html</a> + <a href="capi3ref.html#sqlite3_step">capi3ref.html#sqlite3_step</a> + <a href="chronology.html">chronology.html</a> + <a href="compile.html#omit_autoreset">compile.html#omit_autoreset</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.6.3 → <a href="chronology.html">chronology.html</a> +<li>version 3.6.4 → <a href="atomiccommit.html#safeappend">atomiccommit.html#safeappend</a> + <a href="changes.html#version_3_6_6_1">changes.html#version_3_6_6_1</a> + <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_6_6_1.html">releaselog/3_6_6_1.html</a> +<li>version 3.6.5 → <a href="chronology.html">chronology.html</a> + <a href="lang_delete.html#truncateopt">lang_delete.html#truncateopt</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.6.6 → <a href="changes.html#version_3_6_6_2">changes.html#version_3_6_6_2</a> + <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_6_6_2.html">releaselog/3_6_6_2.html</a> +<li>version 3.6.6.1 → <a href="chronology.html">chronology.html</a> +<li>version 3.6.6.2 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.6.7 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.6.8 → <a href="chronology.html">chronology.html</a> +<li>version 3.6.9 → <a href="chronology.html">chronology.html</a> +<li>version 3.7.0 → <a href="c3ref/vfs.html">c3ref/vfs.html</a> + <a href="capi3ref.html#sqlite3_vfs">capi3ref.html#sqlite3_vfs</a> + <a href="chronology.html">chronology.html</a> + <a href="fileformat2.html#walformat">fileformat2.html#walformat</a> + <a href="howtocorrupt.html#fakeusb">howtocorrupt.html#fakeusb</a> + <a href="isolation.html">isolation.html</a> + <a href="limits.html#max_trigger_depth">limits.html#max_trigger_depth</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_journal_mode">pragma.html#pragma_journal_mode</a> + <a href="wal.html">wal.html</a> +<li>version 3.7.0.1 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.7.1 → <a href="chronology.html">chronology.html</a> + <a href="fileformat2.html#database_header">fileformat2.html#database_header</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.7.10 → <a href="changes.html#version_3_7_11">changes.html#version_3_7_11</a> + <a href="chronology.html">chronology.html</a> + <a href="compile.html#default_file_format">compile.html#default_file_format</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_cache_size">pragma.html#pragma_cache_size</a> + <a href="psow.html">psow.html</a> + <a href="psow.html#tornpage">psow.html#tornpage</a> + <a href="releaselog/3_7_11.html">releaselog/3_7_11.html</a> +<li>version 3.7.11 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.7.12 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.7.12.1 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.7.13 → <a href="chronology.html">chronology.html</a> + <a href="fts3.html#unicode61">fts3.html#unicode61</a> + <a href="oldnews.html">oldnews.html</a> + <a href="sharedcache.html#inmemsharedcache">sharedcache.html#inmemsharedcache</a> +<li>version 3.7.14 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.7.14.1 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.7.15 → <a href="changes.html#version_3_7_15_1">changes.html#version_3_7_15_1</a> + <a href="changes.html#version_3_7_15_2">changes.html#version_3_7_15_2</a> + <a href="changes.html#version_3_7_16_1">changes.html#version_3_7_16_1</a> + <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_7_15_1.html">releaselog/3_7_15_1.html</a> + <a href="releaselog/3_7_15_2.html">releaselog/3_7_15_2.html</a> + <a href="releaselog/3_7_16_1.html">releaselog/3_7_16_1.html</a> + <a href="releaselog/3_7_16_2.html">releaselog/3_7_16_2.html</a> +<li>version 3.7.15.1 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.7.15.2 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.7.16 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.7.16.1 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.7.16.2 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.7.17 → <a href="chronology.html">chronology.html</a> + <a href="fts3.html#fts4aux">fts3.html#fts4aux</a> + <a href="howtocorrupt.html#alias">howtocorrupt.html#alias</a> + <a href="howtocorrupt.html#unlink">howtocorrupt.html#unlink</a> + <a href="mmap.html">mmap.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_automatic_index">pragma.html#pragma_automatic_index</a> +<li>version 3.7.2 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.7.3 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.7.4 → <a href="chronology.html">chronology.html</a> + <a href="fts3.html#fts4">fts3.html#fts4</a> + <a href="oldnews.html">oldnews.html</a> + <a href="wal.html#noshm">wal.html#noshm</a> +<li>version 3.7.5 → <a href="chronology.html">chronology.html</a> + <a href="compile.html#omit_autoreset">compile.html#omit_autoreset</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.7.6 → <a href="c3ref/vfs.html">c3ref/vfs.html</a> + <a href="capi3ref.html#sqlite3_vfs">capi3ref.html#sqlite3_vfs</a> + <a href="chronology.html">chronology.html</a> + <a href="fts3.html#fts4aux">fts3.html#fts4aux</a> + <a href="howtocorrupt.html#cfgerr">howtocorrupt.html#cfgerr</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.7.6.1 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.7.6.2 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.7.6.3 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.7.7 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="uri.html">uri.html</a> + <a href="vtab.html#xsavepoint">vtab.html#xsavepoint</a> +<li>version 3.7.7.1 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.7.8 → <a href="chronology.html">chronology.html</a> + <a href="intern-v-extern-blob.html">intern-v-extern-blob.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.7.9 → <a href="atomiccommit.html#hardware">atomiccommit.html#hardware</a> + <a href="changes.html#version_3_7_11">changes.html#version_3_7_11</a> + <a href="chronology.html">chronology.html</a> + <a href="compile.html#enable_stat2">compile.html#enable_stat2</a> + <a href="oldnews.html">oldnews.html</a> + <a href="psow.html">psow.html</a> + <a href="releaselog/3_7_11.html">releaselog/3_7_11.html</a> +<li>version 3.8.0 → <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="changes.html#version_3_8_7">changes.html#version_3_8_7</a> + <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="optoverview.html#autoindex">optoverview.html#autoindex</a> + <a href="partialindex.html">partialindex.html</a> + <a href="queryplanner-ng.html">queryplanner-ng.html</a> + <a href="queryplanner-ng.html#qpstab">queryplanner-ng.html#qpstab</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> + <a href="releaselog/3_8_7.html">releaselog/3_8_7.html</a> +<li>version 3.8.0.1 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.8.0.2 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.8.1 → <a href="chronology.html">chronology.html</a> + <a href="compile.html#enable_stat3">compile.html#enable_stat3</a> + <a href="howtocorrupt.html#stalefd">howtocorrupt.html#stalefd</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.8.10 → <a href="chronology.html">chronology.html</a> + <a href="testing.html#aflfuzz">testing.html#aflfuzz</a> +<li>version 3.8.10.1 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.8.10.2 → <a href="chronology.html">chronology.html</a> +<li>version 3.8.11 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.8.11.1 → <a href="chronology.html">chronology.html</a> + <a href="vtab.html#epoonlyvtab">vtab.html#epoonlyvtab</a> +<li>version 3.8.2 → <a href="c3ref/index_info.html">c3ref/index_info.html</a> + <a href="capi3ref.html#sqlite3_index_info">capi3ref.html#sqlite3_index_info</a> + <a href="chronology.html">chronology.html</a> + <a href="lang_createtable.html#rowid">lang_createtable.html#rowid</a> + <a href="oldnews.html">oldnews.html</a> + <a href="withoutrowid.html">withoutrowid.html</a> +<li>version 3.8.3 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.8.3.1 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.8.4 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.8.4.1 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>Version 3.8.4.2 → <a href="oldnews.html">oldnews.html</a> +<li>version 3.8.4.2 → <a href="chronology.html">chronology.html</a> +<li>version 3.8.4.3 → <a href="chronology.html">chronology.html</a> +<li>version 3.8.5 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="rtree.html#customquery">rtree.html#customquery</a> +<li>version 3.8.6 → <a href="chronology.html">chronology.html</a> + <a href="datatype3.html#affinity">datatype3.html#affinity</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.8.7 → <a href="changes.html#version_3_8_10_2">changes.html#version_3_8_10_2</a> + <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_8_10_2.html">releaselog/3_8_10_2.html</a> +<li>version 3.8.7.1 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.8.7.2 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.8.7.3 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.8.7.4 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.8.8 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.8.8.1 → <a href="chronology.html">chronology.html</a> +<li>version 3.8.8.2 → <a href="chronology.html">chronology.html</a> +<li>version 3.8.8.3 → <a href="chronology.html">chronology.html</a> +<li>version 3.8.9 → <a href="chronology.html">chronology.html</a> +<li>version 3.9.0 → <a href="c3ref/index_info.html">c3ref/index_info.html</a> + <a href="capi3ref.html#sqlite3_index_info">capi3ref.html#sqlite3_index_info</a> + <a href="changes.html#version_3_12_2">changes.html#version_3_12_2</a> + <a href="changes.html#version_3_13_0">changes.html#version_3_13_0</a> + <a href="chronology.html">chronology.html</a> + <a href="expridx.html">expridx.html</a> + <a href="fts5.html#compiling_and_using_fts5">fts5.html#compiling_and_using_fts5</a> + <a href="lang_createindex.html#indexexpr">lang_createindex.html#indexexpr</a> + <a href="oldnews.html">oldnews.html</a> + <a href="rbu.html#sqldiff">rbu.html#sqldiff</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> + <a href="releaselog/3_13_0.html">releaselog/3_13_0.html</a> + <a href="versionnumbers.html">versionnumbers.html</a> + <a href="vtab.html#epoonlyvtab">vtab.html#epoonlyvtab</a> +<li>version 3.9.1 → <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> +<li>version 3.9.2 → <a href="changes.html#version_3_9_3">changes.html#version_3_9_3</a> + <a href="chronology.html">chronology.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> +<li>version 3.9.3 → <a href="chronology.html">chronology.html</a> +<li>version numbering conventions → <a href="changes.html#version_3_9_0">changes.html#version_3_9_0</a> + <a href="qmplan.html">qmplan.html</a> + <a href="releaselog/3_9_0.html">releaselog/3_9_0.html</a> + <a href="releaselog/3_9_1.html">releaselog/3_9_1.html</a> + <a href="releaselog/3_9_2.html">releaselog/3_9_2.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> +<li>version-valid-for number → <a href="fileformat2.html#database_header">fileformat2.html#database_header</a> + <a href="fileformat2.html#filesize">fileformat2.html#filesize</a> +<li>VFS → <a href="arch.html">arch.html</a> + <a href="atomiccommit.html#hardware">atomiccommit.html#hardware</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlwin32avretry">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlwin32avretry</a> + <a href="c3ref/database_file_object.html">c3ref/database_file_object.html</a> + <a href="c3ref/db_filename.html">c3ref/db_filename.html</a> + <a href="c3ref/filename.html">c3ref/filename.html</a> + <a href="c3ref/filename_database.html">c3ref/filename_database.html</a> + <a href="c3ref/free.html">c3ref/free.html</a> + <a href="c3ref/open.html#coreuriqueryparameters">c3ref/open.html#coreuriqueryparameters</a> + <a href="c3ref/uri_boolean.html">c3ref/uri_boolean.html</a> + <a href="c3ref/vfs.html">c3ref/vfs.html</a> + <a href="capi3ref.html#coreuriqueryparameters">capi3ref.html#coreuriqueryparameters</a> + <a href="capi3ref.html#sqlite3_database_file_object">capi3ref.html#sqlite3_database_file_object</a> + <a href="capi3ref.html#sqlite3_db_filename">capi3ref.html#sqlite3_db_filename</a> + <a href="capi3ref.html#sqlite3_filename">capi3ref.html#sqlite3_filename</a> + <a href="capi3ref.html#sqlite3_filename_database">capi3ref.html#sqlite3_filename_database</a> + <a href="capi3ref.html#sqlite3_free">capi3ref.html#sqlite3_free</a> + <a href="capi3ref.html#sqlite3_uri_boolean">capi3ref.html#sqlite3_uri_boolean</a> + <a href="capi3ref.html#sqlite3_vfs">capi3ref.html#sqlite3_vfs</a> + <a href="capi3ref.html#sqlitefcntlwin32avretry">capi3ref.html#sqlitefcntlwin32avretry</a> + <a href="changes.html#version_3_25_0">changes.html#version_3_25_0</a> + <a href="changes.html#version_3_35_3">changes.html#version_3_35_3</a> + <a href="changes.html#version_3_43_0">changes.html#version_3_43_0</a> + <a href="changes.html#version_3_7_10">changes.html#version_3_7_10</a> + <a href="changes.html#version_3_7_11">changes.html#version_3_7_11</a> + <a href="changes.html#version_3_7_12">changes.html#version_3_7_12</a> + <a href="changes.html#version_3_7_14">changes.html#version_3_7_14</a> + <a href="changes.html#version_3_7_15">changes.html#version_3_7_15</a> + <a href="changes.html#version_3_7_17">changes.html#version_3_7_17</a> + <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="changes.html#version_3_8_5">changes.html#version_3_8_5</a> + <a href="cli.html#arinsup">cli.html#arinsup</a> + <a href="compile.html#enable_locking_style">compile.html#enable_locking_style</a> + <a href="compile.html#fdatasync">compile.html#fdatasync</a> + <a href="compile.html#minimum_file_descriptor">compile.html#minimum_file_descriptor</a> + <a href="fileformat2.html#lockbyte">fileformat2.html#lockbyte</a> + <a href="loadext.html#statext">loadext.html#statext</a> + <a href="loadext.html#write">loadext.html#write</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html">pragma.html</a> + <a href="pragma.html#pragma_synchronous">pragma.html#pragma_synchronous</a> + <a href="psow.html">psow.html</a> + <a href="psow.html#tornpage">psow.html#tornpage</a> + <a href="releaselog/3_25_0.html">releaselog/3_25_0.html</a> + <a href="releaselog/3_25_1.html">releaselog/3_25_1.html</a> + <a href="releaselog/3_25_2.html">releaselog/3_25_2.html</a> + <a href="releaselog/3_25_3.html">releaselog/3_25_3.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> + <a href="releaselog/3_43_0.html">releaselog/3_43_0.html</a> + <a href="releaselog/3_43_1.html">releaselog/3_43_1.html</a> + <a href="releaselog/3_43_2.html">releaselog/3_43_2.html</a> + <a href="releaselog/3_7_10.html">releaselog/3_7_10.html</a> + <a href="releaselog/3_7_11.html">releaselog/3_7_11.html</a> + <a href="releaselog/3_7_12.html">releaselog/3_7_12.html</a> + <a href="releaselog/3_7_14.html">releaselog/3_7_14.html</a> + <a href="releaselog/3_7_15.html">releaselog/3_7_15.html</a> + <a href="releaselog/3_7_17.html">releaselog/3_7_17.html</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> + <a href="releaselog/3_8_5.html">releaselog/3_8_5.html</a> + <a href="rescode.html#cantopen_convpath">rescode.html#cantopen_convpath</a> + <a href="rescode.html#ioerr_convpath">rescode.html#ioerr_convpath</a> + <a href="rescode.html#ioerr_dir_fsync">rescode.html#ioerr_dir_fsync</a> + <a href="rescode.html#ioerr_fstat">rescode.html#ioerr_fstat</a> + <a href="rescode.html#ioerr_fsync">rescode.html#ioerr_fsync</a> + <a href="rescode.html#ioerr_gettemppath">rescode.html#ioerr_gettemppath</a> + <a href="rescode.html#ioerr_nomem">rescode.html#ioerr_nomem</a> + <a href="rescode.html#ioerr_read">rescode.html#ioerr_read</a> + <a href="rescode.html#ioerr_short_read">rescode.html#ioerr_short_read</a> + <a href="rescode.html#ioerr_truncate">rescode.html#ioerr_truncate</a> + <a href="rescode.html#ioerr_write">rescode.html#ioerr_write</a> + <a href="rescode.html#notfound">rescode.html#notfound</a> + <a href="rescode.html#readonly_cantinit">rescode.html#readonly_cantinit</a> + <a href="selfcontained.html">selfcontained.html</a> + <a href="tclsqlite.html">tclsqlite.html</a> + <a href="tempfiles.html#shmfile">tempfiles.html#shmfile</a> + <a href="tempfiles.html#tempdir">tempfiles.html#tempdir</a> + <a href="testing.html#coverage">testing.html#coverage</a> + <a href="testing.html#crashtesting">testing.html#crashtesting</a> + <a href="uri.html">uri.html</a> + <a href="uri.html#coreqp">uri.html#coreqp</a> + <a href="uri.html#urivfs">uri.html#urivfs</a> + <a href="wal.html#advantages">wal.html#advantages</a> + <a href="wal.html#bigwal">wal.html#bigwal</a> + <a href="wal.html#fast">wal.html#fast</a> + <a href="walformat.html">walformat.html</a> +<li>VFS shim → <a href="c3ref/create_filename.html">c3ref/create_filename.html</a> + <a href="capi3ref.html#sqlite3_create_filename">capi3ref.html#sqlite3_create_filename</a> + <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="changes.html#version_3_32_0">changes.html#version_3_32_0</a> + <a href="cksumvfs.html">cksumvfs.html</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> + <a href="releaselog/3_32_0.html">releaselog/3_32_0.html</a> + <a href="releaselog/3_32_1.html">releaselog/3_32_1.html</a> + <a href="releaselog/3_32_2.html">releaselog/3_32_2.html</a> + <a href="releaselog/3_32_3.html">releaselog/3_32_3.html</a> + <a href="vtablist.html">vtablist.html</a> +<li>VFSes → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlvfsname">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlvfsname</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlvfspointer">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlvfspointer</a> + <a href="c3ref/open.html#coreuriqueryparameters">c3ref/open.html#coreuriqueryparameters</a> + <a href="capi3ref.html#coreuriqueryparameters">capi3ref.html#coreuriqueryparameters</a> + <a href="capi3ref.html#sqlitefcntlvfsname">capi3ref.html#sqlitefcntlvfsname</a> + <a href="capi3ref.html#sqlitefcntlvfspointer">capi3ref.html#sqlitefcntlvfspointer</a> + <a href="changes.html#version_3_11_0">changes.html#version_3_11_0</a> + <a href="changes.html#version_3_7_10">changes.html#version_3_7_10</a> + <a href="cintro.html">cintro.html</a> + <a href="cli.html#dotload">cli.html#dotload</a> + <a href="compile.html#powersafe_overwrite">compile.html#powersafe_overwrite</a> + <a href="loadext.html">loadext.html</a> + <a href="loadext.html#persist">loadext.html#persist</a> + <a href="oldnews.html">oldnews.html</a> + <a href="psow.html">psow.html</a> + <a href="psow.html#tornpage">psow.html#tornpage</a> + <a href="releaselog/3_11_0.html">releaselog/3_11_0.html</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> + <a href="releaselog/3_7_10.html">releaselog/3_7_10.html</a> + <a href="rescode.html#internal">rescode.html#internal</a> + <a href="rescode.html#ioerr_lock">rescode.html#ioerr_lock</a> + <a href="rescode.html#ok_load_permanently">rescode.html#ok_load_permanently</a> + <a href="uri.html#uripsow">uri.html#uripsow</a> + <a href="wal.html#noshm">wal.html#noshm</a> + <a href="walformat.html">walformat.html</a> +<li>view → <a href="changes.html#version_3_7_15">changes.html#version_3_7_15</a> + <a href="changes.html#version_3_8_7">changes.html#version_3_8_7</a> + <a href="lang_with.html#ordinarycte">lang_with.html#ordinarycte</a> + <a href="news.html">news.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="releaselog/3_7_15.html">releaselog/3_7_15.html</a> + <a href="releaselog/3_8_7.html">releaselog/3_8_7.html</a> +<li>VIEW → <a href="changes.html#version_3_9_0">changes.html#version_3_9_0</a> + <a href="datatype3.html#affcompoundview">datatype3.html#affcompoundview</a> + <a href="datatype3.html#affview">datatype3.html#affview</a> + <a href="datatype3.html#expraff">datatype3.html#expraff</a> + <a href="pragma.html#pragfunc">pragma.html#pragfunc</a> + <a href="releaselog/3_9_0.html">releaselog/3_9_0.html</a> + <a href="releaselog/3_9_1.html">releaselog/3_9_1.html</a> + <a href="releaselog/3_9_2.html">releaselog/3_9_2.html</a> + <a href="releaselog/3_9_3.html">releaselog/3_9_3.html</a> +<li>views → <a href="changes.html#version_3_12_1">changes.html#version_3_12_1</a> + <a href="changes.html#version_3_13_0">changes.html#version_3_13_0</a> + <a href="changes.html#version_3_17_0">changes.html#version_3_17_0</a> + <a href="changes.html#version_3_25_0">changes.html#version_3_25_0</a> + <a href="lang_with.html">lang_with.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> + <a href="releaselog/3_13_0.html">releaselog/3_13_0.html</a> + <a href="releaselog/3_17_0.html">releaselog/3_17_0.html</a> + <a href="releaselog/3_25_0.html">releaselog/3_25_0.html</a> + <a href="releaselog/3_25_1.html">releaselog/3_25_1.html</a> + <a href="releaselog/3_25_2.html">releaselog/3_25_2.html</a> + <a href="releaselog/3_25_3.html">releaselog/3_25_3.html</a> +<li>virtual machine → <a href="compile.html#enable_offset_sql_func">compile.html#enable_offset_sql_func</a> +<li>virtual machine instructions → <a href="c3ref/progress_handler.html">c3ref/progress_handler.html</a> + <a href="capi3ref.html#sqlite3_progress_handler">capi3ref.html#sqlite3_progress_handler</a> + <a href="lang_explain.html">lang_explain.html</a> + <a href="vdbe.html">vdbe.html</a> +<li>virtual table → <a href="c3ref/c_fail.html">c3ref/c_fail.html</a> + <a href="c3ref/c_index_constraint_eq.html">c3ref/c_index_constraint_eq.html</a> + <a href="c3ref/c_vtab_constraint_support.html">c3ref/c_vtab_constraint_support.html</a> + <a href="c3ref/c_vtab_constraint_support.html#sqlitevtabconstraintsupport">c3ref/c_vtab_constraint_support.html#sqlitevtabconstraintsupport</a> + <a href="c3ref/c_vtab_constraint_support.html#sqlitevtabdirectonly">c3ref/c_vtab_constraint_support.html#sqlitevtabdirectonly</a> + <a href="c3ref/c_vtab_constraint_support.html#sqlitevtabinnocuous">c3ref/c_vtab_constraint_support.html#sqlitevtabinnocuous</a> + <a href="c3ref/c_vtab_constraint_support.html#sqlitevtabusesallschemas">c3ref/c_vtab_constraint_support.html#sqlitevtabusesallschemas</a> + <a href="c3ref/create_module.html">c3ref/create_module.html</a> + <a href="c3ref/index_info.html">c3ref/index_info.html</a> + <a href="c3ref/last_insert_rowid.html">c3ref/last_insert_rowid.html</a> + <a href="c3ref/module.html">c3ref/module.html</a> + <a href="c3ref/overload_function.html">c3ref/overload_function.html</a> + <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> + <a href="c3ref/vtab.html">c3ref/vtab.html</a> + <a href="c3ref/vtab_collation.html">c3ref/vtab_collation.html</a> + <a href="c3ref/vtab_config.html">c3ref/vtab_config.html</a> + <a href="c3ref/vtab_cursor.html">c3ref/vtab_cursor.html</a> + <a href="c3ref/vtab_distinct.html">c3ref/vtab_distinct.html</a> + <a href="c3ref/vtab_in.html">c3ref/vtab_in.html</a> + <a href="c3ref/vtab_in_first.html">c3ref/vtab_in_first.html</a> + <a href="c3ref/vtab_nochange.html">c3ref/vtab_nochange.html</a> + <a href="c3ref/vtab_on_conflict.html">c3ref/vtab_on_conflict.html</a> + <a href="c3ref/vtab_rhs_value.html">c3ref/vtab_rhs_value.html</a> + <a href="capi3ref.html#SQLITE_FAIL">capi3ref.html#SQLITE_FAIL</a> + <a href="capi3ref.html#SQLITE_INDEX_CONSTRAINT_EQ">capi3ref.html#SQLITE_INDEX_CONSTRAINT_EQ</a> + <a href="capi3ref.html#SQLITE_VTAB_CONSTRAINT_SUPPORT">capi3ref.html#SQLITE_VTAB_CONSTRAINT_SUPPORT</a> + <a href="capi3ref.html#sqlite3_create_module">capi3ref.html#sqlite3_create_module</a> + <a href="capi3ref.html#sqlite3_index_info">capi3ref.html#sqlite3_index_info</a> + <a href="capi3ref.html#sqlite3_last_insert_rowid">capi3ref.html#sqlite3_last_insert_rowid</a> + <a href="capi3ref.html#sqlite3_module">capi3ref.html#sqlite3_module</a> + <a href="capi3ref.html#sqlite3_overload_function">capi3ref.html#sqlite3_overload_function</a> + <a href="capi3ref.html#sqlite3_value_blob">capi3ref.html#sqlite3_value_blob</a> + <a href="capi3ref.html#sqlite3_vtab">capi3ref.html#sqlite3_vtab</a> + <a href="capi3ref.html#sqlite3_vtab_collation">capi3ref.html#sqlite3_vtab_collation</a> + <a href="capi3ref.html#sqlite3_vtab_config">capi3ref.html#sqlite3_vtab_config</a> + <a href="capi3ref.html#sqlite3_vtab_cursor">capi3ref.html#sqlite3_vtab_cursor</a> + <a href="capi3ref.html#sqlite3_vtab_distinct">capi3ref.html#sqlite3_vtab_distinct</a> + <a href="capi3ref.html#sqlite3_vtab_in">capi3ref.html#sqlite3_vtab_in</a> + <a href="capi3ref.html#sqlite3_vtab_in_first">capi3ref.html#sqlite3_vtab_in_first</a> + <a href="capi3ref.html#sqlite3_vtab_nochange">capi3ref.html#sqlite3_vtab_nochange</a> + <a href="capi3ref.html#sqlite3_vtab_on_conflict">capi3ref.html#sqlite3_vtab_on_conflict</a> + <a href="capi3ref.html#sqlite3_vtab_rhs_value">capi3ref.html#sqlite3_vtab_rhs_value</a> + <a href="capi3ref.html#sqlitevtabconstraintsupport">capi3ref.html#sqlitevtabconstraintsupport</a> + <a href="capi3ref.html#sqlitevtabdirectonly">capi3ref.html#sqlitevtabdirectonly</a> + <a href="capi3ref.html#sqlitevtabinnocuous">capi3ref.html#sqlitevtabinnocuous</a> + <a href="capi3ref.html#sqlitevtabusesallschemas">capi3ref.html#sqlitevtabusesallschemas</a> + <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="changes.html#version_3_20_0">changes.html#version_3_20_0</a> + <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="changes.html#version_3_26_0">changes.html#version_3_26_0</a> + <a href="changes.html#version_3_35_2">changes.html#version_3_35_2</a> + <a href="changes.html#version_3_7_13">changes.html#version_3_7_13</a> + <a href="changes.html#version_3_7_9">changes.html#version_3_7_9</a> + <a href="changes.html#version_3_8_2">changes.html#version_3_8_2</a> + <a href="cintro.html">cintro.html</a> + <a href="cves.html#cvetab">cves.html#cvetab</a> + <a href="fullsql.html">fullsql.html</a> + <a href="lang_createvtab.html">lang_createvtab.html</a> + <a href="lang_select.html#tabfunc1">lang_select.html#tabfunc1</a> + <a href="loadext.html#write">loadext.html#write</a> + <a href="pragma.html#pragma_legacy_alter_table">pragma.html#pragma_legacy_alter_table</a> + <a href="pragma.html#pragma_module_list">pragma.html#pragma_module_list</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> + <a href="releaselog/3_20_0.html">releaselog/3_20_0.html</a> + <a href="releaselog/3_20_1.html">releaselog/3_20_1.html</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> + <a href="releaselog/3_26_0.html">releaselog/3_26_0.html</a> + <a href="releaselog/3_35_2.html">releaselog/3_35_2.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> + <a href="releaselog/3_7_13.html">releaselog/3_7_13.html</a> + <a href="releaselog/3_7_9.html">releaselog/3_7_9.html</a> + <a href="releaselog/3_8_2.html">releaselog/3_8_2.html</a> + <a href="rescode.html#constraint">rescode.html#constraint</a> + <a href="rescode.html#corrupt_vtab">rescode.html#corrupt_vtab</a> + <a href="rowidtable.html">rowidtable.html</a> + <a href="spellfix1.html">spellfix1.html</a> + <a href="sqldiff.html#sqldiff_vtab">sqldiff.html#sqldiff_vtab</a> + <a href="unionvtab.html">unionvtab.html</a> + <a href="vtab.html#tabfunc2">vtab.html#tabfunc2</a> + <a href="vtablist.html">vtablist.html</a> +<li>virtual table configuration option → <a href="c3ref/vtab_config.html">c3ref/vtab_config.html</a> + <a href="capi3ref.html#sqlite3_vtab_config">capi3ref.html#sqlite3_vtab_config</a> +<li>virtual table configuration options → <a href="c3ref/vtab_config.html">c3ref/vtab_config.html</a> + <a href="capi3ref.html#sqlite3_vtab_config">capi3ref.html#sqlite3_vtab_config</a> +<li>virtual table list → <a href="vtab.html#customvtab">vtab.html#customvtab</a> +<li>virtual table module → <a href="c3ref/create_module.html">c3ref/create_module.html</a> + <a href="c3ref/declare_vtab.html">c3ref/declare_vtab.html</a> + <a href="c3ref/index_info.html">c3ref/index_info.html</a> + <a href="c3ref/overload_function.html">c3ref/overload_function.html</a> + <a href="c3ref/vtab.html">c3ref/vtab.html</a> + <a href="c3ref/vtab_cursor.html">c3ref/vtab_cursor.html</a> + <a href="capi3ref.html#sqlite3_create_module">capi3ref.html#sqlite3_create_module</a> + <a href="capi3ref.html#sqlite3_declare_vtab">capi3ref.html#sqlite3_declare_vtab</a> + <a href="capi3ref.html#sqlite3_index_info">capi3ref.html#sqlite3_index_info</a> + <a href="capi3ref.html#sqlite3_overload_function">capi3ref.html#sqlite3_overload_function</a> + <a href="capi3ref.html#sqlite3_vtab">capi3ref.html#sqlite3_vtab</a> + <a href="capi3ref.html#sqlite3_vtab_cursor">capi3ref.html#sqlite3_vtab_cursor</a> + <a href="fts5.html">fts5.html</a> +<li>virtual tables → <a href="bytecodevtab.html">bytecodevtab.html</a> + <a href="c3ref/column_blob.html">c3ref/column_blob.html</a> + <a href="c3ref/preupdate_blobwrite.html">c3ref/preupdate_blobwrite.html</a> + <a href="c3ref/stmt_readonly.html">c3ref/stmt_readonly.html</a> + <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> + <a href="capi3ref.html#sqlite3_column_blob">capi3ref.html#sqlite3_column_blob</a> + <a href="capi3ref.html#sqlite3_preupdate_blobwrite">capi3ref.html#sqlite3_preupdate_blobwrite</a> + <a href="capi3ref.html#sqlite3_stmt_readonly">capi3ref.html#sqlite3_stmt_readonly</a> + <a href="capi3ref.html#sqlite3_value_blob">capi3ref.html#sqlite3_value_blob</a> + <a href="changes.html#version_3_10_0">changes.html#version_3_10_0</a> + <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="changes.html#version_3_12_2">changes.html#version_3_12_2</a> + <a href="changes.html#version_3_13_0">changes.html#version_3_13_0</a> + <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="changes.html#version_3_38_0">changes.html#version_3_38_0</a> + <a href="changes.html#version_3_38_1">changes.html#version_3_38_1</a> + <a href="changes.html#version_3_44_0">changes.html#version_3_44_0</a> + <a href="changes.html#version_3_6_14">changes.html#version_3_6_14</a> + <a href="changes.html#version_3_6_17">changes.html#version_3_6_17</a> + <a href="changes.html#version_3_7_7">changes.html#version_3_7_7</a> + <a href="cli.html#dotload">cli.html#dotload</a> + <a href="compile.html#trusted_schema">compile.html#trusted_schema</a> + <a href="fileformat2.html#btypes">fileformat2.html#btypes</a> + <a href="fileformat2.html#ffschema">fileformat2.html#ffschema</a> + <a href="fts3.html#simple_fts_queries">fts3.html#simple_fts_queries</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_upsert.html#parseambig">lang_upsert.html#parseambig</a> + <a href="loadext.html">loadext.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_secure_delete">pragma.html#pragma_secure_delete</a> + <a href="pragma.html#pragma_table_list">pragma.html#pragma_table_list</a> + <a href="releaselog/3_10_0.html">releaselog/3_10_0.html</a> + <a href="releaselog/3_10_1.html">releaselog/3_10_1.html</a> + <a href="releaselog/3_10_2.html">releaselog/3_10_2.html</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> + <a href="releaselog/3_13_0.html">releaselog/3_13_0.html</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="releaselog/3_38_0.html">releaselog/3_38_0.html</a> + <a href="releaselog/3_38_1.html">releaselog/3_38_1.html</a> + <a href="releaselog/3_38_2.html">releaselog/3_38_2.html</a> + <a href="releaselog/3_38_3.html">releaselog/3_38_3.html</a> + <a href="releaselog/3_38_4.html">releaselog/3_38_4.html</a> + <a href="releaselog/3_38_5.html">releaselog/3_38_5.html</a> + <a href="releaselog/3_44_0.html">releaselog/3_44_0.html</a> + <a href="releaselog/3_44_1.html">releaselog/3_44_1.html</a> + <a href="releaselog/3_44_2.html">releaselog/3_44_2.html</a> + <a href="releaselog/3_6_14.html">releaselog/3_6_14.html</a> + <a href="releaselog/3_6_17.html">releaselog/3_6_17.html</a> + <a href="releaselog/3_7_7.html">releaselog/3_7_7.html</a> + <a href="rescode.html#constraint_vtab">rescode.html#constraint_vtab</a> + <a href="rescode.html#corrupt_vtab">rescode.html#corrupt_vtab</a> + <a href="rescode.html#internal">rescode.html#internal</a> + <a href="schematab.html">schematab.html</a> + <a href="sessionintro.html">sessionintro.html</a> +<li>w → <a href="c3ref/mprintf.html">c3ref/mprintf.html</a> + <a href="capi3ref.html#sqlite3_mprintf">capi3ref.html#sqlite3_mprintf</a> + <a href="printf.html">printf.html</a> +<li>WAL → <a href="atomiccommit.html">atomiccommit.html</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpersistwal">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpersistwal</a> + <a href="capi3ref.html#sqlitefcntlpersistwal">capi3ref.html#sqlitefcntlpersistwal</a> + <a href="changes.html#version_3_7_0">changes.html#version_3_7_0</a> + <a href="changes.html#version_3_7_3">changes.html#version_3_7_3</a> + <a href="changes.html#version_3_7_4">changes.html#version_3_7_4</a> + <a href="changes.html#version_3_7_7">changes.html#version_3_7_7</a> + <a href="compile.html#default_wal_autocheckpoint">compile.html#default_wal_autocheckpoint</a> + <a href="compile.html#omit_wal">compile.html#omit_wal</a> + <a href="fileformat2.html#database_header">fileformat2.html#database_header</a> + <a href="fileformat2.html#vnums">fileformat2.html#vnums</a> + <a href="fileformat2.html#walformat">fileformat2.html#walformat</a> + <a href="howtocorrupt.html#cfgerr">howtocorrupt.html#cfgerr</a> + <a href="howtocorrupt.html#fakeusb">howtocorrupt.html#fakeusb</a> + <a href="howtocorrupt.html#fork">howtocorrupt.html#fork</a> + <a href="howtocorrupt.html#roguejrnl">howtocorrupt.html#roguejrnl</a> + <a href="lang_attach.html">lang_attach.html</a> + <a href="lockingv3.html#rollback">lockingv3.html#rollback</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_locking_mode">pragma.html#pragma_locking_mode</a> + <a href="pragma.html#pragma_synchronous">pragma.html#pragma_synchronous</a> + <a href="releaselog/3_7_0.html">releaselog/3_7_0.html</a> + <a href="releaselog/3_7_3.html">releaselog/3_7_3.html</a> + <a href="releaselog/3_7_4.html">releaselog/3_7_4.html</a> + <a href="releaselog/3_7_7.html">releaselog/3_7_7.html</a> +<li>WAL file → <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpersistwal">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpersistwal</a> + <a href="c3ref/snapshot_recover.html">c3ref/snapshot_recover.html</a> + <a href="capi3ref.html#sqlite3_snapshot_recover">capi3ref.html#sqlite3_snapshot_recover</a> + <a href="capi3ref.html#sqlitefcntlpersistwal">capi3ref.html#sqlitefcntlpersistwal</a> + <a href="fileformat2.html#walformat">fileformat2.html#walformat</a> +<li>WAL file format → <a href="wal.html#walfile">wal.html#walfile</a> +<li>WAL format → <a href="walformat.html">walformat.html</a> +<li>WAL mode → <a href="arch.html">arch.html</a> + <a href="asyncvfs.html">asyncvfs.html</a> + <a href="c3ref/deserialize.html">c3ref/deserialize.html</a> + <a href="c3ref/snapshot.html">c3ref/snapshot.html</a> + <a href="c3ref/snapshot_get.html">c3ref/snapshot_get.html</a> + <a href="c3ref/snapshot_open.html">c3ref/snapshot_open.html</a> + <a href="c3ref/wal_checkpoint_v2.html">c3ref/wal_checkpoint_v2.html</a> + <a href="capi3ref.html#sqlite3_deserialize">capi3ref.html#sqlite3_deserialize</a> + <a href="capi3ref.html#sqlite3_snapshot">capi3ref.html#sqlite3_snapshot</a> + <a href="capi3ref.html#sqlite3_snapshot_get">capi3ref.html#sqlite3_snapshot_get</a> + <a href="capi3ref.html#sqlite3_snapshot_open">capi3ref.html#sqlite3_snapshot_open</a> + <a href="capi3ref.html#sqlite3_wal_checkpoint_v2">capi3ref.html#sqlite3_wal_checkpoint_v2</a> + <a href="changes.html#version_3_11_0">changes.html#version_3_11_0</a> + <a href="changes.html#version_3_17_0">changes.html#version_3_17_0</a> + <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="changes.html#version_3_33_0">changes.html#version_3_33_0</a> + <a href="changes.html#version_3_34_0">changes.html#version_3_34_0</a> + <a href="changes.html#version_3_43_0">changes.html#version_3_43_0</a> + <a href="changes.html#version_3_7_14">changes.html#version_3_7_14</a> + <a href="changes.html#version_3_7_6_3">changes.html#version_3_7_6_3</a> + <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="compile.html#default_journal_size_limit">compile.html#default_journal_size_limit</a> + <a href="compile.html#default_wal_synchronous">compile.html#default_wal_synchronous</a> + <a href="compile.html#rcmd">compile.html#rcmd</a> + <a href="compile.html#use_seh">compile.html#use_seh</a> + <a href="fasterthanfs.html">fasterthanfs.html</a> + <a href="fileformat2.html">fileformat2.html</a> + <a href="formatchng.html">formatchng.html</a> + <a href="howtocorrupt.html#fakeusb">howtocorrupt.html#fakeusb</a> + <a href="isolation.html">isolation.html</a> + <a href="lang_transaction.html#immediate">lang_transaction.html#immediate</a> + <a href="lockingv3.html">lockingv3.html</a> + <a href="news.html">news.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_journal_size_limit">pragma.html#pragma_journal_size_limit</a> + <a href="pragma.html#pragma_page_size">pragma.html#pragma_page_size</a> + <a href="pragma.html#pragma_synchronous">pragma.html#pragma_synchronous</a> + <a href="pragma.html#pragma_wal_checkpoint">pragma.html#pragma_wal_checkpoint</a> + <a href="psow.html">psow.html</a> + <a href="rbu.html#rbu_updates">rbu.html#rbu_updates</a> + <a href="rbu.html#rbu_vacuum">rbu.html#rbu_vacuum</a> + <a href="releaselog/3_11_0.html">releaselog/3_11_0.html</a> + <a href="releaselog/3_11_1.html">releaselog/3_11_1.html</a> + <a href="releaselog/3_17_0.html">releaselog/3_17_0.html</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> + <a href="releaselog/3_33_0.html">releaselog/3_33_0.html</a> + <a href="releaselog/3_34_0.html">releaselog/3_34_0.html</a> + <a href="releaselog/3_34_1.html">releaselog/3_34_1.html</a> + <a href="releaselog/3_43_0.html">releaselog/3_43_0.html</a> + <a href="releaselog/3_43_1.html">releaselog/3_43_1.html</a> + <a href="releaselog/3_43_2.html">releaselog/3_43_2.html</a> + <a href="releaselog/3_7_14.html">releaselog/3_7_14.html</a> + <a href="releaselog/3_7_6_3.html">releaselog/3_7_6_3.html</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> + <a href="rescode.html#busy_recovery">rescode.html#busy_recovery</a> + <a href="rescode.html#busy_snapshot">rescode.html#busy_snapshot</a> + <a href="rescode.html#ioerr_shmsize">rescode.html#ioerr_shmsize</a> + <a href="rescode.html#notice_recover_wal">rescode.html#notice_recover_wal</a> + <a href="rescode.html#protocol">rescode.html#protocol</a> + <a href="rescode.html#readonly_cantinit">rescode.html#readonly_cantinit</a> + <a href="rescode.html#readonly_cantlock">rescode.html#readonly_cantlock</a> + <a href="rescode.html#readonly_recovery">rescode.html#readonly_recovery</a> + <a href="sharedcache.html#dontuse">sharedcache.html#dontuse</a> + <a href="tclsqlite.html#wal_hook">tclsqlite.html#wal_hook</a> + <a href="tempfiles.html#shmfile">tempfiles.html#shmfile</a> + <a href="tempfiles.html#superjrnl">tempfiles.html#superjrnl</a> + <a href="tempfiles.html#walfile">tempfiles.html#walfile</a> + <a href="useovernet.html">useovernet.html</a> + <a href="versionnumbers.html">versionnumbers.html</a> + <a href="walformat.html">walformat.html</a> +<li>WAL read algorithm → <a href="fileformat2.html#walindexformat">fileformat2.html#walindexformat</a> +<li>WAL reset → <a href="walformat.html#locks">walformat.html#locks</a> + <a href="walformat.html#nbackfill">walformat.html#nbackfill</a> +<li>WAL without shared memory → <a href="howtocorrupt.html#fakeusb">howtocorrupt.html#fakeusb</a> + <a href="pragma.html#pragma_locking_mode">pragma.html#pragma_locking_mode</a> + <a href="wal.html#advantages">wal.html#advantages</a> +<li>wal-index → <a href="vfs.html">vfs.html</a> + <a href="wal.html#advantages">wal.html#advantages</a> + <a href="wal.html#bigwal">wal.html#bigwal</a> + <a href="wal.html#bkwrds">wal.html#bkwrds</a> +<li>WAL-index File Format → <a href="fileformat2.html#walindexformat">fileformat2.html#walindexformat</a> +<li>WAL-mode locks → <a href="walformat.html#locks">walformat.html#locks</a> +<li>wal_autocheckpoint pragma → <a href="c3ref/wal_autocheckpoint.html">c3ref/wal_autocheckpoint.html</a> + <a href="c3ref/wal_hook.html">c3ref/wal_hook.html</a> + <a href="capi3ref.html#sqlite3_wal_autocheckpoint">capi3ref.html#sqlite3_wal_autocheckpoint</a> + <a href="capi3ref.html#sqlite3_wal_hook">capi3ref.html#sqlite3_wal_hook</a> + <a href="wal.html#fast">wal.html#fast</a> +<li>wal_checkpoint pragma → <a href="changes.html#version_3_7_6">changes.html#version_3_7_6</a> + <a href="releaselog/3_7_6.html">releaselog/3_7_6.html</a> + <a href="wal.html#fast">wal.html#fast</a> +<li>WHERE clause → <a href="lang_select.html#simpleselect">lang_select.html#simpleselect</a> +<li>window chaining → <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> +<li>window function → <a href="appfunc.html">appfunc.html</a> + <a href="changes.html#version_3_27_2">changes.html#version_3_27_2</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> +<li>Window functions → <a href="appfunc.html">appfunc.html</a> +<li>window functions → <a href="appfunc.html">appfunc.html</a> + <a href="changes.html#version_3_25_0">changes.html#version_3_25_0</a> + <a href="changes.html#version_3_25_2">changes.html#version_3_25_2</a> + <a href="changes.html#version_3_25_3">changes.html#version_3_25_3</a> + <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="changes.html#version_3_28_0">changes.html#version_3_28_0</a> + <a href="compile.html#omit_windowfunc">compile.html#omit_windowfunc</a> + <a href="features.html">features.html</a> + <a href="fullsql.html">fullsql.html</a> + <a href="lang_aggfunc.html#aggorderby">lang_aggfunc.html#aggorderby</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="lang_expr.html#*funcinexpr">lang_expr.html#*funcinexpr</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_with.html#recursivecte">lang_with.html#recursivecte</a> + <a href="news.html">news.html</a> + <a href="releaselog/3_25_0.html">releaselog/3_25_0.html</a> + <a href="releaselog/3_25_1.html">releaselog/3_25_1.html</a> + <a href="releaselog/3_25_2.html">releaselog/3_25_2.html</a> + <a href="releaselog/3_25_3.html">releaselog/3_25_3.html</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> + <a href="releaselog/3_28_0.html">releaselog/3_28_0.html</a> +<li>window-defn → <a href="lang_aggfunc.html">lang_aggfunc.html</a> + <a href="lang_altertable.html">lang_altertable.html</a> + <a href="lang_attach.html">lang_attach.html</a> + <a href="lang_createindex.html">lang_createindex.html</a> + <a href="lang_createtable.html">lang_createtable.html</a> + <a href="lang_createtrigger.html">lang_createtrigger.html</a> + <a href="lang_createview.html">lang_createview.html</a> + <a href="lang_delete.html">lang_delete.html</a> + <a href="lang_expr.html">lang_expr.html</a> + <a href="lang_insert.html">lang_insert.html</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_select.html">lang_select.html</a> + <a href="lang_select.html#compound">lang_select.html#compound</a> + <a href="lang_select.html#simpleselect">lang_select.html#simpleselect</a> + <a href="lang_update.html">lang_update.html</a> + <a href="lang_upsert.html">lang_upsert.html</a> + <a href="lang_with.html">lang_with.html</a> + <a href="partialindex.html">partialindex.html</a> + <a href="windowfunctions.html">windowfunctions.html</a> + <a href="windowfunctions.html#framespec">windowfunctions.html#framespec</a> + <a href="windowfunctions.html#wexcls">windowfunctions.html#wexcls</a> +<li>window-function-invocation → <a href="lang_expr.html#*funcinexpr">lang_expr.html#*funcinexpr</a> + <a href="windowfunctions.html">windowfunctions.html</a> +<li>WITH → <a href="fullsql.html">fullsql.html</a> + <a href="lang_select.html">lang_select.html</a> +<li>WITH clause → <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="changes.html#version_3_8_3">changes.html#version_3_8_3</a> + <a href="lang.html">lang.html</a> + <a href="lang_select.html#values">lang_select.html#values</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> + <a href="releaselog/3_8_3.html">releaselog/3_8_3.html</a> +<li>with-clause → <a href="lang_with.html">lang_with.html</a> +<li>WITHOUT ROWID → <a href="autoinc.html">autoinc.html</a> + <a href="c3ref/last_insert_rowid.html">c3ref/last_insert_rowid.html</a> + <a href="c3ref/table_column_metadata.html">c3ref/table_column_metadata.html</a> + <a href="c3ref/update_hook.html">c3ref/update_hook.html</a> + <a href="capi3ref.html#sqlite3_last_insert_rowid">capi3ref.html#sqlite3_last_insert_rowid</a> + <a href="capi3ref.html#sqlite3_table_column_metadata">capi3ref.html#sqlite3_table_column_metadata</a> + <a href="capi3ref.html#sqlite3_update_hook">capi3ref.html#sqlite3_update_hook</a> + <a href="changes.html#version_3_16_2">changes.html#version_3_16_2</a> + <a href="changes.html#version_3_17_0">changes.html#version_3_17_0</a> + <a href="changes.html#version_3_19_0">changes.html#version_3_19_0</a> + <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="changes.html#version_3_30_0">changes.html#version_3_30_0</a> + <a href="changes.html#version_3_40_0">changes.html#version_3_40_0</a> + <a href="changes.html#version_3_8_11">changes.html#version_3_8_11</a> + <a href="changes.html#version_3_8_11_1">changes.html#version_3_8_11_1</a> + <a href="changes.html#version_3_8_2">changes.html#version_3_8_2</a> + <a href="changes.html#version_3_8_5">changes.html#version_3_8_5</a> + <a href="changes.html#version_3_8_6">changes.html#version_3_8_6</a> + <a href="changes.html#version_3_8_8">changes.html#version_3_8_8</a> + <a href="fileformat2.html##sqltab">fileformat2.html##sqltab</a> + <a href="fileformat2.html#btypes">fileformat2.html#btypes</a> + <a href="fileformat2.html#ffschema">fileformat2.html#ffschema</a> + <a href="fileformat2.html#stat1tab">fileformat2.html#stat1tab</a> + <a href="fileformat2.html#stat4tab">fileformat2.html#stat4tab</a> + <a href="imposter.html">imposter.html</a> + <a href="lang_createtable.html">lang_createtable.html</a> + <a href="lang_createtable.html#primkeyconst">lang_createtable.html#primkeyconst</a> + <a href="lang_createtable.html#rowid">lang_createtable.html#rowid</a> + <a href="lang_createtable.html#uniqueconst">lang_createtable.html#uniqueconst</a> + <a href="lang_expr.html#in_op">lang_expr.html#in_op</a> + <a href="news.html">news.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="optoverview.html#or_opt">optoverview.html#or_opt</a> + <a href="pragma.html#pragma_foreign_key_check">pragma.html#pragma_foreign_key_check</a> + <a href="pragma.html#pragma_index_info">pragma.html#pragma_index_info</a> + <a href="pragma.html#pragma_index_xinfo">pragma.html#pragma_index_xinfo</a> + <a href="pragma.html#pragma_table_list">pragma.html#pragma_table_list</a> + <a href="queryplanner.html#partialsort">queryplanner.html#partialsort</a> + <a href="queryplanner.html#searching">queryplanner.html#searching</a> + <a href="quirks.html">quirks.html</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> + <a href="releaselog/3_17_0.html">releaselog/3_17_0.html</a> + <a href="releaselog/3_19_0.html">releaselog/3_19_0.html</a> + <a href="releaselog/3_19_1.html">releaselog/3_19_1.html</a> + <a href="releaselog/3_19_2.html">releaselog/3_19_2.html</a> + <a href="releaselog/3_19_3.html">releaselog/3_19_3.html</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> + <a href="releaselog/3_30_0.html">releaselog/3_30_0.html</a> + <a href="releaselog/3_30_1.html">releaselog/3_30_1.html</a> + <a href="releaselog/3_40_0.html">releaselog/3_40_0.html</a> + <a href="releaselog/3_40_1.html">releaselog/3_40_1.html</a> + <a href="releaselog/3_8_11.html">releaselog/3_8_11.html</a> + <a href="releaselog/3_8_11_1.html">releaselog/3_8_11_1.html</a> + <a href="releaselog/3_8_2.html">releaselog/3_8_2.html</a> + <a href="releaselog/3_8_5.html">releaselog/3_8_5.html</a> + <a href="releaselog/3_8_6.html">releaselog/3_8_6.html</a> + <a href="releaselog/3_8_8.html">releaselog/3_8_8.html</a> + <a href="releaselog/3_8_8_1.html">releaselog/3_8_8_1.html</a> + <a href="releaselog/3_8_8_2.html">releaselog/3_8_8_2.html</a> + <a href="releaselog/3_8_8_3.html">releaselog/3_8_8_3.html</a> + <a href="rowidtable.html">rowidtable.html</a> + <a href="schematab.html">schematab.html</a> + <a href="sessionintro.html">sessionintro.html</a> + <a href="sqldiff.html">sqldiff.html</a> + <a href="stricttables.html">stricttables.html</a> + <a href="vtab.html#worid">vtab.html#worid</a> +<li>WITHOUT ROWID virtual table → <a href="vtab.html#xupdate">vtab.html#xupdate</a> +<li>WITHOUT ROWID virtual tables → <a href="changes.html#version_3_14">changes.html#version_3_14</a> + <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="releaselog/3_14.html">releaselog/3_14.html</a> + <a href="releaselog/3_14_1.html">releaselog/3_14_1.html</a> + <a href="releaselog/3_14_2.html">releaselog/3_14_2.html</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> +<li>writable_schema → <a href="changes.html#version_3_30_0">changes.html#version_3_30_0</a> + <a href="releaselog/3_30_0.html">releaselog/3_30_0.html</a> + <a href="releaselog/3_30_1.html">releaselog/3_30_1.html</a> +<li>write-ahead log → <a href="atomiccommit.html">atomiccommit.html</a> + <a href="c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntljournalpointer">c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntljournalpointer</a> + <a href="c3ref/wal_autocheckpoint.html">c3ref/wal_autocheckpoint.html</a> + <a href="c3ref/wal_checkpoint.html">c3ref/wal_checkpoint.html</a> + <a href="capi3ref.html#sqlite3_wal_autocheckpoint">capi3ref.html#sqlite3_wal_autocheckpoint</a> + <a href="capi3ref.html#sqlite3_wal_checkpoint">capi3ref.html#sqlite3_wal_checkpoint</a> + <a href="capi3ref.html#sqlitefcntljournalpointer">capi3ref.html#sqlitefcntljournalpointer</a> + <a href="compile.html#omit_wal">compile.html#omit_wal</a> + <a href="errlog.html">errlog.html</a> + <a href="howtocorrupt.html#roguejrnl">howtocorrupt.html#roguejrnl</a> + <a href="lang_returning.html">lang_returning.html</a> + <a href="lang_vacuum.html">lang_vacuum.html</a> + <a href="lang_vacuum.html#howvacuumworks">lang_vacuum.html#howvacuumworks</a> + <a href="lockingv3.html">lockingv3.html</a> + <a href="oldnews.html">oldnews.html</a> + <a href="pragma.html#pragma_journal_mode">pragma.html#pragma_journal_mode</a> + <a href="pragma.html#pragma_wal_autocheckpoint">pragma.html#pragma_wal_autocheckpoint</a> + <a href="pragma.html#pragma_wal_checkpoint">pragma.html#pragma_wal_checkpoint</a> + <a href="shortnames.html">shortnames.html</a> + <a href="shortnames.html#db83corrupt">shortnames.html#db83corrupt</a> +<li>xBegin → <a href="vtab.html#xcommit">vtab.html#xcommit</a> + <a href="vtab.html#xrollback">vtab.html#xrollback</a> + <a href="vtab.html#xsync">vtab.html#xsync</a> +<li>xBestIndex → <a href="c3ref/index_info.html">c3ref/index_info.html</a> + <a href="c3ref/vtab_collation.html">c3ref/vtab_collation.html</a> + <a href="c3ref/vtab_distinct.html">c3ref/vtab_distinct.html</a> + <a href="c3ref/vtab_in.html">c3ref/vtab_in.html</a> + <a href="c3ref/vtab_in_first.html">c3ref/vtab_in_first.html</a> + <a href="c3ref/vtab_rhs_value.html">c3ref/vtab_rhs_value.html</a> + <a href="capi3ref.html#sqlite3_index_info">capi3ref.html#sqlite3_index_info</a> + <a href="capi3ref.html#sqlite3_vtab_collation">capi3ref.html#sqlite3_vtab_collation</a> + <a href="capi3ref.html#sqlite3_vtab_distinct">capi3ref.html#sqlite3_vtab_distinct</a> + <a href="capi3ref.html#sqlite3_vtab_in">capi3ref.html#sqlite3_vtab_in</a> + <a href="capi3ref.html#sqlite3_vtab_in_first">capi3ref.html#sqlite3_vtab_in_first</a> + <a href="capi3ref.html#sqlite3_vtab_rhs_value">capi3ref.html#sqlite3_vtab_rhs_value</a> + <a href="changes.html#version_3_12_0">changes.html#version_3_12_0</a> + <a href="changes.html#version_3_21_0">changes.html#version_3_21_0</a> + <a href="changes.html#version_3_26_0">changes.html#version_3_26_0</a> + <a href="changes.html#version_3_35_3">changes.html#version_3_35_3</a> + <a href="releaselog/3_12_0.html">releaselog/3_12_0.html</a> + <a href="releaselog/3_12_1.html">releaselog/3_12_1.html</a> + <a href="releaselog/3_12_2.html">releaselog/3_12_2.html</a> + <a href="releaselog/3_21_0.html">releaselog/3_21_0.html</a> + <a href="releaselog/3_26_0.html">releaselog/3_26_0.html</a> + <a href="releaselog/3_35_3.html">releaselog/3_35_3.html</a> + <a href="releaselog/3_35_4.html">releaselog/3_35_4.html</a> + <a href="releaselog/3_35_5.html">releaselog/3_35_5.html</a> + <a href="rescode.html#constraint">rescode.html#constraint</a> + <a href="rescode.html#notfound">rescode.html#notfound</a> + <a href="vtab.html#xfilter">vtab.html#xfilter</a> + <a href="vtab.html#xfindfunction">vtab.html#xfindfunction</a> +<li>xColumn → <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> + <a href="c3ref/vtab_cursor.html">c3ref/vtab_cursor.html</a> + <a href="c3ref/vtab_nochange.html">c3ref/vtab_nochange.html</a> + <a href="capi3ref.html#sqlite3_value_blob">capi3ref.html#sqlite3_value_blob</a> + <a href="capi3ref.html#sqlite3_vtab_cursor">capi3ref.html#sqlite3_vtab_cursor</a> + <a href="capi3ref.html#sqlite3_vtab_nochange">capi3ref.html#sqlite3_vtab_nochange</a> + <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> + <a href="vtab.html#xfilter">vtab.html#xfilter</a> + <a href="vtab.html#xupdate">vtab.html#xupdate</a> +<li>xCommit → <a href="vtab.html#xBegin">vtab.html#xBegin</a> + <a href="vtab.html#xsync">vtab.html#xsync</a> +<li>xConnect → <a href="c3ref/c_vtab_constraint_support.html#sqlitevtabconstraintsupport">c3ref/c_vtab_constraint_support.html#sqlitevtabconstraintsupport</a> + <a href="c3ref/c_vtab_constraint_support.html#sqlitevtabdirectonly">c3ref/c_vtab_constraint_support.html#sqlitevtabdirectonly</a> + <a href="c3ref/c_vtab_constraint_support.html#sqlitevtabinnocuous">c3ref/c_vtab_constraint_support.html#sqlitevtabinnocuous</a> + <a href="c3ref/c_vtab_constraint_support.html#sqlitevtabusesallschemas">c3ref/c_vtab_constraint_support.html#sqlitevtabusesallschemas</a> + <a href="c3ref/create_module.html">c3ref/create_module.html</a> + <a href="c3ref/declare_vtab.html">c3ref/declare_vtab.html</a> + <a href="c3ref/vtab_config.html">c3ref/vtab_config.html</a> + <a href="capi3ref.html#sqlite3_create_module">capi3ref.html#sqlite3_create_module</a> + <a href="capi3ref.html#sqlite3_declare_vtab">capi3ref.html#sqlite3_declare_vtab</a> + <a href="capi3ref.html#sqlite3_vtab_config">capi3ref.html#sqlite3_vtab_config</a> + <a href="capi3ref.html#sqlitevtabconstraintsupport">capi3ref.html#sqlitevtabconstraintsupport</a> + <a href="capi3ref.html#sqlitevtabdirectonly">capi3ref.html#sqlitevtabdirectonly</a> + <a href="capi3ref.html#sqlitevtabinnocuous">capi3ref.html#sqlitevtabinnocuous</a> + <a href="capi3ref.html#sqlitevtabusesallschemas">capi3ref.html#sqlitevtabusesallschemas</a> + <a href="changes.html#version_3_31_0">changes.html#version_3_31_0</a> + <a href="lang_createvtab.html">lang_createvtab.html</a> + <a href="releaselog/3_31_0.html">releaselog/3_31_0.html</a> + <a href="releaselog/3_31_1.html">releaselog/3_31_1.html</a> + <a href="vtab.html#epovtab">vtab.html#epovtab</a> + <a href="vtab.html#xbestindex">vtab.html#xbestindex</a> + <a href="vtab.html#xcreate">vtab.html#xcreate</a> + <a href="vtab.html#xdisconnect">vtab.html#xdisconnect</a> + <a href="vtab.html#xupdate">vtab.html#xupdate</a> +<li>xCreate → <a href="c3ref/c_vtab_constraint_support.html#sqlitevtabconstraintsupport">c3ref/c_vtab_constraint_support.html#sqlitevtabconstraintsupport</a> + <a href="c3ref/c_vtab_constraint_support.html#sqlitevtabdirectonly">c3ref/c_vtab_constraint_support.html#sqlitevtabdirectonly</a> + <a href="c3ref/c_vtab_constraint_support.html#sqlitevtabinnocuous">c3ref/c_vtab_constraint_support.html#sqlitevtabinnocuous</a> + <a href="c3ref/c_vtab_constraint_support.html#sqlitevtabusesallschemas">c3ref/c_vtab_constraint_support.html#sqlitevtabusesallschemas</a> + <a href="c3ref/create_module.html">c3ref/create_module.html</a> + <a href="c3ref/declare_vtab.html">c3ref/declare_vtab.html</a> + <a href="c3ref/vtab_config.html">c3ref/vtab_config.html</a> + <a href="capi3ref.html#sqlite3_create_module">capi3ref.html#sqlite3_create_module</a> + <a href="capi3ref.html#sqlite3_declare_vtab">capi3ref.html#sqlite3_declare_vtab</a> + <a href="capi3ref.html#sqlite3_vtab_config">capi3ref.html#sqlite3_vtab_config</a> + <a href="capi3ref.html#sqlitevtabconstraintsupport">capi3ref.html#sqlitevtabconstraintsupport</a> + <a href="capi3ref.html#sqlitevtabdirectonly">capi3ref.html#sqlitevtabdirectonly</a> + <a href="capi3ref.html#sqlitevtabinnocuous">capi3ref.html#sqlitevtabinnocuous</a> + <a href="capi3ref.html#sqlitevtabusesallschemas">capi3ref.html#sqlitevtabusesallschemas</a> + <a href="lang_createvtab.html">lang_createvtab.html</a> + <a href="vtab.html">vtab.html</a> + <a href="vtab.html#epoonlyvtab">vtab.html#epoonlyvtab</a> + <a href="vtab.html#epovtab">vtab.html#epovtab</a> + <a href="vtab.html#sqlite3_module.xDestroy">vtab.html#sqlite3_module.xDestroy</a> + <a href="vtab.html#xbestindex">vtab.html#xbestindex</a> + <a href="vtab.html#xconnect">vtab.html#xconnect</a> + <a href="vtab.html#xupdate">vtab.html#xupdate</a> +<li>xDestroy → <a href="vtab.html#xdisconnect">vtab.html#xdisconnect</a> +<li>xDisconnect → <a href="vtab.html#sqlite3_module.xDestroy">vtab.html#sqlite3_module.xDestroy</a> +<li>xEof → <a href="c3ref/vtab_cursor.html">c3ref/vtab_cursor.html</a> + <a href="capi3ref.html#sqlite3_vtab_cursor">capi3ref.html#sqlite3_vtab_cursor</a> + <a href="vtab.html#xfilter">vtab.html#xfilter</a> + <a href="vtab.html#xnext">vtab.html#xnext</a> +<li>xFilter → <a href="c3ref/index_info.html">c3ref/index_info.html</a> + <a href="c3ref/vtab_cursor.html">c3ref/vtab_cursor.html</a> + <a href="c3ref/vtab_in.html">c3ref/vtab_in.html</a> + <a href="c3ref/vtab_in_first.html">c3ref/vtab_in_first.html</a> + <a href="capi3ref.html#sqlite3_index_info">capi3ref.html#sqlite3_index_info</a> + <a href="capi3ref.html#sqlite3_vtab_cursor">capi3ref.html#sqlite3_vtab_cursor</a> + <a href="capi3ref.html#sqlite3_vtab_in">capi3ref.html#sqlite3_vtab_in</a> + <a href="capi3ref.html#sqlite3_vtab_in_first">capi3ref.html#sqlite3_vtab_in_first</a> + <a href="vtab.html#colUsed">vtab.html#colUsed</a> + <a href="vtab.html#xbestindex">vtab.html#xbestindex</a> + <a href="vtab.html#xeof">vtab.html#xeof</a> + <a href="vtab.html#xfindfunction">vtab.html#xfindfunction</a> + <a href="vtab.html#xnext">vtab.html#xnext</a> + <a href="vtab.html#xopen">vtab.html#xopen</a> +<li>xFindFunction → <a href="c3ref/c_index_constraint_eq.html">c3ref/c_index_constraint_eq.html</a> + <a href="c3ref/overload_function.html">c3ref/overload_function.html</a> + <a href="capi3ref.html#SQLITE_INDEX_CONSTRAINT_EQ">capi3ref.html#SQLITE_INDEX_CONSTRAINT_EQ</a> + <a href="capi3ref.html#sqlite3_overload_function">capi3ref.html#sqlite3_overload_function</a> + <a href="vtab.html#colUsed">vtab.html#colUsed</a> + <a href="vtab.html#xbestindex">vtab.html#xbestindex</a> +<li>xIntegrity method → <a href="changes.html#version_3_44_0">changes.html#version_3_44_0</a> + <a href="releaselog/3_44_0.html">releaselog/3_44_0.html</a> + <a href="releaselog/3_44_1.html">releaselog/3_44_1.html</a> + <a href="releaselog/3_44_2.html">releaselog/3_44_2.html</a> +<li>xNext → <a href="c3ref/index_info.html">c3ref/index_info.html</a> + <a href="c3ref/vtab_cursor.html">c3ref/vtab_cursor.html</a> + <a href="capi3ref.html#sqlite3_index_info">capi3ref.html#sqlite3_index_info</a> + <a href="capi3ref.html#sqlite3_vtab_cursor">capi3ref.html#sqlite3_vtab_cursor</a> + <a href="vtab.html#xeof">vtab.html#xeof</a> + <a href="vtab.html#xfilter">vtab.html#xfilter</a> +<li>xRelease → <a href="changes.html#version_3_7_7">changes.html#version_3_7_7</a> + <a href="releaselog/3_7_7.html">releaselog/3_7_7.html</a> +<li>xRollback → <a href="vtab.html#xBegin">vtab.html#xBegin</a> + <a href="vtab.html#xsync">vtab.html#xsync</a> +<li>xRollbackTo → <a href="changes.html#version_3_7_7">changes.html#version_3_7_7</a> + <a href="releaselog/3_7_7.html">releaselog/3_7_7.html</a> +<li>xRowid → <a href="c3ref/vtab_cursor.html">c3ref/vtab_cursor.html</a> + <a href="capi3ref.html#sqlite3_vtab_cursor">capi3ref.html#sqlite3_vtab_cursor</a> + <a href="vtab.html#xfilter">vtab.html#xfilter</a> +<li>xSavepoint → <a href="changes.html#version_3_7_7">changes.html#version_3_7_7</a> + <a href="releaselog/3_7_7.html">releaselog/3_7_7.html</a> +<li>xUpdate → <a href="c3ref/c_vtab_constraint_support.html#sqlitevtabconstraintsupport">c3ref/c_vtab_constraint_support.html#sqlitevtabconstraintsupport</a> + <a href="c3ref/value_blob.html">c3ref/value_blob.html</a> + <a href="c3ref/vtab_nochange.html">c3ref/vtab_nochange.html</a> + <a href="c3ref/vtab_on_conflict.html">c3ref/vtab_on_conflict.html</a> + <a href="capi3ref.html#sqlite3_value_blob">capi3ref.html#sqlite3_value_blob</a> + <a href="capi3ref.html#sqlite3_vtab_nochange">capi3ref.html#sqlite3_vtab_nochange</a> + <a href="capi3ref.html#sqlite3_vtab_on_conflict">capi3ref.html#sqlite3_vtab_on_conflict</a> + <a href="capi3ref.html#sqlitevtabconstraintsupport">capi3ref.html#sqlitevtabconstraintsupport</a> + <a href="vtab.html#worid">vtab.html#worid</a> +<li>YYSTACKDEPTH → <a href="compile.html#yystackdepth">compile.html#yystackdepth</a> + <a href="compile.html#yytrackmaxstackdepth">compile.html#yytrackmaxstackdepth</a> +<li>YYTRACKMAXSTACKDEPTH → <a href="c3ref/c_status_malloc_count.html#sqlitestatusparserstack">c3ref/c_status_malloc_count.html#sqlitestatusparserstack</a> + <a href="capi3ref.html#sqlitestatusparserstack">capi3ref.html#sqlitestatusparserstack</a> +<li>z → <a href="c3ref/mprintf.html">c3ref/mprintf.html</a> + <a href="capi3ref.html#sqlite3_mprintf">capi3ref.html#sqlite3_mprintf</a> + <a href="printf.html">printf.html</a> +<li>zeroblob → <a href="c3ref/blob_open.html">c3ref/blob_open.html</a> + <a href="capi3ref.html#sqlite3_blob_open">capi3ref.html#sqlite3_blob_open</a> + <a href="changes.html#version_3_16_2">changes.html#version_3_16_2</a> + <a href="changes.html#version_3_27_0">changes.html#version_3_27_0</a> + <a href="changes.html#version_3_8_4">changes.html#version_3_8_4</a> + <a href="lang_corefunc.html">lang_corefunc.html</a> + <a href="releaselog/3_16_2.html">releaselog/3_16_2.html</a> + <a href="releaselog/3_27_0.html">releaselog/3_27_0.html</a> + <a href="releaselog/3_27_1.html">releaselog/3_27_1.html</a> + <a href="releaselog/3_27_2.html">releaselog/3_27_2.html</a> + <a href="releaselog/3_8_4.html">releaselog/3_8_4.html</a> + <a href="releaselog/3_8_4_1.html">releaselog/3_8_4_1.html</a> + <a href="releaselog/3_8_4_2.html">releaselog/3_8_4_2.html</a> + <a href="releaselog/3_8_4_3.html">releaselog/3_8_4_3.html</a> +<li>zipfile → <a href="cli.html#arinsup">cli.html#arinsup</a> + <a href="sqlar.html#dbasobj">sqlar.html#dbasobj</a> + <a href="vtablist.html">vtablist.html</a> +<li>Zipfile virtual table → <a href="changes.html#version_3_22_0">changes.html#version_3_22_0</a> + <a href="changes.html#version_3_23_0">changes.html#version_3_23_0</a> + <a href="cli.html#zipdb">cli.html#zipdb</a> + <a href="cves.html#cvetab">cves.html#cvetab</a> + <a href="releaselog/3_22_0.html">releaselog/3_22_0.html</a> + <a href="releaselog/3_23_0.html">releaselog/3_23_0.html</a> + <a href="releaselog/3_23_1.html">releaselog/3_23_1.html</a> +</ul> +<p align="center"><small><i>This page last modified on <a href="https://sqlite.org/docsrc/honeypot" id="mtimelink" data-href="https://sqlite.org/docsrc/finfo/wrap.tcl?m=08af34fe24">2023-03-31 19:57:15</a> UTC </small></i></p> + |