From 3640b21e686fef7e3f25dc775112c7d4be43f197 Mon Sep 17 00:00:00 2001
From: Daniel Baumann
This page last modified on 2023-02-27 02:07:35 UTC
+This page last modified on 2024-04-16 17:22:18 UTC
diff --git a/www/c3ref/c_source_id.html b/www/c3ref/c_source_id.html index 672f75f..82e7547 100644 --- a/www/c3ref/c_source_id.html +++ b/www/c3ref/c_source_id.html @@ -121,9 +121,9 @@ antiRobotDefense();-#define SQLITE_VERSION "3.45.3" -#define SQLITE_VERSION_NUMBER 3045003 -#define SQLITE_SOURCE_ID "2024-04-15 13:34:05 8653b758870e6ef0c98d46b3ace27849054af85da891eb121e9aaa537f1e8355" +#define SQLITE_VERSION "3.46.0" +#define SQLITE_VERSION_NUMBER 3046000 +#define SQLITE_SOURCE_ID "2024-05-23 13:25:27 96c92aba00c8375bc32fafcdf12429c58bd8aabfcadab6683e35bbb9cdebf19e"
The SQLITE_VERSION C preprocessor macro in the sqlite3.h header diff --git a/www/c3ref/funclist.html b/www/c3ref/funclist.html index eedbe37..5642032 100644 --- a/www/c3ref/funclist.html +++ b/www/c3ref/funclist.html @@ -121,8 +121,8 @@ antiRobotDefense();
Note: Functions marked with "(exp)"
are experimental and functions whose names are
struck through are deprecated.
The sqlite3_keyword_count() interface returns the number of distinct keywords understood by SQLite.
-The sqlite3_keyword_name(N,Z,L) interface finds the N-th keyword and +
The sqlite3_keyword_name(N,Z,L) interface finds the 0-based N-th keyword and makes *Z point to that keyword expressed as UTF8 and writes the number of bytes in the keyword into *L. The string that *Z points to is not zero-terminated. The sqlite3_keyword_name(N,Z,L) routine returns diff --git a/www/c3ref/profile.html b/www/c3ref/profile.html index e92fc14..53d0efb 100644 --- a/www/c3ref/profile.html +++ b/www/c3ref/profile.html @@ -3,7 +3,7 @@ -
void *sqlite3_trace(sqlite3*, diff --git a/www/c3ref/sqlite3.html b/www/c3ref/sqlite3.html index b8d2725..88a3dbf 100644 --- a/www/c3ref/sqlite3.html +++ b/www/c3ref/sqlite3.html @@ -140,7 +140,7 @@ sqlite3 object.2 Destructors using this object: sqlite3_close(), sqlite3_close_v2()
-79 Methods using this object: +
77 Methods using this object:
- sqlite3_autovacuum_pages
@@ -203,7 +203,6 @@ sqlite3 object.- sqlite3_preupdate_hook
- sqlite3_preupdate_new
- sqlite3_preupdate_old
-- sqlite3_profile
- sqlite3_progress_handler
- sqlite3_rollback_hook
- sqlite3_set_authorizer
@@ -213,7 +212,6 @@ sqlite3 object.- sqlite3_table_column_metadata
- sqlite3_total_changes
- sqlite3_total_changes64
-- sqlite3_trace
- sqlite3_trace_v2
- sqlite3_txn_state
- sqlite3_unlock_notify
diff --git a/www/c3ref/update_hook.html b/www/c3ref/update_hook.html index 88b8e81..3df764a 100644 --- a/www/c3ref/update_hook.html +++ b/www/c3ref/update_hook.html @@ -158,6 +158,12 @@ invoked when rows are deleted using theIf the sqlite3_vtab_distinct() interface returns 2, that means that the query planner does not need the rows returned in any particular -order, as long as rows with the same values in all "aOrderBy" columns -are adjacent. Furthermore, only a single row for each particular -combination of values in the columns identified by the "aOrderBy" field -needs to be returned. It is always ok for two or more rows with the same -values in all "aOrderBy" columns to be returned, as long as all such rows -are adjacent. The virtual table may, if it chooses, omit extra rows -that have the same value for all columns identified by "aOrderBy". -However omitting the extra rows is optional. +order, as long as rows with the same values in all columns identified +by "aOrderBy" are adjacent. Furthermore, when two or more rows +contain the same values for all columns identified by "colUsed", all but +one such row may optionally be omitted from the result. +The virtual table is not required to omit rows that are duplicates +over the "colUsed" columns, but if the virtual table can do that without +too much extra effort, it could potentially help the query to run faster. This mode is used for a DISTINCT query.
-If the sqlite3_vtab_distinct() interface returns 3, that means -that the query planner needs only distinct rows but it does need the -rows to be sorted. The virtual table implementation is free to omit -rows that are identical in all aOrderBy columns, if it wants to, but -it is not required to omit any rows. This mode is used for queries +If the sqlite3_vtab_distinct() interface returns 3, that means the +virtual table must return rows in the order defined by "aOrderBy" as +if the sqlite3_vtab_distinct() interface had returned 0. However if +two or more rows in the result have the same values for all columns +identified by "colUsed", then all but one such row may optionally be +omitted. Like when the return value is 2, the virtual table +is not required to omit rows that are duplicates over the "colUsed" +columns, but if the virtual table can do that without +too much extra effort, it could potentially help the query to run faster. +This mode is used for queries that have both DISTINCT and ORDER BY clauses.
+The following table summarizes the conditions under which the +virtual table is allowed to set the "orderByConsumed" flag based on +the value returned by sqlite3_vtab_distinct(). This table is a +restatement of the previous four paragraphs:
+ ++
++ sqlite3_vtab_distinct() return value + Rows are returned in aOrderBy order + Rows with the same value in all aOrderBy columns are adjacent + Duplicates over all colUsed columns may be omitted + 0 yes yes no + 1 no yes no + 2 no yes yes + 3 yes yes yes + For the purposes of comparing virtual table output values to see if the values are same value for sorting purposes, two NULL values are considered to be the same. In other words, the comparison operator is "IS" diff --git a/www/capi3ref.html b/www/capi3ref.html index 43cecdb..54ae2b8 100644 --- a/www/capi3ref.html +++ b/www/capi3ref.html @@ -687,8 +687,8 @@ be removed in some future release.
Note: Functions marked with "(exp)" are experimental and functions whose names are
- - + +struck throughare deprecated.@@ -857,7 +857,7 @@ are experimental and functions whose names are
xLock() upgrades the database file lock. In other words, xLock() moves the database file lock in the direction NONE toward EXCLUSIVE. The argument to -xLock() is always on of SHARED, RESERVED, PENDING, or EXCLUSIVE, never +xLock() is always one of SHARED, RESERVED, PENDING, or EXCLUSIVE, never SQLITE_LOCK_NONE. If the database file lock is already at or above the requested lock, then the call to xLock() is a no-op. xUnlock() downgrades the database file lock to either SHARED or NONE. +If the lock is already at or below the requested lock state, then the call to xUnlock() is a no-op. The xCheckReservedLock() method checks whether any database connection, either in this process or in some other process, is holding a RESERVED, @@ -4307,6 +4308,12 @@ invoked when rows are deleted using the t The exceptions defined in this paragraph might change in a future release of SQLite. +- sqlite3_preupdate_hook
- sqlite3_preupdate_new
- sqlite3_preupdate_old
-- sqlite3_profile
+sqlite3_profile- sqlite3_progress_handler
- sqlite3_randomness
- sqlite3_realloc
@@ -937,7 +937,7 @@ are experimental and functions whose names are- sqlite3_threadsafe
- sqlite3_total_changes
- sqlite3_total_changes64
-- sqlite3_trace
+sqlite3_trace- sqlite3_trace_v2
sqlite3_transfer_bindings- sqlite3_txn_state
@@ -1376,10 +1376,11 @@ and not its inode needs to be synced.Whether the update hook is invoked before or after the +corresponding change is currently unspecified and may differ +depending on the type of change. Do not rely on the order of the +hook call with regards to the final result of the operation which +triggers the hook.
+The update hook implementation must not do anything that will modify the database connection that invoked the update hook. Any actions to modify the database connection must be deferred until after the @@ -4467,24 +4474,45 @@ is doing a GROUP BY.
If the sqlite3_vtab_distinct() interface returns 2, that means that the query planner does not need the rows returned in any particular -order, as long as rows with the same values in all "aOrderBy" columns -are adjacent. Furthermore, only a single row for each particular -combination of values in the columns identified by the "aOrderBy" field -needs to be returned. It is always ok for two or more rows with the same -values in all "aOrderBy" columns to be returned, as long as all such rows -are adjacent. The virtual table may, if it chooses, omit extra rows -that have the same value for all columns identified by "aOrderBy". -However omitting the extra rows is optional. +order, as long as rows with the same values in all columns identified +by "aOrderBy" are adjacent. Furthermore, when two or more rows +contain the same values for all columns identified by "colUsed", all but +one such row may optionally be omitted from the result. +The virtual table is not required to omit rows that are duplicates +over the "colUsed" columns, but if the virtual table can do that without +too much extra effort, it could potentially help the query to run faster. This mode is used for a DISTINCT query.
-If the sqlite3_vtab_distinct() interface returns 3, that means -that the query planner needs only distinct rows but it does need the -rows to be sorted. The virtual table implementation is free to omit -rows that are identical in all aOrderBy columns, if it wants to, but -it is not required to omit any rows. This mode is used for queries +If the sqlite3_vtab_distinct() interface returns 3, that means the +virtual table must return rows in the order defined by "aOrderBy" as +if the sqlite3_vtab_distinct() interface had returned 0. However if +two or more rows in the result have the same values for all columns +identified by "colUsed", then all but one such row may optionally be +omitted. Like when the return value is 2, the virtual table +is not required to omit rows that are duplicates over the "colUsed" +columns, but if the virtual table can do that without +too much extra effort, it could potentially help the query to run faster. +This mode is used for queries that have both DISTINCT and ORDER BY clauses.
+The following table summarizes the conditions under which the +virtual table is allowed to set the "orderByConsumed" flag based on +the value returned by sqlite3_vtab_distinct(). This table is a +restatement of the previous four paragraphs:
+ ++
++ sqlite3_vtab_distinct() return value + Rows are returned in aOrderBy order + Rows with the same value in all aOrderBy columns are adjacent + Duplicates over all colUsed columns may be omitted + 0 yes yes no + 1 no yes no + 2 no yes yes + 3 yes yes yes + For the purposes of comparing virtual table output values to see if the values are same value for sorting purposes, two NULL values are considered to be the same. In other words, the comparison operator is "IS" @@ -6884,9 +6912,9 @@ and EXCLUSIVE.
Compile-Time Library Version Numbers
-#define SQLITE_VERSION "3.45.3" -#define SQLITE_VERSION_NUMBER 3045003 -#define SQLITE_SOURCE_ID "2024-04-15 13:34:05 8653b758870e6ef0c98d46b3ace27849054af85da891eb121e9aaa537f1e8355" +#define SQLITE_VERSION "3.46.0" +#define SQLITE_VERSION_NUMBER 3046000 +#define SQLITE_SOURCE_ID "2024-05-23 13:25:27 96c92aba00c8375bc32fafcdf12429c58bd8aabfcadab6683e35bbb9cdebf19e"The SQLITE_VERSION C preprocessor macro in the sqlite3.h header @@ -7779,7 +7807,7 @@ sqlite3 object.
2 Destructors using this object: sqlite3_close(), sqlite3_close_v2()
-79 Methods using this object: +
77 Methods using this object:
- sqlite3_autovacuum_pages
@@ -7842,7 +7870,6 @@ sqlite3 object.- sqlite3_preupdate_hook
- sqlite3_preupdate_new
- sqlite3_preupdate_old
-- sqlite3_profile
- sqlite3_progress_handler
- sqlite3_rollback_hook
- sqlite3_set_authorizer
@@ -7852,7 +7879,6 @@ sqlite3 object.- sqlite3_table_column_metadata
- sqlite3_total_changes
- sqlite3_total_changes64
-- sqlite3_trace
- sqlite3_trace_v2
- sqlite3_txn_state
- sqlite3_unlock_notify
@@ -9701,7 +9727,7 @@ by enclosing in double-quotes) so as not to confuse the parser.The sqlite3_keyword_count() interface returns the number of distinct keywords understood by SQLite.
-The sqlite3_keyword_name(N,Z,L) interface finds the N-th keyword and +
The sqlite3_keyword_name(N,Z,L) interface finds the 0-based N-th keyword and makes *Z point to that keyword expressed as UTF8 and writes the number of bytes in the keyword into *L. The string that *Z points to is not zero-terminated. The sqlite3_keyword_name(N,Z,L) routine returns @@ -10420,7 +10446,7 @@ regular DELETE, sqlite3_preupdate_blobwrite() returns -1.
See also: sqlite3_update_hook()
-Tracing And Profiling Functions
+Deprecated Tracing And Profiling Functions
. See the chronology a succinct listing of releases. + +void *sqlite3_trace(sqlite3*, diff --git a/www/changes.html b/www/changes.html index 8defc25..f7954ca 100644 --- a/www/changes.html +++ b/www/changes.html @@ -129,6 +129,56 @@ https://www.sqlite.org/src/timeline?t=release2024-05-23 (3.46.0)
+
- Enhance PRAGMA optimize in multiple ways, to make it + simpler to use: +
+
+- PRAGMA optimize automatically implements a temporary + analysis limit to prevent excess runtime + on large databases. +
- Added the new 0x10000 bitmask option to check for updates on all tables. +
- Automatically re-analyze tables that do not have sqlite_stat1 entries. +
- Enhancements to the date and time functions: +
+
+- The strftime() SQL function now supports %G, %g, %U, and %V. +
- New modifiers 'ceiling' and 'floor' control the algorithm used to + resolve ambiguous dates when shifting a date by an integer number + of months and/or years. +
- The 'utc' and 'localtime' modifiers are now no-ops if SQLite knows + that the time is already in UTC or in the localtime, respectively. +
- Add support for underscore ("_") characters between digits in + numeric literals. +
- Add the json_pretty() SQL function. +
- Query planner improvements: +
+
+- The "VALUES-as-coroutine" optimization enables INSERT statements with + thousands of rows in the VALUES clause to parse and run in about half + the time and using about half as much memory. +
- Allow the use of an index for queries like "SELECT count(DISTINCT col) FROM ...", + even if the index records are not smaller than the table records. +
- Improved recognition of cases where the value of an SQL function is + constant because all its arguments are constant. +
- Enhance the WHERE-clause push-down optimization so that it is able to + push down WHERE clause terms containing uncorrelated subqueries. +
- Allocate additional memory from the heap for the SQL parser stack if + that stack overflows, rather than reporting a "parser stack overflow" error. +
- JSON changes: +
+
+- Allow ASCII control characters within JSON5 string literals. +
- Fix the -> and ->> operators so that when the right-hand side operand is a string + that looks like an integer it is still treated as a string, because that is what + PostgreSQL does. +
- Allow large hexadecimal literals to be used as the DEFAULT value to a table column. +
Hashes: +
- SQLITE_SOURCE_ID: 2024-05-23 13:25:27 96c92aba00c8375bc32fafcdf12429c58bd8aabfcadab6683e35bbb9cdebf19e +
- SHA3-256 for sqlite3.c: 094429ea827fcd32275e767134bc6c7b9ea394a2c5a9e653dd0a0690b2c11358 + +
2024-04-15 (3.45.3)
- Fix a long-standing bug (going back to version 3.24.0) @@ -402,7 +452,7 @@ See the chronology a succinct listing of releases.
- Enable the "count-of-view" optimization by default.
- Avoid computing unused columns in subqueries. -
- Improvements to the push-down optimization. +
- Improvements to the WHERE-clause push-down optimization.
- Enhancements to the CLI:
@@ -2757,7 +2807,7 @@ with a home-baked pie. the table has one or more indexes that are able to trigger the OR optimization, but none of the indexes reference any table columns other than the INTEGER PRIMARY KEY. Ticket 16c9801ceba49. -
- When checking for the WHERE-clause push-down optimization, verify that all terms +
- When checking for the WHERE-clause push-down optimization, verify that all terms of the compound inner SELECT are non-aggregate, not just the last term. Fix for ticket f7f8c97e97597.
- Fix a locking race condition in Windows that can occur when two or more processes @@ -3110,7 +3160,7 @@ with a home-baked pie. sqlite3_initialize() to help ensure that it is thread-safe.
- Fix the OR optimization so that it always ignores subplans that do not use an index. -
- Do not apply the WHERE-clause pushdown optimization on terms that originate +
- Do not apply the WHERE-clause push-down optimization on terms that originate in the ON or USING clause of a LEFT JOIN. Fix for ticket c2a19d81652f40568c. diff --git a/www/chronology.html b/www/chronology.html index 4c8e450..e638413 100644 --- a/www/chronology.html +++ b/www/chronology.html @@ -125,6 +125,8 @@ antiRobotDefense();
+ Date Version 2024-05-23 +3.46.0 2024-04-15 3.45.3 2024-03-12 @@ -243,6 +245,8 @@ antiRobotDefense();3.25.0 + 2018-06-04 3.24.0 2018-05-09 +3.23.2 2018-04-10 3.23.1 2018-04-02 @@ -259,6 +263,8 @@ antiRobotDefense();3.18.2 + 2017-06-16 3.18.1 2017-08-18 +3.19.4 2017-06-08 3.19.3 2017-05-25 @@ -395,10 +401,6 @@ antiRobotDefense();3.7.13 - 2012-05-22 3.7.12.1 - 2012-05-14 -3.7.12 2012-05-14 -3.7.12 2012-05-14 3.7.12 2012-03-20 @@ -945,8 +947,8 @@ var t = new SortableTable(document.getElementById("chrontab"),"nK",1);-348 releases -over 23.7 years. +349 releases +over 23.8 years.
This page last modified on 2023-03-03 01:19:02 UTC
diff --git a/www/cli.html b/www/cli.html index 6ed5de9..773c353 100644 --- a/www/cli.html +++ b/www/cli.html @@ -562,7 +562,7 @@ sqlite>In "column" mode (and also in "box", "table", and "markdown" modes) the width of columns adjusts automatically. But you can override this, -providing a speicified width for each column using the ".width" command. +providing a specified width for each column using the ".width" command. The arguments to ".width" are integers which are the number of characters to devote to each column. Negative numbers mean right-justify. Thus:
@@ -2046,5 +2046,5 @@ provide a full-featured command-line shell:- -DSQLITE_ENABLE_FTS4
- -DSQLITE_ENABLE_FTS5
-This page last modified on 2023-12-05 14:43:20 UTC
+This page last modified on 2024-04-16 17:22:18 UTC
diff --git a/www/compile.html b/www/compile.html index 437ac3a..9d93392 100644 --- a/www/compile.html +++ b/www/compile.html @@ -293,15 +293,25 @@ the SQLite library will be approximately 3% smaller and use about 5% fewer CPU cycles. So these options do not make a huge difference. But in some design situations, every little bit helps. +Library-level configuration options, such as those listed above, +may optionally be defined in a client-side header file. Defining +SQLITE_CUSTOM_INCLUDE=myconfig.h (with no quotes) will cause sqlite3.c +to include myconfig.h early on in the compilation process, enabling +the client to customize the flags without having to explicitly pass +all of them to the compiler. +
3. Platform Configuration
_HAVE_SQLITE_CONFIG_H
If the _HAVE_SQLITE_CONFIG_H macro is defined - then the SQLite source code will attempt to #include a file named "config.h". - The "config.h" file usually contains other configuration options, especially - "HAVE_INTERFACE" type options generated by autoconf scripts. + then the SQLite source code will attempt to #include a file named "sqlite_cfg.h". + The "sqlite_cfg.h" file usually contains other configuration options, especially + "HAVE_INTERFACE" type options generated by autoconf scripts. Note that this + header is intended only for use for platform-level configuration, not library-level + configuration. To set SQLite-level configuration flags in a custom header, define + SQLITE_CUSTOM_INCLUDE=myconfig.h, as described in the previous section.
HAVE_FDATASYNC
If the HAVE_FDATASYNC compile-time option is true, then the default VFS @@ -1024,7 +1034,7 @@ the available settings:
destroyed. When this option is enabled and an illegal API usage is detected, the interface will typically return SQLITE_MISUSE.- The SQLITE_ENABLE_API_ARMOR option does not guarantee that all + The SQLITE_ENABLE_API_ARMOR option does not guarantee that all illegal API usages will be detected. Even when SQLITE_ENABLE_API_ARMOR is enabled, passing incorrect values into the C-language APIs can cause a process crash due to segmentation @@ -1032,15 +1042,15 @@ the available settings:
SQLITE_ENABLE_API_ARMOR compile-time option is intended as an aid for application testing and debugging option. Applications should not depend SQLITE_ENABLE_API_ARMOR for safety. - SQLITE_ENABLE_API_ARMORE is appropriate as a second line of + SQLITE_ENABLE_API_ARMOR is appropriate as a second line of defense against application bugs, but it should not be the only defense. If any SQLite interface returns SQLITE_MISUSE, that indicates that the application is using SQLite contrary to the spec and that the application contains a bug. The SQLITE_MISUSE return provides the application with the opportunity to respond - gracefully to that bug, rather than simply crashing the process, - but nothing more. Applications should not make use of nor depend - upon SQLITE_MISUSE for routine processing. + gracefully to that bug, rather than simply crashing the process or + invoking undefined behavior, but nothing more. Applications should + neither make use of nor depend upon SQLITE_MISUSE for routine processing.SQLITE_ENABLE_ATOMIC_WRITE
- +If this C-preprocessor macro is defined and if the @@ -2129,5 +2139,5 @@ macros is included for completeness.
This macro may not be used in combination with any of SQLITE_APICALL, SQLITE_CALLBACK, SQLITE_CDECL or SQLITE_SYSAPI.This page last modified on 2024-05-09 08:10:19 UTC
diff --git a/www/copyright.html b/www/copyright.html index aec24b5..b2e99fd 100644 --- a/www/copyright.html +++ b/www/copyright.html @@ -196,7 +196,7 @@ sources on the internet.SQLite is in the public domain and does not require a license. Even so, some organizations want legal proof of their right to use -SQLite. Circumstances where this might occurs include the following: +SQLite. Circumstances where this might occur include the following:
@@ -221,7 +221,7 @@ all the developers of SQLite, will a Warranty of Title for SQLite. A Warranty of Title is a legal document that asserts that the claimed authors of SQLite are the true authors, and that the authors -have the legal right to dedicate the SQLite to the public domain, and +have the legal right to dedicate the SQLite library into the public domain, and that Hwaci will vigorously defend against challenges to those claims. All proceeds from the sale of SQLite Warranties of Title are used to fund continuing improvement and support of SQLite. @@ -235,5 +235,5 @@ the project does not accept patches. If you would like to suggest a change and you include a patch as a proof-of-concept, that would be great. However, please do not be offended if we rewrite your patch from scratch. -
This page last modified on 2022-04-18 02:55:50 UTC
+This page last modified on 2024-05-05 15:23:53 UTC
diff --git a/www/crew.html b/www/crew.html index fa6704a..4dfad8c 100644 --- a/www/crew.html +++ b/www/crew.html @@ -158,11 +158,13 @@ Dan has been a key contributor to SQLite since 2002.Joe Mistachkin -(pronounced "miss-tash-kin") is a software engineer and one -of the maintainers of Tcl/Tk. He is also the author of the TclBridge -component and the Eagle scripting language. He has been working in the -software industry since 1994. +(pronounced "miss-tash-kin") is a software engineer, one of the +maintainers of Tcl/Tk, and the founder +of Mistachkin Systems. He is +also the author of the TclBridge component and the Eagle +scripting language. He has been working in the software industry +since 1994.
-This page last modified on 2022-01-08 05:02:57 UTC
+This page last modified on 2024-05-09 21:15:44 UTC
diff --git a/www/different.html b/www/different.html index 64dee1b..c1edd8f 100644 --- a/www/different.html +++ b/www/different.html @@ -214,11 +214,10 @@ database engines.Compact
When optimized for size, the whole SQLite library with everything enabled - is less than 500KiB in size + is less than 1MiB in size (as measured on an ix86 using the "size" utility from the GNU compiler suite.) Unneeded features can be disabled - at compile-time to further reduce the size of the library to under - 300KiB if desired. + at compile-time to further reduce the size of the library even further.-Most other SQL database engines are much larger than this. IBM boasts that its recently released CloudScape database engine is "only" a 2MiB @@ -354,5 +353,5 @@ database engines. and collating sequences.
This page last modified on 2022-04-18 02:55:50 UTC
+This page last modified on 2024-05-08 11:54:12 UTC
diff --git a/www/doc_backlink_crossref.html b/www/doc_backlink_crossref.html index 10a2e62..8abf1fd 100644 --- a/www/doc_backlink_crossref.html +++ b/www/doc_backlink_crossref.html @@ -367,6 +367,7 @@ antiRobotDefense(); lang_createtable.html#tablecoldef lang_select.html#fromclause oldnews.html + optoverview.html#flattening optoverview.html#like_opt withoutrowid.html- affshort → appfileformat.html @@ -411,7 +412,7 @@ antiRobotDefense(); fileformat2.html#serialtype foreignkeys.html#fk_actions lang.html - lang_analyze.html#req + lang_analyze.html#statanal lang_createtable.html#notnullconst lang_createtrigger.html lang_naming.html @@ -513,12 +514,15 @@ antiRobotDefense(); howtocompile.html#cli releaselog/3_11_0.html releaselog/3_11_1.html +
- ambiguous dates → changes.html#version_3_46_0 + releaselog/3_46_0.html
- American Fuzzy Lop fuzzer → changes.html#version_3_8_10 releaselog/3_8_10.html releaselog/3_8_10_1.html releaselog/3_8_10_2.html
- analysis_limit → lang_analyze.html#approx -
- analysis_limit pragma → lang_analyze.html#req +
- analysis_limit pragma → changes.html#version_3_46_0 + releaselog/3_46_0.html
- ANALYZE → appfileformat.html c3ref/stmt_scanstatus.html capi3ref.html#sqlite3_stmt_scanstatus @@ -543,12 +547,12 @@ antiRobotDefense(); news.html oldnews.html optoverview.html#autoindex + optoverview.html#joins optoverview.html#manctrl optoverview.html#multi_index optoverview.html#option2 optoverview.html#rangequery optoverview.html#skipscan - optoverview.html#table_order pragma.html#pragma_analysis_limit pragma.html#pragma_optimize queryplanner-ng.html#fossilcasestudy @@ -657,6 +661,7 @@ antiRobotDefense(); releaselog/3_32_1.html releaselog/3_32_2.html releaselog/3_32_3.html +
- Approximate ANALYZE For Large Databases → lang_analyze.html#pragopt
- asin → lang_mathfunc.html
- asinh → lang_mathfunc.html
- asynchronous I/O backend → oldnews.html @@ -751,6 +756,8 @@ antiRobotDefense(); releaselog/3_19_2.html releaselog/3_19_3.html
- auto modifier → changes.html#version_3_38_0 + lang_datefunc.html + lang_datefunc.html#tmval releaselog/3_38_0.html releaselog/3_38_1.html releaselog/3_38_2.html @@ -822,6 +829,7 @@ antiRobotDefense(); releaselog/3_9_3.html rescode.html#warning_autoindex
- automatic_index pragma → optoverview.html#autoindex +
- Automatically Running ANALYZE → lang_analyze.html#pragopt
- automerge command → changes.html#version_3_8_5 releaselog/3_8_5.html
- auxiliary columns → rtree.html#xshadow @@ -965,6 +973,7 @@ antiRobotDefense(); releaselog/3_37_2.html rowvalue.html#rvinop vtab.html#colUsed + whybytecode.html
- bytecode and tables_used virtual tables → compile.html#enable_bytecode_vtab
- bytecode engine → changes.html#version_3_35_3 changes.html#version_3_45_1 @@ -1309,6 +1318,7 @@ antiRobotDefense(); releaselog/3_45_1.html releaselog/3_45_2.html releaselog/3_45_3.html + releaselog/3_46_0.html releaselog/3_4_0.html releaselog/3_4_1.html releaselog/3_4_2.html @@ -1633,6 +1643,7 @@ antiRobotDefense(); releaselog/3_6_21.html releaselog/3_6_23.html
- command-line interface → features.html + lang_analyze.html#statanal
- command-line shell → changes.html#version_3_10_0 changes.html#version_3_11_0 changes.html#version_3_12_0 @@ -1982,6 +1993,7 @@ antiRobotDefense(); releaselog/3_45_1.html releaselog/3_45_2.html releaselog/3_45_3.html + releaselog/3_46_0.html releaselog/3_4_0.html releaselog/3_4_1.html releaselog/3_4_2.html @@ -2230,6 +2242,7 @@ antiRobotDefense(); fullsql.html lang.html lang_altertable.html#otheralter + lang_analyze.html#pragopt lang_dropindex.html limits.html#max_page_count oldnews.html @@ -2240,6 +2253,7 @@ antiRobotDefense(); pragma.html#pragma_index_xinfo pragma.html#pragma_journal_mode pragma.html#pragma_legacy_alter_table + pragma.html#pragma_optimize releaselog/3_7_8.html releaselog/3_8_10.html releaselog/3_8_10_1.html @@ -2513,7 +2527,6 @@ antiRobotDefense(); pragma.html#pragma_journal_mode pragma.html#pragma_legacy_alter_table pragma.html#pragma_mmap_size - pragma.html#pragma_optimize releaselog/3_5_8.html releaselog/3_6_1.html releaselog/3_7_17.html @@ -2588,11 +2601,13 @@ antiRobotDefense(); changes.html#version_3_38_1 changes.html#version_3_42_0 changes.html#version_3_43_0 + changes.html#version_3_46_0 compile.html#gmtime_r compile.html#localtime_r compile.html#localtime_s datatype3.html#datetime deterministic.html#dtexception + news.html quirks.html releaselog/3_10_0.html releaselog/3_10_1.html @@ -2615,6 +2630,7 @@ antiRobotDefense(); releaselog/3_43_0.html releaselog/3_43_1.html releaselog/3_43_2.html + releaselog/3_46_0.html
- date/time special case → changes.html#version_3_20_0 releaselog/3_20_0.html releaselog/3_20_1.html @@ -2708,7 +2724,7 @@ antiRobotDefense(); fullsql.html isolation.html lang.html - lang_analyze.html#req + lang_analyze.html#statanal lang_createtable.html#notnullconst lang_createtrigger.html lang_createview.html @@ -2822,7 +2838,7 @@ antiRobotDefense(); fts3.html#fts4 lang.html lang_altertable.html#otheralter - lang_analyze.html#req + lang_analyze.html#statanal lang_createtable.html lang_createtrigger.html lang_createvtab.html @@ -3181,6 +3197,7 @@ antiRobotDefense(); intern-v-extern-blob.html whentouse.html#appfileformat whentouse.html#container + whybytecode.html
- file control → c3ref/snapshot_recover.html c3ref/total_changes.html capi3ref.html#sqlite3_snapshot_recover @@ -3249,6 +3266,7 @@ antiRobotDefense(); windowfunctions.html#wexcls
- flattened → changes.html#version_3_35_0 lang_with.html#mathint + optoverview.html#coroutines optoverview.html#pushdown releaselog/3_35_0.html releaselog/3_35_1.html @@ -3870,7 +3888,7 @@ antiRobotDefense();
- http://en.wikipedia.org/wiki/ACID → about.html transactional.html
- http://en.wikipedia.org/wiki/Charlotte,_North_Carolina → crew.html -
- http://en.wikipedia.org/wiki/Coordinated_Universal_Time → lang_datefunc.html#tmdif +
- http://en.wikipedia.org/wiki/Coordinated_Universal_Time → lang_datefunc.html#tmval
- http://en.wikipedia.org/wiki/Endianness → about.html onefile.html
- http://en.wikipedia.org/wiki/Fuzz_testing → testing.html#fuzztesting @@ -3878,7 +3896,7 @@ antiRobotDefense();
- http://en.wikipedia.org/wiki/ISO_8601 → lang_datefunc.html
- http://en.wikipedia.org/wiki/Julian_day → lang_datefunc.html lang_datefunc.html#jlndy - lang_datefunc.html#tmdif + lang_datefunc.html#tmval
- http://en.wikipedia.org/wiki/Kibibyte → oldnews.html
- http://en.wikipedia.org/wiki/Modified_Condition/Decision_Coverage → testing.html#mcdc
- http://en.wikipedia.org/wiki/OpenDocument → affcase1.html @@ -3887,7 +3905,7 @@ antiRobotDefense();
- http://en.wikipedia.org/wiki/R-tree → rtree.html
- http://en.wikipedia.org/wiki/Serializability → transactional.html
- http://en.wikipedia.org/wiki/Syslog → errlog.html -
- http://en.wikipedia.org/wiki/Unix_time → lang_datefunc.html#tmshf +
- http://en.wikipedia.org/wiki/Unix_time → lang_datefunc.html#jdmod
- http://en.wikipedia.org/wiki/UUID → changes.html#version_3_3_13 releaselog/3_3_13.html
- http://en.wikipedia.org/wiki/Zip_%28file_format%29 → affcase1.html @@ -4013,7 +4031,7 @@ antiRobotDefense();
- http://www.tcl.tk/ → sqlanalyze.html th3.html
- http://www.valgrind.org/ → qmplan.html -
- http://www.w3c.org/TR/NOTE-datetime → lang_datefunc.html#tmdif +
- http://www.w3c.org/TR/NOTE-datetime → lang_datefunc.html#tmval
- http://www.xojo.com/ → famous.html
- http://zlib.net/ → sqlar.html
- https://airsdk.harman.com → famous.html @@ -4026,7 +4044,9 @@ antiRobotDefense();
- https://developers.google.com/open-source/osa#2005-google-oreilly-open-source-award-winners → oldnews.html
- https://digitalocean.com → qmplan.html
- https://docs.microsoft.com/en-us/azure/cosmos-db/serverless-computing-database → serverless.html +
- https://eagle.to/ → crew.html#dan
- https://en.wikipedia.org/wiki/Abstract_syntax_tree → howitworks.html + whybytecode.html
- https://en.wikipedia.org/wiki/Artificial_intelligence → queryplanner.html
- https://en.wikipedia.org/wiki/Assert.h → assert.html
- https://en.wikipedia.org/wiki/Berkeley_DB → howitworks.html @@ -4036,6 +4056,7 @@ antiRobotDefense(); releaselog/3_10_2.html
- https://en.wikipedia.org/wiki/Database_index#Clustered → withoutrowid.html
- https://en.wikipedia.org/wiki/Database_transaction → howitworks.html +
- https://en.wikipedia.org/wiki/Dataflow_programming → whybytecode.html
- https://en.wikipedia.org/wiki/Declarative_programming → howitworks.html
- https://en.wikipedia.org/wiki/DO-178B → hirely.html qmplan.html @@ -4048,12 +4069,16 @@ antiRobotDefense();
- https://en.wikipedia.org/wiki/Hash_join → optoverview.html#hashjoin
- https://en.wikipedia.org/wiki/Imperative_programming → howitworks.html
- https://en.wikipedia.org/wiki/Information_schema → pragma.html#pragfunc +
- https://en.wikipedia.org/wiki/Java_virtual_machine → whybytecode.html
- https://en.wikipedia.org/wiki/Julian_day → quirks.html
- https://en.wikipedia.org/wiki/LALR_parser → howitworks.html + whybytecode.html
- https://en.wikipedia.org/wiki/Library_(computing) → howitworks.html
- https://en.wikipedia.org/wiki/Linus%27s_law → testing.html#3pfuzz
- https://en.wikipedia.org/wiki/Modified_condition/decision_coverage → th3.html
- https://en.wikipedia.org/wiki/Mutation_testing → testing.html#mutationtests +
- https://en.wikipedia.org/wiki/Online_analytical_processing → whybytecode.html +
- https://en.wikipedia.org/wiki/Online_transaction_processing → whybytecode.html
- https://en.wikipedia.org/wiki/Patch_(Unix) → sessionintro.html
- https://en.wikipedia.org/wiki/Recursive_descent_parser → compile.html#json_max_depth
- https://en.wikipedia.org/wiki/Robustness_principle → lang_select.html#nonstd @@ -4071,7 +4096,9 @@ antiRobotDefense(); th3.html
- https://en.wikipedia.org/wiki/Tar_(computing) → sqlar.html
- https://en.wikipedia.org/wiki/Tcl → vtablist.html +
- https://en.wikipedia.org/wiki/Unix_time → lang_datefunc.html
- https://en.wikipedia.org/wiki/Web_SQL_Database → bindptr.html +
- https://en.wikipedia.org/wiki/WebAssembly → whybytecode.html
- https://en.wikipedia.org/wiki/Yacc → lemon.html
- https://en.wikipedia.org/wiki/Zip_%28file_format%29 → zipfile.html
- https://en.wikipedia.org/wiki/Zip_(file_format) → changes.html#version_3_22_0 @@ -4153,6 +4180,10 @@ antiRobotDefense(); json1.html#json5
- https://spec.json5.org/#introduction → json1.html#json5
- https://sqlite.org/docsrc/finfo/pages/whynotgit.in → whynotgit.html +
- https://sqlite.org/forum → optoverview.html#option2 + optoverview.html#uplus + queryplanner-ng.html#howtofix + whybytecode.html
- https://sqlite.org/forum/about → cves.html#cvetab
- https://sqlite.org/forum/forum → flextypegood.html quirks.html @@ -4532,6 +4563,7 @@ antiRobotDefense();
- https://www.loc.gov/preservation/resources/rfs/data.html → locrsf.html
- https://www.microsoft.com/en-us/research/people/gray/ → fasterthanfs.html
- https://www.microsoft.com/en-us/research/publication/to-blob-or-not-to-blob-large-object-storage-in-a-database-or-a-filesystem/ → fasterthanfs.html +
- https://www.mistachkin.com/ → crew.html#dan
- https://www.neooffice.org/neojava/en/index.php → affcase1.html
- https://www.postgresql.org → lang_returning.html
- https://www.reddit.com/r/programming/comments/84fzoc/why_is_sqlite_coded_in_c/ → whyc.html @@ -5166,6 +5198,7 @@ antiRobotDefense();
- https://www.sqlite.org/src/vdiff?from=e4ab094f8afce0817f4074e823fabe59fc29ebb4&to=83afe23e553e802c0947c80d0ffdd120423e7c52&sbs=1 → oldnews.html
- https://www.sqlite.org/src/vpatch?from=version-3.9.0&to=version-3.9.1 → oldnews.html
- https://www.sqlite.org/th3 → qmplan.html +
- https://www.tcl.tk/ → crew.html#dan
- https://www.tcl.tk/man/tcl8.3/UserCmd/tclsh.htm → cli.html#compiling
- https://www2.eecs.berkeley.edu/Pubs/TechRpts/2006/EECS-2006-1.html → faq.html#q6
- https://www2.sqlite.org → qmplan.html @@ -5343,7 +5376,7 @@ antiRobotDefense(); fullsql.html isolation.html lang.html - lang_analyze.html#req + lang_analyze.html#statanal lang_conflict.html lang_createtable.html#dfltval lang_createtable.html#notnullconst @@ -5427,7 +5460,7 @@ antiRobotDefense();
- internal schema objects → fileformat2.html#ffschema
- internal table → autoinc.html
- internal tables → lang_analyze.html - lang_analyze.html#req + lang_analyze.html#statanal
- Internal Versus External BLOBs → aff_short.html appfileformat.html fasterthanfs.html @@ -5460,6 +5493,7 @@ antiRobotDefense(); releaselog/3_45_2.html releaselog/3_45_3.html
- join order → eqp.html + optoverview.html
- join-clause → lang_aggfunc.html lang_altertable.html lang_attach.html @@ -5552,6 +5586,7 @@ antiRobotDefense();
- json → changes.html#version_3_10_0 json1.html#jarray json1.html#jobj + json1.html#jpretty json1.html#jset json1.html#json5 json1.html#varg @@ -5587,6 +5622,7 @@ antiRobotDefense(); changes.html#version_3_43_0 features.html fullsql.html + lang.html lang_corefunc.html lang_expr.html#*funcinexpr news.html @@ -5650,6 +5686,9 @@ antiRobotDefense(); releaselog/3_18_0.html releaselog/3_18_1.html releaselog/3_18_2.html +
- json_pretty → changes.html#version_3_46_0 + news.html + releaselog/3_46_0.html
- json_quote → changes.html#version_3_14 json1.html#howtocompile releaselog/3_14.html @@ -5989,7 +6028,7 @@ antiRobotDefense();
- ltrim → lang_corefunc.html
- mailing lists → bindptr.html qmplan.html -
- Manual Control Of Query Plans Using SQLITE_STAT Tables → lang_analyze.html#req +
- Manual Control Of Query Plans Using SQLITE_STAT Tables → lang_analyze.html#statanal
- master journal → changes.html#version_3_12_0 releaselog/3_12_0.html releaselog/3_12_1.html @@ -6034,7 +6073,8 @@ antiRobotDefense(); releaselog/3_35_4.html releaselog/3_35_5.html
- math functions → lang_expr.html#*funcinexpr -
- mathfunc → lang_corefunc.html +
- mathfunc → lang.html + lang_corefunc.html
- max → lang_corefunc.html
- max_agg → lang_aggfunc.html#aggfunclist lang_corefunc.html#max_scalar @@ -6100,6 +6140,7 @@ antiRobotDefense(); releaselog/3_15_0.html releaselog/3_15_1.html releaselog/3_15_2.html +
- modifiers → lang_datefunc.html
- most used → index.html
- most widely deployed → about.html appfileformat.html @@ -6125,10 +6166,10 @@ antiRobotDefense(); versionnumbers.html
- Next Generation Query Planner → howitworks.html optoverview.html + optoverview.html#joins
- NGQP → changes.html#version_3_8_0 limits.html#max_sql_length oldnews.html - optoverview.html releaselog/3_8_0.html releaselog/3_8_0_1.html releaselog/3_8_0_2.html @@ -6168,6 +6209,8 @@ antiRobotDefense();
- NULLS LAST → changes.html#version_3_30_0 releaselog/3_30_0.html releaselog/3_30_1.html +
- numeric literals → changes.html#version_3_46_0 + releaselog/3_46_0.html
- numeric-literal → lang_expr.html#litvalue
- object resolution → lang_dropview.html
- octet_length → changes.html#version_3_43_0 @@ -6226,7 +6269,6 @@ antiRobotDefense(); releaselog/3_31_1.html
- OpenOffice case study → appfileformat.html
- optimize command → fts3.html#fts4 -
- optimize pragma → lang_analyze.html#req
- optimizer → eqp.html
- OR optimization → changes.html#version_3_11_0 changes.html#version_3_14 @@ -6496,9 +6538,9 @@ antiRobotDefense(); vtablist.html
- PRAGMA analysis_limit → changes.html#version_3_32_0 lang_analyze.html#approx + lang_analyze.html#pragopt pragma.html#pragma_optimize pragma.html#toc - queryplanner-ng.html#fossilcasestudy releaselog/3_32_0.html releaselog/3_32_1.html releaselog/3_32_2.html @@ -6801,16 +6843,21 @@ antiRobotDefense(); releaselog/3_30_0.html releaselog/3_30_1.html
- PRAGMA optimize → changes.html#version_3_18_0 + changes.html#version_3_46_0 lang_analyze.html#approx lang_analyze.html#autoanalyze + lang_analyze.html#pragopt news.html + optoverview.html#option2 pragma.html#pragma_analysis_limit pragma.html#toc queryplanner-ng.html#fossilcasestudy queryplanner-ng.html#howtofix + queryplanner-ng.html#qpstab releaselog/3_18_0.html releaselog/3_18_1.html releaselog/3_18_2.html + releaselog/3_46_0.html
- PRAGMA page_count → changes.html#version_3_6_1 pragma.html#toc releaselog/3_6_0.html @@ -6995,6 +7042,7 @@ antiRobotDefense(); releaselog/3_27_0.html releaselog/3_27_1.html releaselog/3_27_2.html + whybytecode.html
- PRAGMA wal_autocheckpoint → pragma.html#toc
- PRAGMA wal_checkpoint → c3ref/wal_checkpoint_v2.html capi3ref.html#sqlite3_wal_checkpoint_v2 @@ -7117,6 +7165,7 @@ antiRobotDefense(); threadsafe.html vfs.html vtablist.html + whybytecode.html
- prepared statements → 35to36.html bytecodevtab.html c3ref/c_config_covering_index_scan.html#sqliteconfigmultithread @@ -7189,7 +7238,6 @@ antiRobotDefense();
- push-down optimization → changes.html#version_3_23_0 changes.html#version_3_35_0 changes.html#version_3_35_4 - changes.html#version_3_42_0 lang_with.html#mathint releaselog/3_23_0.html releaselog/3_23_1.html @@ -7199,7 +7247,6 @@ antiRobotDefense(); releaselog/3_35_3.html releaselog/3_35_4.html releaselog/3_35_5.html - releaselog/3_42_0.html
- Q → c3ref/mprintf.html capi3ref.html#sqlite3_mprintf printf.html @@ -7250,9 +7297,11 @@ antiRobotDefense(); changes.html#version_3_20_0 compile.html#enable_qpsg compile.html#enable_stat4 + lang_analyze.html#statanal oldnews.html releaselog/3_20_0.html releaselog/3_20_1.html +
- query-time index → optoverview.html#flattening
- query_only pragma → changes.html#version_3_8_0 releaselog/3_8_0.html releaselog/3_8_0_1.html @@ -7372,6 +7421,7 @@ antiRobotDefense(); lang_altertable.html#altertableishard lts.html onefile.html +
- Recommended usage patterns for ANALYZE → queryplanner-ng.html#qpstab
- record format → changes.html#version_3_21_0 fileformat2.html#stat4tab opcode.html#codes @@ -7700,6 +7750,8 @@ antiRobotDefense();
- rtrim → lang_corefunc.html
- rules for determining column affinity → lang_expr.html#castexpr
- Run-Time Loadable Extensions → cli.html#dotload +
- running ANALYZE via PRAGMA optimize → changes.html#version_3_46_0 + releaselog/3_46_0.html
- safe command-line option → changes.html#version_3_40_1 news.html releaselog/3_40_1.html @@ -7776,7 +7828,7 @@ antiRobotDefense(); fts3.html#simple_fts_queries isolation.html lang.html - lang_analyze.html#req + lang_analyze.html#statanal lang_createview.html lang_expr.html#cosub lang_expr.html#subq @@ -9673,7 +9725,6 @@ antiRobotDefense(); changes.html#version_3_16_0 changes.html#version_3_31_0 changes.html#version_3_41_0 - pragma.html#pragma_optimize releaselog/3_16_0.html releaselog/3_16_1.html releaselog/3_16_2.html @@ -10326,6 +10377,7 @@ antiRobotDefense(); vtab.html#obc vtab.html#xbestindex vtab.html#xfindfunction + whybytecode.html
- sqlite3_prepare16 → c3ref/bind_parameter_name.html c3ref/funclist.html c3ref/set_authorizer.html @@ -10513,11 +10565,7 @@ antiRobotDefense(); capi3ref.html#sqlite3 capi3ref.html#sqlite3_preupdate_blobwrite
- sqlite3_profile → c3ref/c_trace.html#sqlitetraceprofile - c3ref/funclist.html - c3ref/sqlite3.html c3ref/trace_v2.html - capi3ref.html - capi3ref.html#sqlite3 capi3ref.html#sqlite3_trace_v2 capi3ref.html#sqlitetraceprofile changes.html#version_3_14 @@ -11094,7 +11142,7 @@ antiRobotDefense(); lang_corefunc.html#likelihood lang_corefunc.html#likely lang_corefunc.html#unlikely - lang_datefunc.html#tmdif + lang_datefunc.html#tmval lang_explain.html lang_returning.html malloc.html#lookaside @@ -11125,6 +11173,7 @@ antiRobotDefense(); cintro.html tclsqlite.html#trace_v2 unlock_notify.html + whybytecode.html
- sqlite3_stmt_busy → c3ref/funclist.html c3ref/stmt.html capi3ref.html @@ -11427,12 +11476,8 @@ antiRobotDefense(); releaselog/3_37_1.html releaselog/3_37_2.html
- sqlite3_trace → c3ref/c_trace.html#sqlitetracestmt - c3ref/funclist.html c3ref/profile.html - c3ref/sqlite3.html c3ref/trace_v2.html - capi3ref.html - capi3ref.html#sqlite3 capi3ref.html#sqlite3_profile capi3ref.html#sqlite3_trace_v2 capi3ref.html#sqlitetracestmt @@ -11757,7 +11802,7 @@ antiRobotDefense(); compile.html#os_other custombuild.html howtocorrupt.html#posix_close_bug - lang_datefunc.html#tmdif + lang_datefunc.html#tmval loadext.html#persist loadext.html#statext oldnews.html @@ -12008,6 +12053,12 @@ antiRobotDefense(); capi3ref.html capi3ref.html#sqlite3_win32_set_directory
- sqlite3changegroup_add → session.html + session.html#sqlite3_changegroup + session.html#sqlite3changegroup_add_change + session/changegroup.html + session/funclist.html + session/sqlite3changegroup_add_change.html +
- sqlite3changegroup_add_change → session.html session.html#sqlite3_changegroup session/changegroup.html session/funclist.html @@ -13292,7 +13343,7 @@ antiRobotDefense(); changes.html#version_3_6_20 changes.html#version_3_7_6 changes.html#version_3_7_9 - lang_analyze.html#req + lang_analyze.html#statanal oldnews.html releaselog/3_6_18.html releaselog/3_6_20.html @@ -13304,7 +13355,7 @@ antiRobotDefense(); compile.html#enable_stat2 compile.html#enable_stat4 fileformat2.html#stat3tab - lang_analyze.html#req + lang_analyze.html#statanal oldnews.html optoverview.html#rangequery releaselog/3_30_0.html @@ -13322,7 +13373,7 @@ antiRobotDefense(); compile.html#enable_stat3 fileformat2.html#stat3tab fileformat2.html#stat4tab - lang_analyze.html#req + lang_analyze.html#statanal oldnews.html optoverview.html#rangequery releaselog/3_41_2.html @@ -14889,6 +14940,7 @@ antiRobotDefense(); security.html sharedcache.html#dontuse unlock_notify.html + whybytecode.html
- SQLITE_SECURE_DELETE → changes.html#version_3_6_21 faq.html#q20 pragma.html#pragma_secure_delete @@ -14951,11 +15003,11 @@ antiRobotDefense();
- sqlite_stat1 → changes.html#version_3_13_0 changes.html#version_3_33_0 changes.html#version_3_8_1 - lang_analyze.html#req + lang_analyze.html#pragopt + lang_analyze.html#statanal oldnews.html optoverview.html#manctrl optoverview.html#multi_index - pragma.html#pragma_optimize queryplanner-ng.html#fossilcasestudy queryplanner-ng.html#howtofix releaselog/3_13_0.html @@ -14964,15 +15016,13 @@ antiRobotDefense();
- SQLITE_STAT1 → queryplanner-ng.html#fossilcasestudy queryplanner-ng.html#hazards queryplanner-ng.html#howtofix -
- sqlite_stat2 → lang_analyze.html#req -
- sqlite_stat3 → lang_analyze.html#req - optoverview.html#manctrl +
- sqlite_stat2 → lang_analyze.html#statanal +
- sqlite_stat3 → lang_analyze.html#statanal optoverview.html#rangequery
- sqlite_stat4 → changes.html#version_3_8_6 changes.html#version_3_8_7 compile.html#enable_stat4 - lang_analyze.html#req - optoverview.html#manctrl + lang_analyze.html#statanal optoverview.html#rangequery releaselog/3_8_6.html releaselog/3_8_7.html @@ -15431,9 +15481,11 @@ antiRobotDefense();
- strategies → eqp.html
- strftime → lang_datefunc.html#subsec
- strftime SQL function → changes.html#version_3_44_0 + changes.html#version_3_46_0 releaselog/3_44_0.html releaselog/3_44_1.html releaselog/3_44_2.html + releaselog/3_46_0.html
- STRICT → datatype3.html#affname lang_createtable.html#primkeyconst
- STRICT table → pragma.html#pragma_table_list @@ -15454,7 +15506,8 @@ antiRobotDefense(); releaselog/3_44_2.html
- subprograms → opcode.html
- Subqueries → fullsql.html -
- subsec modifier → lang_datefunc.html#uepch +
- subsec modifier → lang_datefunc.html#dttm + lang_datefunc.html#uepch
- subsecond modifier → changes.html#version_3_42_0 releaselog/3_42_0.html
- substr → arch.html @@ -15635,6 +15688,7 @@ antiRobotDefense(); testing.html#stmtvbr testing.html#tcl
- the - and - operators → changes.html#version_3_38_0 + changes.html#version_3_46_0 lang_expr.html#collateop lang_expr.html#extract releaselog/3_38_0.html @@ -15643,6 +15697,7 @@ antiRobotDefense(); releaselog/3_38_3.html releaselog/3_38_4.html releaselog/3_38_5.html + releaselog/3_46_0.html
- the - operator → json1.html#jobj json1.html#jset json1.html#varg @@ -15686,6 +15741,8 @@ antiRobotDefense(); releaselog/3_43_0.html releaselog/3_43_1.html releaselog/3_43_2.html +
- time-value → lang_datefunc.html +
- time-values → lang_datefunc.html
- timediff SQL function → changes.html#version_3_43_0 releaselog/3_43_0.html releaselog/3_43_1.html @@ -15702,7 +15759,7 @@ antiRobotDefense();
- transaction state → c3ref/txn_state.html capi3ref.html#sqlite3_txn_state
- transactional → fasterthanfs.html -
- treats the CROSS JOIN operator specially → optoverview.html#table_order +
- treats the CROSS JOIN operator specially → optoverview.html#joins queryplanner-ng.html#howtofix
- trigger → changes.html#version_3_45_3 news.html @@ -15808,6 +15865,8 @@ antiRobotDefense(); releaselog/3_38_3.html releaselog/3_38_4.html releaselog/3_38_5.html +
- unixepoch modifier → lang_datefunc.html + lang_datefunc.html#tmval
- unlikely → changes.html#version_3_8_1 changes.html#version_3_8_8 lang_corefunc.html @@ -15852,7 +15911,7 @@ antiRobotDefense(); isolation.html lang.html lang_altertable.html#caution - lang_analyze.html#req + lang_analyze.html#statanal lang_createtable.html#notnullconst lang_createtable.html#primkeyconst lang_createtrigger.html @@ -15977,6 +16036,8 @@ antiRobotDefense();
- Using the SQLite Unlock Notification Feature → c3ref/unlock_notify.html capi3ref.html#sqlite3_unlock_notify compile.html#enable_unlock_notify +
- utc and localtime modifiers → changes.html#version_3_46_0 + releaselog/3_46_0.html
- utc modifier → changes.html#version_3_10_0 deterministic.html#dtexception releaselog/3_10_0.html @@ -16345,6 +16406,7 @@ antiRobotDefense();
- version 3.45.1 → chronology.html
- version 3.45.2 → chronology.html
- version 3.45.3 → chronology.html +
- version 3.46.0 → chronology.html
- version 3.5.0 → 35to36.html c3ref/enable_shared_cache.html c3ref/vfs.html @@ -17089,11 +17151,24 @@ antiRobotDefense(); releaselog/3_7_6.html wal.html#fast
- WHERE clause → lang_select.html#simpleselect +
- WHERE-clause push-down optimization → changes.html#version_3_13_0 + changes.html#version_3_42_0 + changes.html#version_3_46_0 + changes.html#version_3_9_0 + releaselog/3_13_0.html + releaselog/3_42_0.html + releaselog/3_46_0.html + releaselog/3_9_0.html + releaselog/3_9_1.html + releaselog/3_9_2.html + releaselog/3_9_3.html +
- Why SQLite Uses Bytecode → opcode.html
- window chaining → changes.html#version_3_28_0 releaselog/3_28_0.html
- window function → appfunc.html changes.html#version_3_27_2 news.html + optoverview.html#flattening releaselog/3_27_2.html
- Window functions → appfunc.html
- window functions → appfunc.html @@ -17142,6 +17217,7 @@ antiRobotDefense(); windowfunctions.html#wexcls
- window-function-invocation → lang_expr.html#*funcinexpr windowfunctions.html +
- winfunc → lang.html
- WITH → fullsql.html lang_select.html
- WITH clause → changes.html#version_3_23_0 diff --git a/www/doc_keyword_crossref.html b/www/doc_keyword_crossref.html index d01682b..4177a3b 100644 --- a/www/doc_keyword_crossref.html +++ b/www/doc_keyword_crossref.html @@ -115,5 +115,5 @@ antiRobotGo(); } antiRobotDefense(); -
- --insert option - cli.html#arinsup
- --safe command-line option - cli.html#safemode
- --unsafe-testing command-line option - cli.html#testing_mode
- --update option - cli.html#arinsup
- -DHAVE_FDATASYNC - compile.html#fdatasync
- -DHAVE_GMTIME_R - compile.html#gmtime_r
- -DHAVE_ISNAN - compile.html#isnan
- -DHAVE_LOCALTIME_R - compile.html#localtime_r
- -DHAVE_LOCALTIME_S - compile.html#localtime_s
- -DHAVE_MALLOC_USABLE_SIZE - compile.html#malloc_usable_size
- -DHAVE_SQLITE_CONFIG_H - compile.html#sqlite_config_h
- -DHAVE_STRCHRNUL - compile.html#strchrnul
- -DHAVE_UTIME - compile.html#utime
- -DSQLITE_4_BYTE_ALIGNED_MALLOC - compile.html#4_byte_aligned_malloc
- -DSQLITE_ALLOW_COVERING_INDEX_SCAN - compile.html#allow_covering_index_scan
- -DSQLITE_ALLOW_URI_AUTHORITY - compile.html#allow_uri_authority
- -DSQLITE_API - compile.html#api
- -DSQLITE_APICALL - compile.html#apicall
- -DSQLITE_BYTEORDER - compile.html#byteorder
- -DSQLITE_CALLBACK - compile.html#callback
- -DSQLITE_CASE_SENSITIVE_LIKE - compile.html#case_sensitive_like
- -DSQLITE_CDECL - compile.html#cdecl
- -DSQLITE_DEBUG - compile.html#debug
- -DSQLITE_DEFAULT_AUTOMATIC_INDEX - compile.html#default_automatic_index
- -DSQLITE_DEFAULT_AUTOVACUUM - compile.html#default_autovacuum
- -DSQLITE_DEFAULT_CACHE_SIZE - compile.html#default_cache_size
- -DSQLITE_DEFAULT_FILE_FORMAT - compile.html#default_file_format
- -DSQLITE_DEFAULT_FILE_PERMISSIONS - compile.html#default_file_permissions
- -DSQLITE_DEFAULT_FOREIGN_KEYS - compile.html#default_foreign_keys
- -DSQLITE_DEFAULT_JOURNAL_SIZE_LIMIT - compile.html#default_journal_size_limit
- -DSQLITE_DEFAULT_LOCKING_MODE - compile.html#default_locking_mode
- -DSQLITE_DEFAULT_LOOKASIDE - compile.html#default_lookaside
- -DSQLITE_DEFAULT_MEMSTATUS - compile.html#default_memstatus
- -DSQLITE_DEFAULT_MMAP_SIZE - compile.html#default_mmap_size
- -DSQLITE_DEFAULT_PAGE_SIZE - compile.html#default_page_size
- -DSQLITE_DEFAULT_PCACHE_INITSZ - compile.html#default_pcache_initsz
- -DSQLITE_DEFAULT_SYNCHRONOUS - compile.html#default_synchronous
- -DSQLITE_DEFAULT_WAL_AUTOCHECKPOINT - compile.html#default_wal_autocheckpoint
- -DSQLITE_DEFAULT_WAL_SYNCHRONOUS - compile.html#default_wal_synchronous
- -DSQLITE_DEFAULT_WORKER_THREADS - compile.html#default_worker_threads
- -DSQLITE_DIRECT_OVERFLOW_READ - compile.html#direct_overflow_read
- -DSQLITE_DISABLE_DIRSYNC - compile.html#disable_dirsync
- -DSQLITE_DISABLE_FTS3_UNICODE - compile.html#disable_fts3_unicode
- -DSQLITE_DISABLE_FTS4_DEFERRED - compile.html#disable_fts4_deferred
- -DSQLITE_DISABLE_INTRINSIC - compile.html#disable_intrinsic
- -DSQLITE_DISABLE_LFS - compile.html#disable_lfs
- -DSQLITE_DISABLE_PAGECACHE_OVERFLOW_STATS - compile.html#disable_pagecache_overflow_stats
- -DSQLITE_DQS - compile.html#dqs
- -DSQLITE_ENABLE_8_3_NAMES - compile.html#enable_8_3_names
- -DSQLITE_ENABLE_API_ARMOR - compile.html#enable_api_armor
- -DSQLITE_ENABLE_ATOMIC_WRITE - compile.html#enable_atomic_write
- -DSQLITE_ENABLE_BATCH_ATOMIC_WRITE - compile.html#enable_batch_atomic_write
- -DSQLITE_ENABLE_BYTECODE_VTAB - compile.html#enable_bytecode_vtab
- -DSQLITE_ENABLE_COLUMN_METADATA - compile.html#enable_column_metadata
- -DSQLITE_ENABLE_DBPAGE_VTAB - compile.html#enable_dbpage_vtab
- -DSQLITE_ENABLE_DBSTAT_VTAB - compile.html#enable_dbstat_vtab
- -DSQLITE_ENABLE_DESERIALIZE - compile.html#enable_deserialize
- -DSQLITE_ENABLE_EXPLAIN_COMMENTS - compile.html#enable_explain_comments
- -DSQLITE_ENABLE_FTS3 - compile.html#enable_fts3
- -DSQLITE_ENABLE_FTS3_PARENTHESIS - compile.html#enable_fts3_parenthesis
- -DSQLITE_ENABLE_FTS3_TOKENIZER - compile.html#enable_fts3_tokenizer
- -DSQLITE_ENABLE_FTS4 - compile.html#enable_fts4
- -DSQLITE_ENABLE_FTS5 - compile.html#enable_fts5
- -DSQLITE_ENABLE_GEOPOLY - compile.html#enable_geopoly
- -DSQLITE_ENABLE_HIDDEN_COLUMNS - compile.html#enable_hidden_columns
- -DSQLITE_ENABLE_ICU - compile.html#enable_icu
- -DSQLITE_ENABLE_IOTRACE - compile.html#enable_iotrace
- -DSQLITE_ENABLE_JSON1 - compile.html#enable_json1
- -DSQLITE_ENABLE_LOCKING_STYLE - compile.html#enable_locking_style
- -DSQLITE_ENABLE_MATH_FUNCTIONS - compile.html#enable_math_functions
- -DSQLITE_ENABLE_MEMORY_MANAGEMENT - compile.html#enable_memory_management
- -DSQLITE_ENABLE_MEMSYS3 - compile.html#enable_memsys3
- -DSQLITE_ENABLE_MEMSYS5 - compile.html#enable_memsys5
- -DSQLITE_ENABLE_NORMALIZE - compile.html#enable_normalize
- -DSQLITE_ENABLE_NULL_TRIM - compile.html#enable_null_trim
- -DSQLITE_ENABLE_OFFSET_SQL_FUNC - compile.html#enable_offset_sql_func
- -DSQLITE_ENABLE_PREUPDATE_HOOK - compile.html#enable_preupdate_hook
- -DSQLITE_ENABLE_QPSG - compile.html#enable_qpsg
- -DSQLITE_ENABLE_RBU - compile.html#enable_rbu
- -DSQLITE_ENABLE_RTREE - compile.html#enable_rtree
- -DSQLITE_ENABLE_SESSION - compile.html#enable_session
- -DSQLITE_ENABLE_SNAPSHOT - compile.html#enable_snapshot
- -DSQLITE_ENABLE_SORTER_REFERENCES - compile.html#enable_sorter_references
- -DSQLITE_ENABLE_SQLLOG - compile.html#enable_sqllog
- -DSQLITE_ENABLE_STAT2 - compile.html#enable_stat2
- -DSQLITE_ENABLE_STAT3 - compile.html#enable_stat3
- -DSQLITE_ENABLE_STAT4 - compile.html#enable_stat4
- -DSQLITE_ENABLE_STMT_SCANSTATUS - compile.html#enable_stmt_scanstatus
- -DSQLITE_ENABLE_STMTVTAB - compile.html#enable_stmtvtab
- -DSQLITE_ENABLE_TREE_EXPLAIN - compile.html#enable_tree_explain
- -DSQLITE_ENABLE_UNKNOWN_SQL_FUNCTION - compile.html#enable_unknown_sql_function
- -DSQLITE_ENABLE_UNLOCK_NOTIFY - compile.html#enable_unlock_notify
- -DSQLITE_ENABLE_UPDATE_DELETE_LIMIT - compile.html#enable_update_delete_limit
- -DSQLITE_EXTERN - compile.html#extern
- -DSQLITE_EXTRA_DURABLE - compile.html#extra_durable
- -DSQLITE_FTS3_MAX_EXPR_DEPTH - compile.html#fts3_max_expr_depth
- -DSQLITE_HAVE_ISNAN - compile.html#have_isnan
- -DSQLITE_HAVE_ZLIB - compile.html#have_zlib
- -DSQLITE_INTROSPECTION_PRAGMAS - compile.html#introspection_pragmas
- -DSQLITE_JSON_MAX_DEPTH - compile.html#json_max_depth
- -DSQLITE_LIKE_DOESNT_MATCH_BLOBS - compile.html#like_doesnt_match_blobs
- -DSQLITE_MAX_ALLOCATION_SIZE - compile.html#max_allocation_size
- -DSQLITE_MAX_MEMORY - compile.html#max_memory
- -DSQLITE_MAX_MMAP_SIZE - compile.html#max_mmap_size
- -DSQLITE_MAX_SCHEMA_RETRY - compile.html#max_schema_retry
- -DSQLITE_MAX_WORKER_THREADS - compile.html#max_worker_threads
- -DSQLITE_MEMDB_DEFAULT_MAXSIZE - compile.html#memdb_default_maxsize
- -DSQLITE_MEMDEBUG - compile.html#memdebug
- -DSQLITE_MINIMUM_FILE_DESCRIPTOR - compile.html#minimum_file_descriptor
- -DSQLITE_OMIT_ALTERTABLE - compile.html#omit_altertable
- -DSQLITE_OMIT_ANALYZE - compile.html#omit_analyze
- -DSQLITE_OMIT_ATTACH - compile.html#omit_attach
- -DSQLITE_OMIT_AUTHORIZATION - compile.html#omit_authorization
- -DSQLITE_OMIT_AUTOINCREMENT - compile.html#omit_autoincrement
- -DSQLITE_OMIT_AUTOINIT - compile.html#omit_autoinit
- -DSQLITE_OMIT_AUTOMATIC_INDEX - compile.html#omit_automatic_index
- -DSQLITE_OMIT_AUTORESET - compile.html#omit_autoreset
- -DSQLITE_OMIT_AUTOVACUUM - compile.html#omit_autovacuum
- -DSQLITE_OMIT_BETWEEN_OPTIMIZATION - compile.html#omit_between_optimization
- -DSQLITE_OMIT_BLOB_LITERAL - compile.html#omit_blob_literal
- -DSQLITE_OMIT_BTREECOUNT - compile.html#omit_btreecount
- -DSQLITE_OMIT_BUILTIN_TEST - compile.html#omit_builtin_test
- -DSQLITE_OMIT_CASE_SENSITIVE_LIKE_PRAGMA - compile.html#omit_case_sensitive_like_pragma
- -DSQLITE_OMIT_CAST - compile.html#omit_cast
- -DSQLITE_OMIT_CHECK - compile.html#omit_check
- -DSQLITE_OMIT_COMPILEOPTION_DIAGS - compile.html#omit_compileoption_diags
- -DSQLITE_OMIT_COMPLETE - compile.html#omit_complete
- -DSQLITE_OMIT_COMPOUND_SELECT - compile.html#omit_compound_select
- -DSQLITE_OMIT_CTE - compile.html#omit_cte
- -DSQLITE_OMIT_DATETIME_FUNCS - compile.html#omit_datetime_funcs
- -DSQLITE_OMIT_DECLTYPE - compile.html#omit_decltype
- -DSQLITE_OMIT_DEPRECATED - compile.html#omit_deprecated
- -DSQLITE_OMIT_DESERIALIZE - compile.html#omit_deserialize
- -DSQLITE_OMIT_DISKIO - compile.html#omit_diskio
- -DSQLITE_OMIT_EXPLAIN - compile.html#omit_explain
- -DSQLITE_OMIT_FLAG_PRAGMAS - compile.html#omit_flag_pragmas
- -DSQLITE_OMIT_FLOATING_POINT - compile.html#omit_floating_point
- -DSQLITE_OMIT_FOREIGN_KEY - compile.html#omit_foreign_key
- -DSQLITE_OMIT_GENERATED_COLUMNS - compile.html#omit_generated_columns
- -DSQLITE_OMIT_GET_TABLE - compile.html#omit_get_table
- -DSQLITE_OMIT_HEX_INTEGER - compile.html#omit_hex_integer
- -DSQLITE_OMIT_INCRBLOB - compile.html#omit_incrblob
- -DSQLITE_OMIT_INTEGRITY_CHECK - compile.html#omit_integrity_check
- -DSQLITE_OMIT_INTROSPECTION_PRAGMAS - compile.html#omit_introspection_pragmas
- -DSQLITE_OMIT_JSON - compile.html#omit_json
- -DSQLITE_OMIT_LIKE_OPTIMIZATION - compile.html#omit_like_optimization
- -DSQLITE_OMIT_LOAD_EXTENSION - compile.html#omit_load_extension
- -DSQLITE_OMIT_LOCALTIME - compile.html#omit_localtime
- -DSQLITE_OMIT_LOOKASIDE - compile.html#omit_lookaside
- -DSQLITE_OMIT_MEMORYDB - compile.html#omit_memorydb
- -DSQLITE_OMIT_OR_OPTIMIZATION - compile.html#omit_or_optimization
- -DSQLITE_OMIT_PAGER_PRAGMAS - compile.html#omit_pager_pragmas
- -DSQLITE_OMIT_PRAGMA - compile.html#omit_pragma
- -DSQLITE_OMIT_PROGRESS_CALLBACK - compile.html#omit_progress_callback
- -DSQLITE_OMIT_QUICKBALANCE - compile.html#omit_quickbalance
- -DSQLITE_OMIT_REINDEX - compile.html#omit_reindex
- -DSQLITE_OMIT_SCHEMA_PRAGMAS - compile.html#omit_schema_pragmas
- -DSQLITE_OMIT_SCHEMA_VERSION_PRAGMAS - compile.html#omit_schema_version_pragmas
- -DSQLITE_OMIT_SHARED_CACHE - compile.html#omit_shared_cache
- -DSQLITE_OMIT_SUBQUERY - compile.html#omit_subquery
- -DSQLITE_OMIT_TCL_VARIABLE - compile.html#omit_tcl_variable
- -DSQLITE_OMIT_TEMPDB - compile.html#omit_tempdb
- -DSQLITE_OMIT_TRACE - compile.html#omit_trace
- -DSQLITE_OMIT_TRIGGER - compile.html#omit_trigger
- -DSQLITE_OMIT_TRUNCATE_OPTIMIZATION - compile.html#omit_truncate_optimization
- -DSQLITE_OMIT_UTF16 - compile.html#omit_utf16
- -DSQLITE_OMIT_VACUUM - compile.html#omit_vacuum
- -DSQLITE_OMIT_VIEW - compile.html#omit_view
- -DSQLITE_OMIT_VIRTUALTABLE - compile.html#omit_virtualtable
- -DSQLITE_OMIT_WAL - compile.html#omit_wal
- -DSQLITE_OMIT_WINDOWFUNC - compile.html#omit_windowfunc
- -DSQLITE_OMIT_WSD - compile.html#omit_wsd
- -DSQLITE_OMIT_XFER_OPT - compile.html#omit_xfer_opt
- -DSQLITE_OS_OTHER - compile.html#os_other
- -DSQLITE_POWERSAFE_OVERWRITE - compile.html#powersafe_overwrite
- -DSQLITE_PRINTF_PRECISION_LIMIT - compile.html#printf_precision_limit
- -DSQLITE_QUERY_PLANNER_LIMIT - compile.html#query_planner_limit
- -DSQLITE_QUERY_PLANNER_LIMIT_INCR - compile.html#query_planner_limit_incr
- -DSQLITE_REVERSE_UNORDERED_SELECTS - compile.html#reverse_unordered_selects
- -DSQLITE_RTREE_INT_ONLY - compile.html#rtree_int_only
- -DSQLITE_SECURE_DELETE - compile.html#secure_delete
- -DSQLITE_SORTER_PMASZ - compile.html#sorter_pmasz
- -DSQLITE_SOUNDEX - compile.html#soundex
- -DSQLITE_STDCALL - compile.html#stdcall
- -DSQLITE_STMTJRNL_SPILL - compile.html#stmtjrnl_spill
- -DSQLITE_STRICT_SUBTYPE - compile.html#strict_subtype
- -DSQLITE_SYSAPI - compile.html#sysapi
- -DSQLITE_TCLAPI - compile.html#tclapi
- -DSQLITE_TEMP_STORE - compile.html#temp_store
- -DSQLITE_THREADSAFE - compile.html#threadsafe
- -DSQLITE_TRACE_SIZE_LIMIT - compile.html#trace_size_limit
- -DSQLITE_TRUSTED_SCHEMA - compile.html#trusted_schema
- -DSQLITE_UNTESTABLE - compile.html#untestable
- -DSQLITE_USE_ALLOCA - compile.html#use_alloca
- -DSQLITE_USE_FCNTL_TRACE - compile.html#use_fcntl_trace
- -DSQLITE_USE_SEH - compile.html#use_seh
- -DSQLITE_USE_URI - compile.html#use_uri
- -DSQLITE_WIN32_HEAP_CREATE - compile.html#win32_heap_create
- -DSQLITE_WIN32_MALLOC - compile.html#win32_malloc
- -DSQLITE_WIN32_MALLOC_VALIDATE - compile.html#win32_malloc_validate
- -DSQLITE_ZERO_MALLOC - compile.html#zero_malloc
- .archive command - cli.html#sqlar
- .connection - cli.html#dotconn
- .databases - cli.html#dotdatabases
- .databases command - cli.html#dotdatabases
- .dump - cli.html#dump
- .excel - cli.html#dotexcel
- .expert command - cli.html#expert
- .fullschema - cli.html#fullschema
- .import - cli.html#csv
- .import command - cli.html#csv
- .imposter dot-command - imposter.html#dotimposter
- .load command - cli.html#dotload
- .mode - cli.html#dotmode
- .mode quote - cli.html#dotmodequote
- .once - cli.html#dotoutput
- .open - cli.html#dotopen
- .open command - cli.html#dotopen
- .output - cli.html#dotoutput
- .parameter command - cli.html#param
- .read - cli.html#dotread
- .recover dot-command - cli.html#recover
- .schema - cli.html#dschema
- .selftest dot-command - cli.html#selftest
- .sha3sum dot-command - cli.html#sha3sum
- .tables - cli.html#dtables
- 3rd-party fuzzers - testing.html#3pfuzz
- 34to35 - 34to35.html
- 35 Faster Than The Filesystem - fasterthanfs.html
- 35to36 - 35to36.html
- about 200 SQL statements per webpage - np1queryprob.html
- abs - lang_corefunc.html#abs
- abs SQL function - lang_corefunc.html#abs
- ACID - transactional.html
- acos - lang_mathfunc.html#acos
- acos SQL function - lang_mathfunc.html#acos
- acosh - lang_mathfunc.html#acosh
- acosh SQL function - lang_mathfunc.html#acosh
- add column - lang_altertable.html#altertabaddcol
- Adding to Zip - zipfile.html#adding_entries_to_a_zip_archive
- advanced - swarmvtab.html#advanced_usage
- advantages of WAL-mode - wal.html#advantages
- affinities - datatype3.html#affinity
- affinity - datatype3.html#affinity
- affinity in compound VIEWs - datatype3.html#affcompoundview
- Affinity Of Expressions - datatype3.html#expraff
- affshort - aff_short.html
- AFL - testing.html#aflfuzz
- aggfunc - lang_aggfunc.html
- Aggregate Functions - lang_aggfunc.html
- Aggregate functions - lang_aggfunc.html
- aggregate functions - lang_aggfunc.html
- aggregate JSON SQL functions - json1.html#jgroupobjectb
- aggregate SQL functions - lang_aggfunc.html
- aggregate window functions - windowfunctions.html#aggwinfunc
- aggregate-function-invocation - syntax/aggregate-function-invocation.html
- aggregate-function-invocation syntax diagram - syntax/aggregate-function-invocation.html
- alphabetical listing of documents - doclist.html
- ALTER - lang_altertable.html
- ALTER TABLE - lang_altertable.html
- ALTER TABLE ADD COLUMN - lang_altertable.html#altertabaddcol
- ALTER TABLE DROP COLUMN - lang_altertable.html#altertabdropcol
- ALTER TABLE RENAME - lang_altertable.html#altertabrename
- ALTER TABLE RENAME COLUMN - lang_altertable.html#altertabmvcol
- ALTER TABLE RENAME documentation - lang_altertable.html#altertabrename
- alter-table-stmt - syntax/alter-table-stmt.html
- alter-table-stmt syntax diagram - syntax/alter-table-stmt.html
- altertable - lang_altertable.html
- amalgamation - amalgamation.html
- amalgamation tarball - download.html
- American Fuzzy Lop fuzzer - testing.html#aflfuzz
- analysis_limit - pragma.html#pragma_analysis_limit
- analysis_limit pragma - pragma.html#pragma_analysis_limit
- ANALYZE - lang_analyze.html
- analyze - lang_analyze.html
- analyze-stmt - syntax/analyze-stmt.html
- analyze-stmt syntax diagram - syntax/analyze-stmt.html
- appformat - appfileformat.html
- Application File Format - appfileformat.html
- application file format - appfileformat.html
- application file-format - appfileformat.html
- Application ID - fileformat2.html#appid
- application-defined function attacks - appfunc.html#sec
- application-defined SQL function - appfunc.html
- application-defined SQL functions - appfunc.html
- application-defined window functions - windowfunctions.html#udfwinfunc
- application_id - pragma.html#pragma_application_id
- application_id pragma - pragma.html#pragma_application_id
- appreciate the freedom - flextypegood.html
- Appropriate Uses For SQLite - whentouse.html
- approximate ANALYZE - lang_analyze.html#approx
- asin - lang_mathfunc.html#asin
- asin SQL function - lang_mathfunc.html#asin
- asinh - lang_mathfunc.html#asinh
- asinh SQL function - lang_mathfunc.html#asinh
- asynchronous I/O backend - asyncvfs.html
- asynchronous VFS - asyncvfs.html
- atan - lang_mathfunc.html#atan
- atan SQL function - lang_mathfunc.html#atan
- atan2 - lang_mathfunc.html#atan2
- atan2 SQL function - lang_mathfunc.html#atan2
- atanh - lang_mathfunc.html#atanh
- atanh SQL function - lang_mathfunc.html#atanh
- Atomic Commit - atomiccommit.html
- atomic commit - atomiccommit.html
- ATTACH - lang_attach.html
- attach - lang_attach.html
- ATTACH DATABASE - lang_attach.html
- attach-stmt - syntax/attach-stmt.html
- attach-stmt syntax diagram - syntax/attach-stmt.html
- attached - lang_attach.html
- attack resistance - security.html
- authorizer callback - c3ref/set_authorizer.html
- authorizer method - tclsqlite.html#authorizer
- auto modifier - lang_datefunc.html#automod
- auto_vacuum - pragma.html#pragma_auto_vacuum
- auto_vacuum pragma - pragma.html#pragma_auto_vacuum
- autocommit mode - c3ref/get_autocommit.html
- AUTOINCREMENT - autoinc.html
- automated undo/redo stack - undoredo.html
- automatic indexes - optoverview.html#autoindex
- Automatic indexing - optoverview.html#autoindex
- automatic indexing - optoverview.html#autoindex
- automatic_index - pragma.html#pragma_automatic_index
- automatic_index pragma - pragma.html#pragma_automatic_index
- automatically running ANALYZE - lang_analyze.html#autoanalyze
- automerge command - fts3.html#*fts4automergecmd
- auxiliary columns - rtree.html#auxcol
- auxiliary columns in r-tree tables - rtree.html#auxcol
- auxiliary function mapping - fts5.html#sorting_by_auxiliary_function_results
- avg - lang_aggfunc.html#avg
- avg aggregate function - lang_aggfunc.html#avg
- avoiding large WAL files - wal.html#bigwal
- B-tree - fileformat2.html#btree
- B-Trees - fileformat2.html#btree
- backup API - backup.html
- backup method - tclsqlite.html#backup
- bare aggregate terms - lang_select.html#bareagg
- base64 SQL function - cli.html#base64
- base85 SQL function - cli.html#base85
- bcvtab - bytecodevtab.html
- BEGIN - lang_transaction.html
- BEGIN EXCLUSIVE - lang_transaction.html#immediate
- BEGIN IMMEDIATE - lang_transaction.html#immediate
- begin-stmt - syntax/begin-stmt.html
- begin-stmt syntax diagram - syntax/begin-stmt.html
- benefits of using WITHOUT ROWID - withoutrowid.html#bene
- BETWEEN - lang_expr.html#between
- BINARY - datatype3.html#collation
- BINARY collating function - datatype3.html#collation
- binary operators - lang_expr.html#binaryops
- bind_fallback method - tclsqlite.html#bind_fallback
- BLOB handle - c3ref/blob.html
- BLOB handles - c3ref/blob.html
- BLOB I/O performance - intern-v-extern-blob.html
- block sorting - queryplanner.html#partialsort
- books about SQLite - books.html
- boolean datatype - datatype3.html#boolean
- boolean expression - lang_expr.html#booleanexpr
- bound parameter - lang_expr.html#varparam
- bound parameters - lang_expr.html#varparam
- bugs - fts3.html#limitations
- build product names - download.html#encoding
- building a DLL - howtocompile.html#dll
- building the amalgamation - howtocompile.html#amal
- built-in memory allocators - malloc.html#altalloc
- built-in printf - printf.html
- built-in SQL math functions - lang_mathfunc.html
- built-in window functions - windowfunctions.html#builtins
- built-ins - windowfunctions.html#builtins
- builtin window functions - windowfunctions.html#biwinfunc
- busy handler - c3ref/busy_handler.html
- busy method - tclsqlite.html#busy
- busy-handler callback - c3ref/busy_handler.html
- busy_timeout - pragma.html#pragma_busy_timeout
- busy_timeout pragma - pragma.html#pragma_busy_timeout
- byte-order determination rules - c3ref/bind_blob.html#byteorderdeterminationrules
- bytecode - opcode.html
- bytecode and tables_used virtual tables - bytecodevtab.html
- bytecode engine - opcode.html
- bytecode virtual table - bytecodevtab.html
- bytecodes - opcode.html
- C-API function list - c3ref/funclist.html
- C-language Interface - c3ref/intro.html
- cache method - tclsqlite.html#cache
- cache query parameter - uri.html#uricache
- cache_size - pragma.html#pragma_cache_size
- cache_size pragma - pragma.html#pragma_cache_size
- cache_spill - pragma.html#pragma_cache_spill
- cache_spill pragma - pragma.html#pragma_cache_spill
- canonical source code - getthecode.html
- capi3ref - c3ref/intro.html
- capi3ref_funclist - c3ref/funclist.html
- carray - carray.html
- carray table-valued function - carray.html
- CASE expression - lang_expr.html#case
- case_sensitive_like - pragma.html#pragma_case_sensitive_like
- case_sensitive_like pragma - pragma.html#pragma_case_sensitive_like
- CAST - lang_expr.html#castexpr
- cast - lang_expr.html#castexpr
- CAST expression - lang_expr.html#castexpr
- CAST operator - lang_expr.html#castexpr
- categorical listing of SQLite documents - docs.html
- ceil - lang_mathfunc.html#ceil
- ceiling - lang_mathfunc.html#ceil
- cell format summary - fileformat2.html#cellformat
- cell payload - fileformat2.html#cell_payload
- cell_size_check - pragma.html#pragma_cell_size_check
- cell_size_check pragma - pragma.html#pragma_cell_size_check
- cfgerrors - howtocorrupt.html#cfgerr
- change counter - fileformat2.html#chngctr
- changes - lang_corefunc.html#changes
- changes method - tclsqlite.html#changes
- changes SQL function - lang_corefunc.html#changes
- changeset - sessionintro.html#changeset
- changesets - sessionintro.html#changeset
- char - lang_corefunc.html#char
- char SQL function - lang_corefunc.html#char
- CHECK - lang_createtable.html#ckconst
- CHECK constraint - lang_createtable.html#ckconst
- CHECK constraints - lang_createtable.html#ckconst
- checklist - testing.html#cklist
- checkpoint - wal.html#ckpt
- checkpoint mode - c3ref/c_checkpoint_full.html
- checkpoint_fullfsync - pragma.html#pragma_checkpoint_fullfsync
- checkpoint_fullfsync pragma - pragma.html#pragma_checkpoint_fullfsync
- checkpointed - wal.html#ckpt
- checkpointing - wal.html#ckpt
- checksum VFS - cksumvfs.html
- checksum VFS shim - cksumvfs.html
- child key - foreignkeys.html#parentchild
- child table - foreignkeys.html#parentchild
- chronology - chronology.html
- cintro - cintro.html
- cksumvfs - cksumvfs.html
- CLI - cli.html
- clone the entire repository - getthecode.html#clone
- close method - tclsqlite.html#close
- Clustered indexes - withoutrowid.html
- co-routines - optoverview.html#coroutines
- coalesce - lang_corefunc.html#coalesce
- coalesce SQL function - lang_corefunc.html#coalesce
- Code of Conduct - codeofconduct.html
- Code of Ethics - codeofethics.html
- Code of Ethics of the Project Founder - codeofethics.html
- code repositories - download.html#srctree
- COLLATE - lang_createindex.html#collidx
- COLLATE clause - lang_createtable.html#collateclause
- COLLATE clauses - lang_createtable.html#collateclause
- COLLATE constraint - lang_createtable.html#collateclause
- collate method - tclsqlite.html#collate
- COLLATE operator - lang_expr.html#collateop
- collating function - datatype3.html#collation
- collating sequence - datatype3.html#collation
- collating sequences - datatype3.html#collation
- collation - datatype3.html#collation
- collation_list - pragma.html#pragma_collation_list
- collation_list pragma - pragma.html#pragma_collation_list
- collation_needed method - tclsqlite.html#collation_needed
- column access functions - c3ref/column_blob.html
- column affinity - datatype3.html#affinity
- column definition - lang_createtable.html#tablecoldef
- column definitions - lang_createtable.html#tablecoldef
- column-constraint - syntax/column-constraint.html
- column-constraint syntax diagram - syntax/column-constraint.html
- column-def - syntax/column-def.html
- column-def syntax diagram - syntax/column-def.html
- column-name-list - syntax/column-name-list.html
- column-name-list syntax diagram - syntax/column-name-list.html
- Columnar output modes - cli.html#clmnr
- columnar output modes - cli.html#clmnr
- colUsed field - vtab.html#colUsed
- comma option - printf.html#comma
- Command Line Interface - cli.html
- command-line interface - cli.html
- command-line options - cli.html#clopts
- command-line shell - cli.html
- commands - fts3.html#commands
- comment - lang_comment.html
- comment-syntax - syntax/comment-syntax.html
- comment-syntax syntax diagram - syntax/comment-syntax.html
- comments - lang_comment.html
- COMMIT - lang_transaction.html
- commit-stmt - syntax/commit-stmt.html
- commit-stmt syntax diagram - syntax/commit-stmt.html
- commit_hook method - tclsqlite.html#commit_hook
- common table expressions - lang_with.html
- common-table-expression - syntax/common-table-expression.html
- common-table-expression syntax diagram - syntax/common-table-expression.html
- comparison affinity rules - datatype3.html#compaff
- comparison expressions - datatype3.html#comparisons
- comparison with fts4 - fts5.html#appendix_a
- compilation - swarmvtab.html#compiling_and_using_swarmvtab
- compile fts - fts3.html#compiling_and_enabling_fts3_and_fts4
- compile loadable extensions - loadext.html#build
- compile-time options - compile.html
- compile_options - pragma.html#pragma_compile_options
- compile_options pragma - pragma.html#pragma_compile_options
- Compiling Loadable Extensions - loadext.html#build
- compiling the CLI - howtocompile.html#cli
- compiling the TCL interface - howtocompile.html#tcl
- complete list of SQLite releases - changes.html
- complete method - tclsqlite.html#complete
- COMPLETION - completion.html
- COMPLETION extension - completion.html
- COMPLETION table-valued function - completion.html
- compound query - lang_select.html#compound
- compound SELECT - lang_select.html#compound
- compound select - lang_select.html#compound
- compound SELECTs - lang_select.html#compound
- compound-operator - syntax/compound-operator.html
- compound-operator syntax diagram - syntax/compound-operator.html
- compound-select-stmt - syntax/compound-select-stmt.html
- compound-select-stmt syntax diagram - syntax/compound-select-stmt.html
- compressed FTS4 content - fts3.html#*fts4compression
- compute the Mandelbrot set - lang_with.html#mandelbrot
- computed columns - gencol.html
- concat - lang_corefunc.html#concat
- concat SQL function - lang_corefunc.html#concat
- concat_ws - lang_corefunc.html#concat_ws
- concat_ws SQL function - lang_corefunc.html#concat_ws
- config method - tclsqlite.html#config
- configurable edit distances - spellfix1.html#configeditdist
- configuration option - c3ref/c_config_covering_index_scan.html
- conflict - lang_conflict.html
- conflict clause - lang_conflict.html
- conflict resolution algorithm - lang_conflict.html
- conflict resolution mode - c3ref/c_fail.html
- conflict-clause - syntax/conflict-clause.html
- conflict-clause syntax diagram - syntax/conflict-clause.html
- constant-propagation optimization - optoverview.html#constprop
- contentless fts4 tables - fts3.html#_contentless_fts4_tables_
- contentless-delete - fts5.html#clssdeltab
- copy method - tclsqlite.html#copy
- copyright - copyright.html
- Core Functions - lang_corefunc.html
- core URI query parameters - c3ref/open.html#coreuriqueryparameters
- corefunc - lang_corefunc.html
- coreqp - uri.html#coreqp
- correlated subqueries - lang_expr.html#cosub
- cos - lang_mathfunc.html#cos
- cos SQL function - lang_mathfunc.html#cos
- cosh - lang_mathfunc.html#cosh
- cosh SQL function - lang_mathfunc.html#cosh
- count - lang_aggfunc.html#count
- count aggregate function - lang_aggfunc.html#count
- count_changes - pragma.html#pragma_count_changes
- count_changes pragma - pragma.html#pragma_count_changes
- coverage testing vs. fuzz testing - testing.html#tension
- covering index - queryplanner.html#covidx
- covering indexes - queryplanner.html#covidx
- covering indices - queryplanner.html#covidx
- CPU cycles used - cpu.html
- CPU performance measurement - cpu.html
- CREATE INDEX - lang_createindex.html
- CREATE TABLE - lang_createtable.html
- CREATE TABLE AS - lang_createtable.html#createtabas
- CREATE TRIGGER - lang_createtrigger.html
- CREATE VIEW - lang_createview.html
- CREATE VIRTUAL TABLE - lang_createvtab.html
- create-index-stmt - syntax/create-index-stmt.html
- create-index-stmt syntax diagram - syntax/create-index-stmt.html
- create-table-stmt - syntax/create-table-stmt.html
- create-table-stmt syntax diagram - syntax/create-table-stmt.html
- create-trigger-stmt - syntax/create-trigger-stmt.html
- create-trigger-stmt syntax diagram - syntax/create-trigger-stmt.html
- create-view-stmt - syntax/create-view-stmt.html
- create-view-stmt syntax diagram - syntax/create-view-stmt.html
- create-virtual-table-stmt - syntax/create-virtual-table-stmt.html
- create-virtual-table-stmt syntax diagram - syntax/create-virtual-table-stmt.html
- createindex - lang_createindex.html
- createtable - lang_createtable.html
- createtrigger - lang_createtrigger.html
- createview - lang_createview.html
- createvtab - lang_createvtab.html
- crew - crew.html
- CROSS JOIN - optoverview.html#crossjoin
- csv - csv.html
- CSV export - cli.html#csvout
- CSV import - cli.html#csv
- CSV virtual table - csv.html
- cte-table-name - syntax/cte-table-name.html
- cte-table-name syntax diagram - syntax/cte-table-name.html
- custom auxiliary functions - fts5.html#_custom_auxiliary_functions_api_reference_
- custom builds - custombuild.html
- custom r-tree queries - rtree.html#customquery
- custom SQL function - appfunc.html
- custom SQL functions - appfunc.html
- custom tokenizers - fts5.html#custom_tokenizers
- custom virtual tables - vtab.html#customvtab
- CVEs - cves.html
- Dan Kennedy - crew.html#dan
- data container - whentouse.html#container
- data transfer format - whentouse.html#wireproto
- data_store_directory - pragma.html#pragma_data_store_directory
- data_store_directory pragma - pragma.html#pragma_data_store_directory
- data_version - pragma.html#pragma_data_version
- data_version pragma - pragma.html#pragma_data_version
- database as container object - sqlar.html#dbasobj
- database as object - sqlar.html#dbasobj
- database connection - c3ref/sqlite3.html
- database connections - c3ref/sqlite3.html
- database corruption caused by inconsistent use of 83 filenames - shortnames.html#db83corrupt
- database filename aliasing - howtocorrupt.html#alias
- database header - fileformat2.html#database_header
- database_list - pragma.html#pragma_database_list
- database_list pragma - pragma.html#pragma_database_list
- datatype - datatype3.html
- date - lang_datefunc.html#dttm
- date and time datatype - datatype3.html#datetime
- Date And Time Functions - lang_datefunc.html
- date and time functions - lang_datefunc.html
- date SQL function - lang_datefunc.html#dttm
- date/time modifiers - lang_datefunc.html#dtmods
- date/time special case - deterministic.html#dtexception
- datefunc - lang_datefunc.html
- datetime - lang_datefunc.html#dttm
- datetime SQL function - lang_datefunc.html#dttm
- dbghints - debugging.html
- dbhash - dbhash.html
- dbhash.exe - dbhash.html
- dbsqlfuzz - testing.html#dbsqlfuzz
- dbstat - dbstat.html
- DBSTAT aggregated mode - dbstat.html#dbstatagg
- DBSTAT virtual table - dbstat.html
- dbstat virtual table - dbstat.html
- debugging hints - debugging.html
- debugging memory allocator - malloc.html#memdebug
- decimal extension - floatingpoint.html#decext
- decision checklist - whentouse.html#dbcklst
- DEFAULT clauses - lang_createtable.html#dfltval
- default column value - lang_createtable.html#dfltval
- default memory allocator - malloc.html#defaultalloc
- default value - lang_createtable.html#dfltval
- default_cache_size - pragma.html#pragma_default_cache_size
- default_cache_size pragma - pragma.html#pragma_default_cache_size
- defense against dark arts - security.html
- defense against the dark arts - security.html
- defensive code - testing.html#defcode
- defer_foreign_keys - pragma.html#pragma_defer_foreign_keys
- defer_foreign_keys pragma - pragma.html#pragma_defer_foreign_keys
- degrees - lang_mathfunc.html#degrees
- degrees SQL function - lang_mathfunc.html#degrees
- DELETE - lang_delete.html
- delete - lang_delete.html
- delete-stmt - syntax/delete-stmt.html
- delete-stmt syntax diagram - syntax/delete-stmt.html
- delete-stmt-limited - syntax/delete-stmt-limited.html
- delete-stmt-limited syntax diagram - syntax/delete-stmt-limited.html
- deletemerge - fts5.html#the_deletemerge_configuration_option
- DELETEs - lang_delete.html
- deleting a hot journal - howtocorrupt.html#delhotjrnl
- deprecated - c3ref/experimental.html
- DESC - lang_createindex.html#descidx
- descending index - lang_createindex.html#descidx
- descending indexes - lang_createindex.html#descidx
- descending indices - lang_createindex.html#descidx
- deserialize method - tclsqlite.html#deserialize
- DETACH - lang_detach.html
- detach - lang_detach.html
- DETACH DATABASE - lang_detach.html
- detach-stmt - syntax/detach-stmt.html
- detach-stmt syntax diagram - syntax/detach-stmt.html
- deterministic function - deterministic.html
- deterministic functions - deterministic.html
- deterministic SQL functions - deterministic.html
- DISTINCT - lang_select.html#distinct
- doclist - doclist.html
- documents by category - docs.html
- dot-commands - cli.html#dotcmd
- double-quoted string literal - quirks.html#dblquote
- double-quoted string misfeature - quirks.html#dblquote
- download page - download.html
- drop column - lang_altertable.html#altertabdropcol
- DROP INDEX - lang_dropindex.html
- DROP TABLE - lang_droptable.html
- DROP TRIGGER - lang_droptrigger.html
- DROP VIEW - lang_dropview.html
- drop-index-stmt - syntax/drop-index-stmt.html
- drop-index-stmt syntax diagram - syntax/drop-index-stmt.html
- drop-table-stmt - syntax/drop-table-stmt.html
- drop-table-stmt syntax diagram - syntax/drop-table-stmt.html
- drop-trigger-stmt - syntax/drop-trigger-stmt.html
- drop-trigger-stmt syntax diagram - syntax/drop-trigger-stmt.html
- drop-view-stmt - syntax/drop-view-stmt.html
- drop-view-stmt syntax diagram - syntax/drop-view-stmt.html
- dropindex - lang_dropindex.html
- droptable - lang_droptable.html
- droptrigger - lang_droptrigger.html
- dropview - lang_dropview.html
- dynamic string - c3ref/str.html
- dynamic typing - datatype3.html
- edit SQL function - cli.html#editfunc
- editdist3 - spellfix1.html#editdist3
- embedded - serverless.html
- empty_result_callbacks - pragma.html#pragma_empty_result_callbacks
- empty_result_callbacks pragma - pragma.html#pragma_empty_result_callbacks
- enable_load_extension method - tclsqlite.html#enable_load_extension
- encoding - pragma.html#pragma_encoding
- encoding pragma - pragma.html#pragma_encoding
- enhanced query syntax - fts3.html#_set_operations_using_the_enhanced_query_syntax
- eponymous virtual table - vtab.html#epovtab
- eponymous virtual tables - vtab.html#epovtab
- eponymous-only virtual table - vtab.html#epoonlyvtab
- eponymous-only virtual tables - vtab.html#epoonlyvtab
- eqp-or-opt - eqp.html#or-opt
- errlog - errlog.html
- error code - rescode.html
- error codes - rescode.html
- error log - errlog.html
- errorcode method - tclsqlite.html#errorcode
- ESCAPE - lang_expr.html#like
- eval method - tclsqlite.html#eval
- EXCLUDE clause - windowfunctions.html#wexcls
- exclude clause - windowfunctions.html#wexcls
- EXCLUSIVE - lockingv3.html#excl_lock
- EXCLUSIVE lock - lockingv3.html#excl_lock
- exclusive lock - lockingv3.html#excl_lock
- EXCLUSIVE locking mode - pragma.html#pragma_locking_mode
- exclusive locking mode - pragma.html#pragma_locking_mode
- exists method - tclsqlite.html#exists
- EXISTS operator - lang_expr.html#exists_op
- exp - lang_mathfunc.html#exp
- exp SQL function - lang_mathfunc.html#exp
- experimental - c3ref/experimental.html
- experimental memory allocators - malloc.html#memsysx
- EXPLAIN - lang_explain.html
- explain - lang_explain.html
- EXPLAIN QUERY PLAN - eqp.html
- explain query plan - eqp.html
- export to excel - cli.html#exexcel*
- export to TSV - cli.html#extsv*
- expr - syntax/expr.html
- expr syntax diagram - syntax/expr.html
- expression - lang_expr.html
- expression affinity - datatype3.html#expraff
- expression index - expridx.html
- expression indexes - expridx.html
- expression syntax - lang_expr.html
- ext-v-prim - rescode.html#pve
- extended error code - rescode.html#extrc
- extended error codes - rescode.html#extrc
- extended result code - rescode.html#extrc
- extended result code definitions - c3ref/c_abort_rollback.html
- extended result codes - rescode.html#extrc
- Extending FTS5 - fts5.html#extending_fts5
- extension loading - loadext.html
- external content fts4 tables - fts3.html#_external_content_fts4_tables_
- extract - lang_expr.html#extract
- factored-select-stmt - syntax/factored-select-stmt.html
- factored-select-stmt syntax diagram - syntax/factored-select-stmt.html
- faster than the filesystem - fasterthanfs.html
- file control - c3ref/file_control.html
- file control opcode - c3ref/c_fcntl_begin_atomic_write.html
- file control opcodes - c3ref/c_fcntl_begin_atomic_write.html
- file format - fileformat2.html
- file format version numbers - fileformat2.html#vnums
- file I/O functions - cli.html#fileio
- file locking and concurrency control - lockingv3.html
- file locking states - lockingv3.html#locking
- file-format benefits - aff_short.html
- filesystem corruption - howtocorrupt.html#fscorruption
- FILTER clause on aggregate functions - lang_aggfunc.html#aggfilter
- filter-clause - syntax/filter-clause.html
- filter-clause syntax diagram - syntax/filter-clause.html
- flattened - optoverview.html#flattening
- flattening optimization - optoverview.html#flattening
- flexible type system - datatype3.html
- Flexible typing is a feature - flextypegood.html
- floor - lang_mathfunc.html#floor
- floor SQL function - lang_mathfunc.html#floor
- footprint - footprint.html
- foreign key actions - foreignkeys.html#fk_actions
- foreign key constraint - foreignkeys.html
- FOREIGN KEY constraints - foreignkeys.html
- foreign key constraints - foreignkeys.html
- foreign key constraints are enabled - foreignkeys.html#fk_enable
- foreign-key-clause - syntax/foreign-key-clause.html
- foreign-key-clause syntax diagram - syntax/foreign-key-clause.html
- foreign_key_check - pragma.html#pragma_foreign_key_check
- foreign_key_check pragma - pragma.html#pragma_foreign_key_check
- foreign_key_list - pragma.html#pragma_foreign_key_list
- foreign_key_list pragma - pragma.html#pragma_foreign_key_list
- foreign_keys - pragma.html#pragma_foreign_keys
- foreign_keys pragma - pragma.html#pragma_foreign_keys
- format - lang_corefunc.html#format
- format SQL function - lang_corefunc.html#format
- forum - support.html#fx
- frame boundary - windowfunctions.html#frameboundary
- frame specification - windowfunctions.html#framespec
- frame type - windowfunctions.html#frametype
- frame-spec - syntax/frame-spec.html
- frame-spec syntax diagram - syntax/frame-spec.html
- frames - windowfunctions.html#framespec
- free-page list - fileformat2.html#freelist
- freelist - fileformat2.html#freelist
- freelist_count - pragma.html#pragma_freelist_count
- freelist_count pragma - pragma.html#pragma_freelist_count
- FROM clause - lang_select.html#fromclause
- FTS auxiliary functions - fts3.html#snippet
- FTS hidden column - fts3.html#hiddencol
- FTS MATCH - fts3.html#full_text_index_queries
- FTS shadow tables - fts3.html#*shadowtab
- FTS3 - fts3.html
- fts3 - fts3.html
- fts3_tokenizer - fts3.html#f3tknzr
- fts3tokenize - fts3.html#fts3tok
- fts3tokenize virtual table - fts3.html#fts3tok
- FTS4 - fts3.html#fts4
- FTS4 automerge command - fts3.html#*fts4automergecmd
- FTS4 commands - fts3.html#*cmds
- fts4 compress option - fts3.html#the_compress_and_uncompress_options
- FTS4 content option - fts3.html#*fts4content
- fts4 content option - fts3.html#the_content_option_
- FTS4 integrity-check command - fts3.html#*fts4ickcmd
- FTS4 languageid option - fts3.html#*fts4languageid
- fts4 languageid option - fts3.html#the_languageid_option
- FTS4 matchinfo option - fts3.html#fts4matchinfo
- fts4 matchinfo option - fts3.html#the_matchinfo_option
- FTS4 merge command - fts3.html#*fts4mergecmd
- FTS4 notindexed option - fts3.html#fts4notindexed
- fts4 notindexed option - fts3.html#the_notindexed_option
- FTS4 optimize command - fts3.html#*fts4optcmd
- FTS4 options - fts3.html#fts4_options
- FTS4 order option - fts3.html#fts4order
- FTS4 prefix option - fts3.html#fts4prefix
- fts4 prefix option - fts3.html#the_prefix_option
- FTS4 rebuild command - fts3.html#*fts4rebuidcmd
- fts4aux - fts3.html#fts4aux
- fts4aux languageid column - fts3.html#f4alid
- FTS5 - fts5.html
- fts5 - fts5.html
- FTS5 automerge option - fts5.html#the_automerge_configuration_option
- FTS5 auxiliary functions - fts5.html#_auxiliary_functions_
- FTS5 bm25 - fts5.html#the_bm25_function
- FTS5 boolean operators - fts5.html#fts5_boolean_operators
- FTS5 building - fts5.html#compiling_and_using_fts5
- FTS5 column filters - fts5.html#fts5_column_filters
- FTS5 columnsize option - fts5.html#the_columnsize_option
- FTS5 content option - fts5.html#external_content_and_contentless_tables
- FTS5 contentless tables - fts5.html#contentless_tables
- FTS5 contentless-delete tables - fts5.html#contentless_delete_tables
- FTS5 CREATE TABLE Options - fts5.html#fts5_table_creation_and_initialization
- FTS5 custom auxiliary functions - fts5.html#custom_auxiliary_functions
- FTS5 delete command - fts5.html#the_delete_command
- FTS5 delete-all command - fts5.html#the_delete_all_command
- FTS5 detail option - fts5.html#the_detail_option
- FTS5 external content pitfalls - fts5.html#external_content_table_pitfalls
- FTS5 external content tables - fts5.html#external_content_tables
- FTS5 highlight - fts5.html#the_highlight_function
- FTS5 initial token - fts5.html#carrotq
- FTS5 initial token queries - fts5.html#fts5_initial_token_queries
- FTS5 merge command - fts5.html#the_merge_command
- FTS5 NEAR queries - fts5.html#fts5_near_queries
- FTS5 optimize command - fts5.html#the_optimize_command
- FTS5 pgsz option - fts5.html#the_pgsz_configuration_option
- FTS5 Phrases - fts5.html#fts5_phrases
- FTS5 prefix indexes - fts5.html#prefix_indexes
- FTS5 prefix queries - fts5.html#fts5_prefix_queries
- FTS5 query syntax - fts5.html#full_text_query_syntax
- FTS5 rank configuration option - fts5.html#the_rank_configuration_option
- FTS5 rebuild command - fts5.html#the_rebuild_command
- FTS5 secure-delete command - fts5.html#the_secure_delete_configuration_option
- fts5 shadow tables - fts5.html#fts5shadowtables
- FTS5 snippet - fts5.html#the_snippet_function
- FTS5 Strings - fts5.html#fts5_strings
- fts5 technical differences - fts5.html#_summary_of_technical_differences_
- FTS5 tokendata option - fts5.html#the_tokendata_option
- FTS5 tokenizers - fts5.html#tokenizers
- FTS5 usermerge option - fts5.html#the_usermerge_configuration_option
- fts5vocab - fts5.html#the_fts5vocab_virtual_table_module
- FULL JOIN - lang_select.html#fulljoin
- FULL OUTER JOIN - lang_select.html#fulljoin
- Full-featured SQL - fullsql.html
- full-featured SQL - fullsql.html
- full-text search - fts3.html
- full_column_names - pragma.html#pragma_full_column_names
- full_column_names pragma - pragma.html#pragma_full_column_names
- fullfsync - pragma.html#pragma_fullfsync
- fullfsync pragma - pragma.html#pragma_fullfsync
- function creation routines - c3ref/create_function.html
- function method - tclsqlite.html#function
- function-arguments - syntax/function-arguments.html
- function-arguments syntax diagram - syntax/function-arguments.html
- function_list - pragma.html#pragma_function_list
- function_list pragma - pragma.html#pragma_function_list
- functions within expressions - lang_expr.html#*funcinexpr
- fuzz testing - testing.html#fuzztesting
- fuzzcheck - testing.html#fuzzcheck
- generalized ALTER TABLE procedure - lang_altertable.html#otheralter
- generate_series - series.html
- generated column - gencol.html
- Generated columns - gencol.html
- generated columns - gencol.html
- GEOPOLY - geopoly.html
- geopoly - geopoly.html
- Geopoly extension - geopoly.html
- Geopoly module - geopoly.html
- geopoly_area - geopoly.html#garea
- geopoly_bbox - geopoly.html#gbbox
- geopoly_blob - geopoly.html#gblob
- geopoly_ccw - geopoly.html#ccw
- geopoly_contains_point - geopoly.html#gpoint
- geopoly_group_bbox - geopoly.html#gbbox
- geopoly_json - geopoly.html#gjson
- geopoly_overlap - geopoly.html#goverlap
- geopoly_regular - geopoly.html#regpoly
- geopoly_svg - geopoly.html#gsvg
- geopoly_within - geopoly.html#gwithin
- geopoly_xform - geopoly.html#xform
- get the canonical source code - getthecode.html
- GLOB - lang_expr.html#glob
- glob - lang_corefunc.html#glob
- glob SQL function - lang_corefunc.html#glob
- GROUP BY - lang_select.html#resultset
- GROUP BY clause - lang_select.html#resultset
- group_concat - lang_aggfunc.html#group_concat
- group_concat aggregate function - lang_aggfunc.html#group_concat
- GROUPS frames - windowfunctions.html#grouptype
- hard_heap_limit - pragma.html#pragma_hard_heap_limit
- hard_heap_limit pragma - pragma.html#pragma_hard_heap_limit
- hash join - optoverview.html#hashjoin
- HAVE_FDATASYNC - compile.html#fdatasync
- HAVE_GMTIME_R - compile.html#gmtime_r
- HAVE_ISNAN - compile.html#isnan
- HAVE_LOCALTIME_R - compile.html#localtime_r
- HAVE_LOCALTIME_S - compile.html#localtime_s
- HAVE_MALLOC_USABLE_SIZE - compile.html#malloc_usable_size
- HAVE_SQLITE_CONFIG_H - compile.html#sqlite_config_h
- HAVE_STRCHRNUL - compile.html#strchrnul
- HAVE_UTIME - compile.html#utime
- HAVING - lang_select.html#resultset
- HAVING clause - lang_select.html#resultset
- hazards of upgrading to the NGQP - queryplanner-ng.html#hazards
- hex - lang_corefunc.html#hex
- hex SQL function - lang_corefunc.html#hex
- hexadecimal integer literals - lang_expr.html#hexint
- hexadecimal integers - lang_expr.html#hexint
- hidden column - vtab.html#hiddencol
- hidden columns - vtab.html#hiddencol
- high-reliability - hirely.html
- Hipp - crew.html
- host parameter - c3ref/bind_blob.html
- host parameter name - c3ref/bind_blob.html
- host parameters - c3ref/bind_blob.html
- hot journal - fileformat2.html#hotjrnl
- hot journal files - fileformat2.html#hotjrnl
- how collation is determined - datatype3.html#colrules
- How SQL Works - howitworks.html
- How SQLite Works - howitworks.html
- how to compile - howtocompile.html
- How To Compile SQLite - howtocompile.html
- how to corrupt - howtocorrupt.html
- how to corrupt a database - useovernet.html
- How To Corrupt Your Database Files - lockingv3.html#how_to_corrupt
- how vacuum works - lang_vacuum.html#howvacuumworks
- IEEE 754 floating point values are approximations - floatingpoint.html#fpapprox
- ieee754 extension - floatingpoint.html#ieee754ext
- ieee754 function - floatingpoint.html#ieee754
- ieee754_exponent function - floatingpoint.html#ieee754m
- ieee754_from_blob function - floatingpoint.html#ieee754b
- ieee754_mantissa function - floatingpoint.html#ieee754m
- ieee754_to_blob function - floatingpoint.html#ieee754b
- ifnull - lang_corefunc.html#ifnull
- ifnull SQL function - lang_corefunc.html#ifnull
- ignore_check_constraints - pragma.html#pragma_ignore_check_constraints
- ignore_check_constraints pragma - pragma.html#pragma_ignore_check_constraints
- iif - lang_corefunc.html#iif
- iif SQL function - lang_corefunc.html#iif
- immutable query parameter - uri.html#uriimmutable
- imposter tables - imposter.html
- IN operator - lang_expr.html#in_op
- in-header database size - fileformat2.html#filesize
- in-memory database - inmemorydb.html
- in-memory databases - inmemorydb.html
- in-memory shared cache database - inmemorydb.html#sharedmemdb
- in-memory shared-cache - sharedcache.html#inmemsharedcache
- incrblob method - tclsqlite.html#incrblob
- increase in the default page size - pgszchng2016.html
- incremental_vacuum - pragma.html#pragma_incremental_vacuum
- incremental_vacuum pragma - pragma.html#pragma_incremental_vacuum
- index b-tree - fileformat2.html#btypes
- index_info - pragma.html#pragma_index_info
- index_info pragma - pragma.html#pragma_index_info
- index_list - pragma.html#pragma_index_list
- index_list pragma - pragma.html#pragma_index_list
- index_xinfo - pragma.html#pragma_index_xinfo
- index_xinfo pragma - pragma.html#pragma_index_xinfo
- INDEXED BY - lang_indexedby.html
- indexed expression - expridx.html
- indexed expressions - expridx.html
- indexed-column - syntax/indexed-column.html
- indexed-column syntax diagram - syntax/indexed-column.html
- Indexes - lang_createindex.html
- Indexes On Expressions - expridx.html
- indexes on expressions - expridx.html
- indexing - queryplanner.html
- indexing tutorial - queryplanner.html
- INSERT - lang_insert.html
- insert - lang_insert.html
- insert-stmt - syntax/insert-stmt.html
- insert-stmt syntax diagram - syntax/insert-stmt.html
- INSERTs - lang_insert.html
- INSTEAD OF - lang_createtrigger.html#instead_of_trigger
- INSTEAD OF trigger - lang_createtrigger.html#instead_of_trigger
- instr - lang_corefunc.html#instr
- instr SQL function - lang_corefunc.html#instr
- INTEGER PRIMARY KEY - lang_createtable.html#rowid
- integer-valued r-trees - rtree.html#intrtree
- integrity_check - pragma.html#pragma_integrity_check
- integrity_check pragma - pragma.html#pragma_integrity_check
- internal index - fileformat2.html#intschema
- internal indexes - fileformat2.html#intschema
- internal schema object - fileformat2.html#intschema
- internal schema objects - fileformat2.html#intschema
- internal table - fileformat2.html#intschema
- internal tables - fileformat2.html#intschema
- Internal Versus External BLOBs - intern-v-extern-blob.html
- interrupt method - tclsqlite.html#interrupt
- invalid UTF - invalidutf.html
- IS DISTINCT FROM - lang_expr.html#isdf
- IS NOT DISTINCT FROM - lang_expr.html#isdf
- IS NOT operator - lang_expr.html#isisnot
- IS operator - lang_expr.html#isisnot
- isolation - isolation.html
- jfuzz - testing.html#dbsqlfuzz
- join order - optoverview.html#table_order
- join-clause - syntax/join-clause.html
- join-clause syntax diagram - syntax/join-clause.html
- join-constraint - syntax/join-constraint.html
- join-constraint syntax diagram - syntax/join-constraint.html
- join-operator - syntax/join-operator.html
- join-operator syntax diagram - syntax/join-operator.html
- journal_mode - pragma.html#pragma_journal_mode
- journal_mode pragma - pragma.html#pragma_journal_mode
- journal_size_limit - pragma.html#pragma_journal_size_limit
- journal_size_limit pragma - pragma.html#pragma_journal_size_limit
- json - json1.html#jmini
- JSON BLOB input bug - json1.html#jblobbug
- JSON function path arguments - json1.html#jsonpath
- JSON paths - json1.html#jsonpath
- json SQL function - json1.html#jmini
- JSON SQL functions - json1.html
- json1 - json1.html
- JSON5 - json1.html#json5
- JSON5 extensions - json1.html#json5
- json_array - json1.html#jarray
- json_array SQL function - json1.html#jarray
- json_array_length - json1.html#jarraylen
- json_array_length SQL function - json1.html#jarraylen
- json_each - json1.html#jeach
- json_each table-valued function - json1.html#jeach
- json_error_position - json1.html#jerr
- json_error_position SQL function - json1.html#jerr
- json_extract - json1.html#jex
- json_extract SQL function - json1.html#jex
- json_group_array - json1.html#jgrouparray
- json_group_array SQL function - json1.html#jgrouparray
- json_group_object - json1.html#jgroupobject
- json_group_object SQL function - json1.html#jgroupobject
- json_insert - json1.html#jins
- json_insert SQL function - json1.html#jins
- json_object - json1.html#jobj
- json_object SQL function - json1.html#jobj
- json_patch - json1.html#jpatch
- json_patch SQL function - json1.html#jpatch
- json_quote - json1.html#jquote
- json_quote SQL function - json1.html#jquote
- json_remove - json1.html#jrm
- json_remove SQL function - json1.html#jrm
- json_replace - json1.html#jrepl
- json_replace SQL function - json1.html#jrepl
- json_set - json1.html#jset
- json_set SQL function - json1.html#jset
- json_tree - json1.html#jtree
- json_tree table-valued function - json1.html#jtree
- json_type - json1.html#jtype
- json_type SQL function - json1.html#jtype
- json_valid - json1.html#jvalid
- json_valid SQL function - json1.html#jvalid
- JSONB - json1.html#jsonbx
- jsonb - json1.html#jminib
- jsonb SQL function - json1.html#jminib
- jsonb_array - json1.html#jarrayb
- jsonb_array SQL function - json1.html#jarrayb
- jsonb_extract - json1.html#jexb
- jsonb_extract SQL function - json1.html#jexb
- jsonb_group_array - json1.html#jgrouparrayb
- jsonb_group_array SQL function - json1.html#jgrouparrayb
- jsonb_group_object - json1.html#jgroupobjectb
- jsonb_group_object SQL function - json1.html#jgroupobjectb
- jsonb_insert - json1.html#jinsb
- jsonb_insert SQL function - json1.html#jinsb
- jsonb_object - json1.html#jobjb
- jsonb_object SQL function - json1.html#jobjb
- jsonb_patch - json1.html#jpatchb
- jsonb_patch SQL function - json1.html#jpatchb
- jsonb_remove - json1.html#jrmb
- jsonb_remove SQL function - json1.html#jrmb
- jsonb_replace - json1.html#jreplb
- jsonb_replace SQL function - json1.html#jreplb
- jsonb_set - json1.html#jsetb
- jsonb_set SQL function - json1.html#jsetb
- julianday - lang_datefunc.html#jlndy
- julianday modifier - lang_datefunc.html#jdmod
- julianday SQL function - lang_datefunc.html#jlndy
- Kennedy - crew.html
- keyword index - keyword_index.html
- keywords - lang_keywords.html
- langexpr - lang_expr.html
- langindexedby - lang_indexedby.html
- langkeywords - lang_keywords.html
- langreplace - lang_replace.html
- languageid - fts3.html#*fts4languageid
- langupdate - lang_update.html
- langvacuum - lang_vacuum.html
- large WAL files - wal.html#bigwal
- last_insert_rowid - lang_corefunc.html#last_insert_rowid
- last_insert_rowid method - tclsqlite.html#last_insert_rowid
- last_insert_rowid SQL function - lang_corefunc.html#last_insert_rowid
- LEFT JOIN strength reduction optimization - optoverview.html#leftjoinreduction
- legacy_alter_table - pragma.html#pragma_legacy_alter_table
- legacy_alter_table pragma - pragma.html#pragma_legacy_alter_table
- legacy_file_format - pragma.html#pragma_legacy_file_format
- legacy_file_format pragma - pragma.html#pragma_legacy_file_format
- Lemon - lemon.html
- Lemon LALR parser generator - lemon.html
- Lemon parser generator - lemon.html
- length - lang_corefunc.html#length
- length SQL function - lang_corefunc.html#length
- library size - footprint.html
- license - copyright.html
- LIKE - lang_expr.html#like
- like - lang_corefunc.html#like
- LIKE optimization - optoverview.html#like_opt
- like SQL function - lang_corefunc.html#like
- likelihood - lang_corefunc.html#likelihood
- likelihood SQL function - lang_corefunc.html#likelihood
- likely - lang_corefunc.html#likely
- likely SQL function - lang_corefunc.html#likely
- LIMIT - lang_select.html#limitoffset
- limit categories - c3ref/c_limit_attached.html
- limit category - c3ref/c_limit_attached.html
- limits - limits.html
- list of current bytecodes - opcode.html#codes
- list of virtual tables - vtablist.html
- literal value - lang_expr.html#litvalue
- literal-value - syntax/literal-value.html
- literal-value syntax diagram - syntax/literal-value.html
- ln - lang_mathfunc.html#ln
- ln SQL function - lang_mathfunc.html#ln
- load_extension - lang_corefunc.html#load_extension
- load_extension SQL function - lang_corefunc.html#load_extension
- loadable extension - loadext.html
- loadable extensions - loadext.html
- loadext - loadext.html
- localtime modifier - lang_datefunc.html#localtime
- lock-byte page - fileformat2.html#lockbyte
- locking_mode - pragma.html#pragma_locking_mode
- locking_mode pragma - pragma.html#pragma_locking_mode
- log - lang_mathfunc.html#log
- log2 - lang_mathfunc.html#log2
- log2 SQL function - lang_mathfunc.html#log2
- log10 - lang_mathfunc.html#log
- long term support - lts.html
- lookaside - malloc.html#lookaside
- lookaside buffer - malloc.html#lookaside
- lookaside memory - malloc.html#lookaside
- lookaside memory allocator - malloc.html#lookaside
- low-dependency - selfcontained.html
- lower - lang_corefunc.html#lower
- lower SQL function - lang_corefunc.html#lower
- ltrim - lang_corefunc.html#ltrim
- ltrim SQL function - lang_corefunc.html#ltrim
- mailing lists - support.html#mailinglists
- managing SQLite Archives from the command-line - sqlar.html#cltools
- Manual Control Of Query Plans Using CROSS JOIN - optoverview.html#crossjoin
- Manual Control Of Query Plans Using SQLITE_STAT Tables - optoverview.html#manctrl
- master journal - tempfiles.html#superjrnl
- MATCH - lang_expr.html#match
- matchinfo - fts3.html#matchinfo
- matchinfo b flag - fts3.html#matchinfo-b
- matchinfo x flag - fts3.html#matchinfo-x
- matchinfo y flag - fts3.html#matchinfo-y
- materialization hints - lang_with.html#mathint
- MATERIALIZED - lang_with.html#mathint
- Math Functions - lang_mathfunc.html
- math functions - lang_mathfunc.html
- mathfunc - lang_mathfunc.html
- max - lang_corefunc.html#max_scalar
- max aggregate function - lang_aggfunc.html#max_agg
- max SQL function - lang_corefunc.html#max_scalar
- max_agg - lang_aggfunc.html#max_agg
- max_page_count - pragma.html#pragma_max_page_count
- max_page_count pragma - pragma.html#pragma_max_page_count
- max_scalar - lang_corefunc.html#max_scalar
- maxopen parameter - swarmvtab.html#the_maxopen_parameter
- MC/DC - testing.html#mcdc
- MC/DC testing - testing.html#mcdc
- memory - inmemorydb.html
- memory allocation - malloc.html
- memory statistics - malloc.html#memstatus
- memory-mapped I/O - mmap.html
- memsys2 - malloc.html#memdebug
- memsys5 - malloc.html#memsys5
- merge command - fts3.html#*fts4mergecmd
- microoptimizations - cpu.html#microopt
- min - lang_corefunc.html#min_scalar
- min aggregate function - lang_aggfunc.html#min_agg
- min SQL function - lang_corefunc.html#min_scalar
- min/max optimization - optoverview.html#minmax
- min_agg - lang_aggfunc.html#min_agg
- min_scalar - lang_corefunc.html#min_scalar
- missing callback - swarmvtab.html#the_missing_callback
- mmap - mmap.html
- mmap_size - pragma.html#pragma_mmap_size
- mmap_size pragma - pragma.html#pragma_mmap_size
- mod - lang_mathfunc.html#mod
- mod SQL function - lang_mathfunc.html#mod
- mode query parameter - uri.html#urimode
- modeof - uri.html#urimodeof
- modeof query parameter - uri.html#urimodeof
- modifiers - lang_datefunc.html#dtmods
- module_list - pragma.html#pragma_module_list
- module_list pragma - pragma.html#pragma_module_list
- most used - mostdeployed.html
- most widely deployed - mostdeployed.html
- most widely used - mostdeployed.html
- mutation test script - th3.html#muttest
- mutation testing - testing.html#mutationtests
- mxFrame - walformat.html#mxframe
- naming - lang_naming.html
- nBackfill - walformat.html#nbackfill
- NEAR queries - fts3.html#near
- network filesystem use - useovernet.html
- Next Generation Query Planner - queryplanner-ng.html
- next generation query planner - queryplanner-ng.html
- NGQP - queryplanner-ng.html
- NOCASE - datatype3.html#collation
- NOCASE collating function - datatype3.html#collation
- nolock query parameter - uri.html#urinolock
- non-deterministic functions - deterministic.html
- non-standard SELECT syntax - lang_select.html#nonstd
- NOT EXISTS operator - lang_expr.html#exists_op
- NOT IN operator - lang_expr.html#in_op
- NOT INDEXED - lang_indexedby.html
- NOT MATERIALIZED - lang_with.html#mathint
- NOT NULL - lang_createtable.html#notnullconst
- NOT NULL constraint - lang_createtable.html#notnullconst
- NOT NULL constraints - lang_createtable.html#notnullconst
- not open-contributin - copyright.html#notopencontrib
- NUL characters in strings - nulinstr.html
- nullif - lang_corefunc.html#nullif
- nullif SQL function - lang_corefunc.html#nullif
- NULLS FIRST - lang_select.html#nullslast
- NULLS LAST - lang_select.html#nullslast
- nullvalue method - tclsqlite.html#nullvalue
- numeric-literal - syntax/numeric-literal.html
- numeric-literal syntax diagram - syntax/numeric-literal.html
- object resolution - lang_naming.html
- octet_length - lang_corefunc.html#octet_length
- octet_length SQL function - lang_corefunc.html#octet_length
- OFFSET - lang_select.html#limitoffset
- offsets - fts3.html#offsets
- omit-left-join optimization - optoverview.html#omitnoopjoin
- omit-outer-join optimization - optoverview.html#omitnoopjoin
- omitfeatures - compile.html#omitfeatures
- ON CONFLICT - lang_conflict.html
- ON CONFLICT clause - lang_conflict.html
- ON CONFLICT clauses - lang_conflict.html
- on-disk format - fileformat2.html
- onecolumn method - tclsqlite.html#onecolumn
- opcode definitions - opcode.html#codes
- opcodes - opcode.html
- OPEN_EXRESCODE - c3ref/open.html#openexrescode
- OPEN_NOFOLLOW - c3ref/open.html#opennofollow
- openclose callback - swarmvtab.html#the_openclose_callback
- OpenOffice case study - affcase1.html
- optimize - pragma.html#pragma_optimize
- optimize command - fts3.html#*fts4optcmd
- optimize pragma - pragma.html#pragma_optimize
- optimizer - optoverview.html
- OR optimization - optoverview.html#or_opt
- or optimization - optoverview.html#or_opt
- or-connected-terms - queryplanner.html#or_in_where
- ORDER BY - lang_select.html#orderby
- order by - lang_select.html#orderby
- ORDER BY clause in aggregate functions - lang_aggfunc.html#aggorderby
- orderByConsumed - vtab.html#obc
- ordering-term - syntax/ordering-term.html
- ordering-term syntax diagram - syntax/ordering-term.html
- ordinary common table expressions - lang_with.html#ordinarycte
- OS backend - vfs.html
- OSS Fuzz - testing.html#ossfuzz
- OUTER JOIN strength reduction - optoverview.html#leftjoinreduction
- OUTER JOIN strength reduction optimization - optoverview.html#leftjoinreduction
- output mode - cli.html#dotmode
- over-clause - syntax/over-clause.html
- over-clause syntax diagram - syntax/over-clause.html
- overflow page - fileformat2.html#ovflpgs
- overflow pages - fileformat2.html#ovflpgs
- page cache - c3ref/pcache_methods2.html
- page_count - pragma.html#pragma_page_count
- page_count pragma - pragma.html#pragma_page_count
- page_size - pragma.html#pragma_page_size
- page_size pragma - pragma.html#pragma_page_size
- pagecache memory allocator - malloc.html#pagecache
- parameter - lang_expr.html#varparam
- parameter binding - c3ref/bind_blob.html
- parameters - lang_expr.html#varparam
- parent key - foreignkeys.html#parentchild
- parent table - foreignkeys.html#parentchild
- parser_trace - pragma.html#pragma_parser_trace
- parser_trace pragma - pragma.html#pragma_parser_trace
- partial index - partialindex.html
- partial indexes - partialindex.html
- partial indices - partialindex.html
- partial sorting by index - queryplanner.html#partialsort
- partition - windowfunctions.html#ptxn
- patchset - sessionintro.html#changeset
- patchsets - sessionintro.html#changeset
- PENDING - lockingv3.html#pending_lock
- PENDING lock - lockingv3.html#pending_lock
- pending lock - lockingv3.html#pending_lock
- permuted index - sitemap.html
- persistent journal mode - pragma.html#pragma_journal_mode
- persistent loadable extensions - loadext.html#persist
- phrase queries - fts3.html#phrase
- pi - lang_mathfunc.html#pi
- pi SQL function - lang_mathfunc.html#pi
- pointer leak - bindptr.html#ptrleak
- pointer leaks - bindptr.html#ptrleak
- pointer passing interface - bindptr.html
- pointer passing interfaces - bindptr.html
- pointer types - bindptr.html#ptrtyp
- pointer value - bindptr.html
- porting SQLite - custombuild.html
- pow - lang_mathfunc.html#pow
- pow SQL function - lang_mathfunc.html#pow
- power-safe - transactional.html
- power-safe transactions - transactional.html
- powersafe overwrite - psow.html
- PRAGMA - pragma.html#syntax
- PRAGMA analysis_limit - pragma.html#pragma_analysis_limit
- PRAGMA application_id - pragma.html#pragma_application_id
- PRAGMA auto_vacuum - pragma.html#pragma_auto_vacuum
- PRAGMA automatic_index - pragma.html#pragma_automatic_index
- PRAGMA busy_timeout - pragma.html#pragma_busy_timeout
- PRAGMA cache_size - pragma.html#pragma_cache_size
- PRAGMA cache_spill - pragma.html#pragma_cache_spill
- PRAGMA case_sensitive_like - pragma.html#pragma_case_sensitive_like
- PRAGMA cell_size_check - pragma.html#pragma_cell_size_check
- PRAGMA checkpoint_fullfsync - pragma.html#pragma_checkpoint_fullfsync
- PRAGMA collation_list - pragma.html#pragma_collation_list
- PRAGMA compile_options - pragma.html#pragma_compile_options
- PRAGMA count_changes - pragma.html#pragma_count_changes
- PRAGMA data_store_directory - pragma.html#pragma_data_store_directory
- PRAGMA data_version - pragma.html#pragma_data_version
- PRAGMA database_list - pragma.html#pragma_database_list
- PRAGMA default_cache_size - pragma.html#pragma_default_cache_size
- PRAGMA defer_foreign_keys - pragma.html#pragma_defer_foreign_keys
- PRAGMA empty_result_callbacks - pragma.html#pragma_empty_result_callbacks
- PRAGMA encoding - pragma.html#pragma_encoding
- PRAGMA foreign_key_check - pragma.html#pragma_foreign_key_check
- PRAGMA foreign_key_list - pragma.html#pragma_foreign_key_list
- PRAGMA foreign_keys - pragma.html#pragma_foreign_keys
- PRAGMA freelist_count - pragma.html#pragma_freelist_count
- PRAGMA full_column_names - pragma.html#pragma_full_column_names
- PRAGMA fullfsync - pragma.html#pragma_fullfsync
- PRAGMA function - pragma.html#pragfunc
- PRAGMA function_list - pragma.html#pragma_function_list
- PRAGMA functions - pragma.html#pragfunc
- PRAGMA hard_heap_limit - pragma.html#pragma_hard_heap_limit
- PRAGMA ignore_check_constraints - pragma.html#pragma_ignore_check_constraints
- PRAGMA incremental_vacuum - pragma.html#pragma_incremental_vacuum
- PRAGMA index_info - pragma.html#pragma_index_info
- PRAGMA index_list - pragma.html#pragma_index_list
- PRAGMA index_xinfo - pragma.html#pragma_index_xinfo
- PRAGMA integrity_check - pragma.html#pragma_integrity_check
- PRAGMA journal_mode - pragma.html#pragma_journal_mode
- PRAGMA journal_size_limit - pragma.html#pragma_journal_size_limit
- PRAGMA legacy_alter_table - pragma.html#pragma_legacy_alter_table
- PRAGMA legacy_file_format - pragma.html#pragma_legacy_file_format
- pragma list - pragma.html#toc
- PRAGMA locking_mode - pragma.html#pragma_locking_mode
- PRAGMA max_page_count - pragma.html#pragma_max_page_count
- PRAGMA mmap_size - pragma.html#pragma_mmap_size
- PRAGMA module_list - pragma.html#pragma_module_list
- PRAGMA optimize - pragma.html#pragma_optimize
- PRAGMA page_count - pragma.html#pragma_page_count
- PRAGMA page_size - pragma.html#pragma_page_size
- PRAGMA parser_trace - pragma.html#pragma_parser_trace
- PRAGMA pragma_list - pragma.html#pragma_pragma_list
- PRAGMA query_only - pragma.html#pragma_query_only
- PRAGMA quick_check - pragma.html#pragma_quick_check
- PRAGMA read_uncommitted - pragma.html#pragma_read_uncommitted
- PRAGMA recursive_triggers - pragma.html#pragma_recursive_triggers
- PRAGMA reverse_unordered_selects - pragma.html#pragma_reverse_unordered_selects
- PRAGMA schema_version - pragma.html#pragma_schema_version
- PRAGMA secure_delete - pragma.html#pragma_secure_delete
- PRAGMA short_column_names - pragma.html#pragma_short_column_names
- PRAGMA shrink_memory - pragma.html#pragma_shrink_memory
- PRAGMA soft_heap_limit - pragma.html#pragma_soft_heap_limit
- PRAGMA stats - pragma.html#pragma_stats
- PRAGMA synchronous - pragma.html#pragma_synchronous
- PRAGMA table_info - pragma.html#pragma_table_info
- PRAGMA table_list - pragma.html#pragma_table_list
- PRAGMA table_xinfo - pragma.html#pragma_table_xinfo
- PRAGMA temp_store - pragma.html#pragma_temp_store
- PRAGMA temp_store_directory - pragma.html#pragma_temp_store_directory
- PRAGMA threads - pragma.html#pragma_threads
- PRAGMA trusted_schema - pragma.html#pragma_trusted_schema
- PRAGMA user_version - pragma.html#pragma_user_version
- PRAGMA vdbe_addoptrace - pragma.html#pragma_vdbe_addoptrace
- PRAGMA vdbe_debug - pragma.html#pragma_vdbe_debug
- PRAGMA vdbe_listing - pragma.html#pragma_vdbe_listing
- PRAGMA vdbe_trace - pragma.html#pragma_vdbe_trace
- PRAGMA wal_autocheckpoint - pragma.html#pragma_wal_autocheckpoint
- PRAGMA wal_checkpoint - pragma.html#pragma_wal_checkpoint
- PRAGMA writable_schema - pragma.html#pragma_writable_schema
- pragma-stmt - syntax/pragma-stmt.html
- pragma-stmt syntax diagram - syntax/pragma-stmt.html
- pragma-value - syntax/pragma-value.html
- pragma-value syntax diagram - syntax/pragma-value.html
- pragma_list - pragma.html#pragma_pragma_list
- pragma_list pragma - pragma.html#pragma_pragma_list
- precompiled amalgamation tarballs - amalgamation.html#amalgtarball
- prefix queries - fts3.html#termprefix
- prefix query - fts3.html#termprefix
- prepared statement - c3ref/stmt.html
- prepared statements - c3ref/stmt.html
- preupdate method - tclsqlite.html#preupdate
- PRIMARY KEY - lang_createtable.html#primkeyconst
- PRIMARY KEY constraint - lang_createtable.html#primkeyconst
- primary versus extended result codes - rescode.html#pve
- printf - lang_corefunc.html#printf
- printf SQL function - lang_corefunc.html#printf
- prior releases - chronology.html
- private branches - privatebranch.html
- professional support - prosupport.html
- profile method - tclsqlite.html#profile
- Programming Loadable Extensions - loadext.html#write
- progress method - tclsqlite.html#progress
- protected sqlite3_value - c3ref/value.html
- PSOW - psow.html
- psow query parameter - uri.html#uripsow
- public-domain - copyright.html
- push-down optimization - optoverview.html#pushdown
- Q - printf.html#percentq
- q - printf.html#percentq
- qbox - cli.html#qbox
- qbox output mode - cli.html#qbox
- QPSG - queryplanner-ng.html#qpstab
- qualified-table-name - syntax/qualified-table-name.html
- qualified-table-name syntax diagram - syntax/qualified-table-name.html
- queries against graphs - lang_with.html#rcex3
- query flattener - optoverview.html#flattening
- query parameters with special meaning to SQLite - uri.html#coreqp
- query planner - optoverview.html
- query planner checklist - queryplanner-ng.html#howtofix
- query planner stability guarantee - queryplanner-ng.html#qpstab
- query_only - pragma.html#pragma_query_only
- query_only pragma - pragma.html#pragma_query_only
- Quick Start Guide - quickstart.html
- quick_check - pragma.html#pragma_quick_check
- quick_check pragma - pragma.html#pragma_quick_check
- quickstart - quickstart.html
- Quirks - quirks.html
- quote - lang_corefunc.html#quote
- quote SQL function - lang_corefunc.html#quote
- R-Tree extension - rtree.html
- R-Trees - rtree.html
- radians - lang_mathfunc.html#radians
- radians SQL function - lang_mathfunc.html#radians
- RAISE function - lang_createtrigger.html#raise
- raise-function - syntax/raise-function.html
- raise-function syntax diagram - syntax/raise-function.html
- random - lang_corefunc.html#random
- random SQL function - lang_corefunc.html#random
- randomblob - lang_corefunc.html#randomblob
- randomblob SQL function - lang_corefunc.html#randomblob
- RANGE frames - windowfunctions.html#rangetype
- RANGE n FOLLOWING - windowfunctions.html#exprrange
- RANGE n PRECEDING - windowfunctions.html#exprrange
- range query optimization - optoverview.html#rangequery
- RBU - rbu.html
- RBU Database Contents - rbu.html#database_contents
- RBU Database Tables - rbu.html#database_tables
- RBU extension - rbu.html
- RBU FTS3/4 Tables - rbu.html#fts4_tables
- RBU Update - rbu.html#rbu_updates
- RBU Vacuum - rbu.html#rbu_vacuum
- read-only WAL databases - wal.html#readonly
- read_uncommitted - pragma.html#pragma_read_uncommitted
- read_uncommitted pragma - pragma.html#pragma_read_uncommitted
- reading and writing an rtree at the same time - rtree.html#readwrite
- rebuild command - fts3.html#*fts4rebuidcmd
- recent CVEs - cves.html#cvetab
- recommended ANALYZE usage pattern - lang_analyze.html#req
- recommended by the US Library of Congress - locrsf.html
- recommended compile-time option - compile.html#rcmd
- recommended compile-time options - compile.html#rcmd
- recommended storage format - locrsf.html
- record format - fileformat2.html#record_format
- recovery - walformat.html#recovery
- recovery extension - recovery.html
- recursive common table expression - lang_with.html#recursivecte
- recursive common table expressions - lang_with.html#recursivecte
- recursive query - lang_with.html#recursivecte
- recursive-cte - syntax/recursive-cte.html
- recursive-cte syntax diagram - syntax/recursive-cte.html
- recursive_triggers - pragma.html#pragma_recursive_triggers
- recursive_triggers pragma - pragma.html#pragma_recursive_triggers
- REGEXP - lang_expr.html#regexp
- REINDEX - lang_reindex.html
- reindex - lang_reindex.html
- reindex-stmt - syntax/reindex-stmt.html
- reindex-stmt syntax diagram - syntax/reindex-stmt.html
- RELEASE - lang_savepoint.html
- release history - changes.html
- release testing checklists - testing.html#cklist
- release-stmt - syntax/release-stmt.html
- release-stmt syntax diagram - syntax/release-stmt.html
- relfootprint - footprint.html
- rename column - lang_altertable.html#altertabmvcol
- rename table - lang_altertable.html#altertabrename
- REPLACE - lang_replace.html
- replace - lang_corefunc.html#replace
- replace SQL function - lang_corefunc.html#replace
- reported vulnerabilities - cves.html
- requirements - requirements.html
- reserve bytes - fileformat2.html#resbyte
- RESERVED - lockingv3.html#reserved_lock
- RESERVED lock - lockingv3.html#reserved_lock
- reserved lock - lockingv3.html#reserved_lock
- reset the WAL - fileformat2.html#walreset
- restore method - tclsqlite.html#restore
- result code - rescode.html
- result code definitions - c3ref/c_abort.html
- result codes - rescode.html
- result-column - syntax/result-column.html
- result-column syntax diagram - syntax/result-column.html
- result-set expressions - lang_select.html#resultset
- RETURNING - lang_returning.html
- returning - lang_returning.html
- RETURNING clause - lang_returning.html
- returning-clause - syntax/returning-clause.html
- returning-clause syntax diagram - syntax/returning-clause.html
- reverse_unordered_selects - pragma.html#pragma_reverse_unordered_selects
- reverse_unordered_selects pragma - pragma.html#pragma_reverse_unordered_selects
- RIGHT and FULL OUTER JOIN - lang_select.html#rjoin
- RIGHT JOIN - lang_select.html#rjoin
- Robson proof - malloc.html#nofrag
- ROLLBACK - lang_transaction.html
- rollback journal - lockingv3.html#rollback
- rollback journal format - fileformat2.html#rollbackjournal
- rollback-stmt - syntax/rollback-stmt.html
- rollback-stmt syntax diagram - syntax/rollback-stmt.html
- rollback_hook method - tclsqlite.html#rollback_hook
- round - lang_corefunc.html#round
- round SQL function - lang_corefunc.html#round
- row value - rowvalue.html
- row value IN operator - rowvalue.html#rvinop
- row values - rowvalue.html
- ROWID - lang_createtable.html#rowid
- rowid - lang_createtable.html#rowid
- rowid table - rowidtable.html
- rowid tables - rowidtable.html
- rowvalue - rowvalue.html
- RTREE - rtree.html
- rtree - rtree.html
- rtree shadow tables - rtree.html#xshadow
- rtreecheck - rtree.html#rtreecheck
- RTRIM - datatype3.html#collation
- rtrim - lang_corefunc.html#rtrim
- RTRIM collating function - datatype3.html#collation
- rtrim SQL function - lang_corefunc.html#rtrim
- rules for determining column affinity - datatype3.html#affname
- rules for determining column affinity in VIEWs - datatype3.html#affview
- Run-Time Loadable Extensions - loadext.html
- safe command-line option - cli.html#safemode
- SAVEPOINT - lang_savepoint.html
- savepoint - lang_savepoint.html
- SAVEPOINT bug - howtocorrupt.html#svptbug
- savepoint-stmt - syntax/savepoint-stmt.html
- savepoint-stmt syntax diagram - syntax/savepoint-stmt.html
- Scalar Functions - lang_corefunc.html
- scalar functions - lang_corefunc.html
- scan status flags - c3ref/c_scanstat_complex.html
- scanstatus options - c3ref/c_scanstat_est.html
- schema format - fileformat2.html#schemaformat
- schema format number - fileformat2.html#schemaformat
- schema storage - fileformat2.html#ffschema
- schema_version - pragma.html#pragma_schema_version
- schema_version pragma - pragma.html#pragma_schema_version
- search application tips - fts3.html#appendix_a
- second edition file format document - fileformat2.html
- secure_delete - pragma.html#pragma_secure_delete
- secure_delete pragma - pragma.html#pragma_secure_delete
- security - security.html
- segment btree - fts3.html#data_structures
- SELECT - lang_select.html
- select - lang_select.html
- SELECT query - lang_select.html
- SELECT statement - lang_select.html
- select-core - syntax/select-core.html
- select-core syntax diagram - syntax/select-core.html
- select-stmt - syntax/select-stmt.html
- select-stmt syntax diagram - syntax/select-stmt.html
- self-contained - selfcontained.html
- separating a database from its journal - howtocorrupt.html#roguejrnl
- serial type - fileformat2.html#serialtype
- serial types - fileformat2.html#serialtype
- serialize method - tclsqlite.html#serialize
- series - series.html
- server-side database - whentouse.html#serversidedb
- serverless - serverless.html
- session - sessionintro.html
- session extension - sessionintro.html
- Session Extension C-language Interface - session/intro.html
- Session Module C-API function list - session/funclist.html
- session-capi - session/intro.html
- session_funclist - session/funclist.html
- shadow table - vtab.html#xshadowname
- shadow tables - vtab.html#xshadowname
- shadowtabs - fts3.html#shadow_tables
- SHARED - lockingv3.html#shared_lock
- shared cache - sharedcache.html
- shared cache mode - sharedcache.html
- SHARED lock - lockingv3.html#shared_lock
- shared lock - lockingv3.html#shared_lock
- shims - vfs.html#shim
- shm file - walformat.html#shm
- short filenames - shortnames.html
- short_column_names - pragma.html#pragma_short_column_names
- short_column_names pragma - pragma.html#pragma_short_column_names
- shrink_memory - pragma.html#pragma_shrink_memory
- shrink_memory pragma - pragma.html#pragma_shrink_memory
- sign - lang_corefunc.html#sign
- sign SQL function - lang_corefunc.html#sign
- signed-number - syntax/signed-number.html
- signed-number syntax diagram - syntax/signed-number.html
- simple fts queries - fts3.html#simple_fts_queries
- simple SELECT - lang_select.html#simpleselect
- simple-function-invocation - syntax/simple-function-invocation.html
- simple-function-invocation syntax diagram - syntax/simple-function-invocation.html
- simple-select-stmt - syntax/simple-select-stmt.html
- simple-select-stmt syntax diagram - syntax/simple-select-stmt.html
- sin - lang_mathfunc.html#sin
- sin SQL function - lang_mathfunc.html#sin
- single-argument carray - carray.html#onearg
- sinh - lang_mathfunc.html#sinh
- sinh SQL function - lang_mathfunc.html#sinh
- skip-scan - optoverview.html#skipscan
- skip-scan optimization - optoverview.html#skipscan
- SLT - testing.html#slt
- snapshot - c3ref/snapshot.html
- snippet - fts3.html#snippet
- soft_heap_limit - pragma.html#pragma_soft_heap_limit
- soft_heap_limit pragma - pragma.html#pragma_soft_heap_limit
- solve Sudoku puzzles - lang_with.html#sudoku
- sort order - datatype3.html#sortorder
- sorting - queryplanner.html#sorting
- sorting subsets of the result - optoverview.html#partsort
- soundex - lang_corefunc.html#soundex
- soundex SQL function - lang_corefunc.html#soundex
- spellfix1 - spellfix1.html
- split amalgamation - amalgamation.html#amal32k
- SQL Archive - sqlar.html
- SQL fuzzing - testing.html#fuzztesting
- SQL keyword - lang_keywords.html
- SQL keywords - lang_keywords.html
- SQL Logic Tests - testing.html#slt
- SQL parameter - c3ref/bind_blob.html
- SQL parameters - c3ref/bind_blob.html
- sql parameters - swarmvtab.html#sql_parameters
- SQL statement compiler - c3ref/prepare.html
- sql-stmt - syntax/sql-stmt.html
- sql-stmt syntax diagram - syntax/sql-stmt.html
- sql-stmt-list - syntax/sql-stmt-list.html
- sql-stmt-list syntax diagram - syntax/sql-stmt-list.html
- SQLAR - sqlar.html
- sqldiff - sqldiff.html
- sqldiff --rbu - rbu.html#sqldiff
- sqldiff.exe - sqldiff.html
- SQLite amalgamation source file - amalgamation.html
- SQLite Archive - sqlar.html
- SQLite Archive files - sqlar.html
- SQLite Archive format - sqlar.html
- SQLite Archive smaller than ZIP - affcase1.html#smaller
- SQLite Consortium - consortium.html
- SQLite database file format - fileformat2.html
- SQLite extension - loadext.html
- SQLite extensions - loadext.html
- SQLite Keywords - lang_keywords.html
- SQLite query planner - optoverview.html
- SQLite Shared-Cache Mode - sharedcache.html
- SQLite source code repositories - download.html#srctree
- sqlite3 - c3ref/sqlite3.html
- sqlite3.exe - cli.html
- sqlite3.exe command-line shell - cli.html
- sqlite3_aggregate_context - c3ref/aggregate_context.html
- sqlite3_aggregate_count - c3ref/aggregate_count.html
- sqlite3_analyzer - sqlanalyze.html
- sqlite3_analyzer.exe - sqlanalyze.html
- sqlite3_api_routines - c3ref/api_routines.html
- sqlite3_auto_extension - c3ref/auto_extension.html
- sqlite3_autovacuum_pages - c3ref/autovacuum_pages.html
- sqlite3_backup - c3ref/backup.html
- sqlite3_backup_finish - c3ref/backup_finish.html#sqlite3backupfinish
- sqlite3_backup_init - c3ref/backup_finish.html#sqlite3backupinit
- sqlite3_backup_pagecount - c3ref/backup_finish.html#sqlite3backuppagecount
- sqlite3_backup_remaining - c3ref/backup_finish.html#sqlite3backupremaining
- sqlite3_backup_step - c3ref/backup_finish.html#sqlite3backupstep
- sqlite3_bind_blob - c3ref/bind_blob.html
- sqlite3_bind_blob64 - c3ref/bind_blob.html
- sqlite3_bind_double - c3ref/bind_blob.html
- sqlite3_bind_int - c3ref/bind_blob.html
- sqlite3_bind_int64 - c3ref/bind_blob.html
- sqlite3_bind_null - c3ref/bind_blob.html
- sqlite3_bind_parameter_count - c3ref/bind_parameter_count.html
- sqlite3_bind_parameter_index - c3ref/bind_parameter_index.html
- sqlite3_bind_parameter_name - c3ref/bind_parameter_name.html
- sqlite3_bind_pointer - c3ref/bind_blob.html
- sqlite3_bind_text - c3ref/bind_blob.html
- sqlite3_bind_text16 - c3ref/bind_blob.html
- sqlite3_bind_text64 - c3ref/bind_blob.html
- sqlite3_bind_value - c3ref/bind_blob.html
- sqlite3_bind_zeroblob - c3ref/bind_blob.html
- sqlite3_bind_zeroblob64 - c3ref/bind_blob.html
- sqlite3_blob - c3ref/blob.html
- sqlite3_blob_bytes - c3ref/blob_bytes.html
- sqlite3_blob_close - c3ref/blob_close.html
- sqlite3_blob_open - c3ref/blob_open.html
- sqlite3_blob_read - c3ref/blob_read.html
- sqlite3_blob_reopen - c3ref/blob_reopen.html
- sqlite3_blob_write - c3ref/blob_write.html
- sqlite3_busy_handler - c3ref/busy_handler.html
- sqlite3_busy_timeout - c3ref/busy_timeout.html
- sqlite3_cancel_auto_extension - c3ref/cancel_auto_extension.html
- sqlite3_carray_bind - carray.html#onearg
- sqlite3_changegroup - session/changegroup.html
- sqlite3_changes - c3ref/changes.html
- sqlite3_changes64 - c3ref/changes.html
- sqlite3_changeset_iter - session/changeset_iter.html
- sqlite3_clear_bindings - c3ref/clear_bindings.html
- sqlite3_close - c3ref/close.html
- sqlite3_close_v2 - c3ref/close.html
- sqlite3_collation_needed - c3ref/collation_needed.html
- sqlite3_collation_needed16 - c3ref/collation_needed.html
- sqlite3_column_blob - c3ref/column_blob.html
- sqlite3_column_bytes - c3ref/column_blob.html
- sqlite3_column_bytes16 - c3ref/column_blob.html
- sqlite3_column_count - c3ref/column_count.html
- sqlite3_column_database_name - c3ref/column_database_name.html
- sqlite3_column_database_name16 - c3ref/column_database_name.html
- sqlite3_column_decltype - c3ref/column_decltype.html
- sqlite3_column_decltype16 - c3ref/column_decltype.html
- sqlite3_column_double - c3ref/column_blob.html
- sqlite3_column_int - c3ref/column_blob.html
- sqlite3_column_int64 - c3ref/column_blob.html
- sqlite3_column_name - c3ref/column_name.html
- sqlite3_column_name16 - c3ref/column_name.html
- sqlite3_column_origin_name - c3ref/column_database_name.html
- sqlite3_column_origin_name16 - c3ref/column_database_name.html
- sqlite3_column_table_name - c3ref/column_database_name.html
- sqlite3_column_table_name16 - c3ref/column_database_name.html
- sqlite3_column_text - c3ref/column_blob.html
- sqlite3_column_text16 - c3ref/column_blob.html
- sqlite3_column_type - c3ref/column_blob.html
- sqlite3_column_value - c3ref/column_blob.html
- sqlite3_commit_hook - c3ref/commit_hook.html
- sqlite3_compileoption_get - c3ref/compileoption_get.html
- sqlite3_compileoption_used - c3ref/compileoption_get.html
- sqlite3_complete - c3ref/complete.html
- sqlite3_complete16 - c3ref/complete.html
- sqlite3_config - c3ref/config.html
- sqlite3_context - c3ref/context.html
- sqlite3_context_db_handle - c3ref/context_db_handle.html
- sqlite3_create_collation - c3ref/create_collation.html
- sqlite3_create_collation16 - c3ref/create_collation.html
- sqlite3_create_collation_v2 - c3ref/create_collation.html
- sqlite3_create_filename - c3ref/create_filename.html
- sqlite3_create_function - c3ref/create_function.html
- sqlite3_create_function16 - c3ref/create_function.html
- sqlite3_create_function_v2 - c3ref/create_function.html
- sqlite3_create_module - c3ref/create_module.html
- sqlite3_create_module_v2 - c3ref/create_module.html
- sqlite3_create_window_function - c3ref/create_function.html
- sqlite3_data_count - c3ref/data_count.html
- sqlite3_data_directory - c3ref/data_directory.html
- sqlite3_database_file_object - c3ref/database_file_object.html
- sqlite3_db_cacheflush - c3ref/db_cacheflush.html
- sqlite3_db_config - c3ref/db_config.html
- sqlite3_db_filename - c3ref/db_filename.html
- sqlite3_db_handle - c3ref/db_handle.html
- sqlite3_db_mutex - c3ref/db_mutex.html
- sqlite3_db_name - c3ref/db_name.html
- sqlite3_db_readonly - c3ref/db_readonly.html
- sqlite3_db_release_memory - c3ref/db_release_memory.html
- sqlite3_db_status - c3ref/db_status.html
- sqlite3_declare_vtab - c3ref/declare_vtab.html
- sqlite3_deserialize - c3ref/deserialize.html
- sqlite3_drop_modules - c3ref/drop_modules.html
- sqlite3_enable_load_extension - c3ref/enable_load_extension.html
- sqlite3_enable_shared_cache - c3ref/enable_shared_cache.html
- sqlite3_errcode - c3ref/errcode.html
- sqlite3_errmsg - c3ref/errcode.html
- sqlite3_errmsg16 - c3ref/errcode.html
- sqlite3_error_offset - c3ref/errcode.html
- sqlite3_errstr - c3ref/errcode.html
- sqlite3_exec - c3ref/exec.html
- sqlite3_expanded_sql - c3ref/expanded_sql.html
- sqlite3_expired - c3ref/aggregate_count.html
- sqlite3_extended_errcode - c3ref/errcode.html
- sqlite3_extended_result_codes - c3ref/extended_result_codes.html
- sqlite3_file - c3ref/file.html
- sqlite3_file_control - c3ref/file_control.html
- sqlite3_filename - c3ref/filename.html
- sqlite3_filename_database - c3ref/filename_database.html
- sqlite3_filename_journal - c3ref/filename_database.html
- sqlite3_filename_wal - c3ref/filename_database.html
- sqlite3_finalize - c3ref/finalize.html
- sqlite3_free - c3ref/free.html
- sqlite3_free_filename - c3ref/create_filename.html
- sqlite3_free_table - c3ref/free_table.html
- sqlite3_get_autocommit - c3ref/get_autocommit.html
- sqlite3_get_auxdata - c3ref/get_auxdata.html
- sqlite3_get_clientdata - c3ref/get_clientdata.html
- sqlite3_get_table - c3ref/free_table.html
- sqlite3_global_recover - c3ref/aggregate_count.html
- sqlite3_hard_heap_limit64 - c3ref/hard_heap_limit64.html
- sqlite3_index_info - c3ref/index_info.html
- sqlite3_initialize - c3ref/initialize.html
- sqlite3_int64 - c3ref/int64.html
- sqlite3_interrupt - c3ref/interrupt.html
- sqlite3_io_methods - c3ref/io_methods.html
- sqlite3_is_interrupted - c3ref/interrupt.html
- sqlite3_keyword_check - c3ref/keyword_check.html
- sqlite3_keyword_count - c3ref/keyword_check.html
- sqlite3_keyword_name - c3ref/keyword_check.html
- sqlite3_last_insert_rowid - c3ref/last_insert_rowid.html
- sqlite3_libversion - c3ref/libversion.html
- sqlite3_libversion_number - c3ref/libversion.html
- sqlite3_limit - c3ref/limit.html
- sqlite3_load_extension - c3ref/load_extension.html
- sqlite3_log - c3ref/log.html
- sqlite3_malloc - c3ref/free.html
- sqlite3_malloc64 - c3ref/free.html
- sqlite3_mem_methods - c3ref/mem_methods.html
- sqlite3_memory_alarm - c3ref/aggregate_count.html
- sqlite3_memory_highwater - c3ref/memory_highwater.html
- sqlite3_memory_used - c3ref/memory_highwater.html
- sqlite3_module - c3ref/module.html
- sqlite3_module.xBegin - vtab.html#xBegin
- sqlite3_module.xBestIndex - vtab.html#xbestindex
- sqlite3_module.xClose - vtab.html#xclose
- sqlite3_module.xColumn - vtab.html#xcolumn
- sqlite3_module.xCommit - vtab.html#xcommit
- sqlite3_module.xConnect - vtab.html#xconnect
- sqlite3_module.xCreate - vtab.html#xcreate
- sqlite3_module.xDisconnect - vtab.html#xdisconnect
- sqlite3_module.xEof - vtab.html#xeof
- sqlite3_module.xFilter - vtab.html#xfilter
- sqlite3_module.xFindFunction - vtab.html#xfindfunction
- sqlite3_module.xIntegrity - vtab.html#xintegrity
- sqlite3_module.xNext - vtab.html#xnext
- sqlite3_module.xOpen - vtab.html#xopen
- sqlite3_module.xRename - vtab.html#xrename
- sqlite3_module.xRollback - vtab.html#xrollback
- sqlite3_module.xRowid - vtab.html#xrowid
- sqlite3_module.xSavepoint - vtab.html#xsavepoint
- sqlite3_module.xShadowName - vtab.html#xshadowname
- sqlite3_module.xSync - vtab.html#xsync
- sqlite3_module.xUpdate - vtab.html#xupdate
- sqlite3_mprintf - c3ref/mprintf.html
- sqlite3_msize - c3ref/free.html
- sqlite3_mutex - c3ref/mutex.html
- sqlite3_mutex_alloc - c3ref/mutex_alloc.html
- sqlite3_mutex_enter - c3ref/mutex_alloc.html
- sqlite3_mutex_free - c3ref/mutex_alloc.html
- sqlite3_mutex_held - c3ref/mutex_held.html
- sqlite3_mutex_leave - c3ref/mutex_alloc.html
- sqlite3_mutex_methods - c3ref/mutex_methods.html
- sqlite3_mutex_notheld - c3ref/mutex_held.html
- sqlite3_mutex_try - c3ref/mutex_alloc.html
- sqlite3_next_stmt - c3ref/next_stmt.html
- sqlite3_normalized_sql - c3ref/expanded_sql.html
- sqlite3_open - c3ref/open.html
- sqlite3_open16 - c3ref/open.html
- sqlite3_open_v2 - c3ref/open.html
- sqlite3_os_end - c3ref/initialize.html
- sqlite3_os_init - c3ref/initialize.html
- sqlite3_overload_function - c3ref/overload_function.html
- sqlite3_pcache - c3ref/pcache.html
- sqlite3_pcache_methods2 - c3ref/pcache_methods2.html
- sqlite3_pcache_page - c3ref/pcache_page.html
- sqlite3_prepare - c3ref/prepare.html
- sqlite3_prepare16 - c3ref/prepare.html
- sqlite3_prepare16_v2 - c3ref/prepare.html
- sqlite3_prepare16_v3 - c3ref/prepare.html
- sqlite3_prepare_v2 - c3ref/prepare.html
- sqlite3_prepare_v3 - c3ref/prepare.html
- sqlite3_preupdate_blobwrite - c3ref/preupdate_blobwrite.html
- sqlite3_preupdate_count - c3ref/preupdate_blobwrite.html
- sqlite3_preupdate_depth - c3ref/preupdate_blobwrite.html
- sqlite3_preupdate_hook - c3ref/preupdate_blobwrite.html
- sqlite3_preupdate_new - c3ref/preupdate_blobwrite.html
- sqlite3_preupdate_old - c3ref/preupdate_blobwrite.html
- sqlite3_profile - c3ref/profile.html
- sqlite3_progress_handler - c3ref/progress_handler.html
- sqlite3_randomness - c3ref/randomness.html
- sqlite3_realloc - c3ref/free.html
- sqlite3_realloc64 - c3ref/free.html
- sqlite3_rebaser - session/rebaser.html
- sqlite3_release_memory - c3ref/release_memory.html
- sqlite3_reset - c3ref/reset.html
- sqlite3_reset_auto_extension - c3ref/reset_auto_extension.html
- sqlite3_result_blob - c3ref/result_blob.html
- sqlite3_result_blob64 - c3ref/result_blob.html
- sqlite3_result_double - c3ref/result_blob.html
- sqlite3_result_error - c3ref/result_blob.html
- sqlite3_result_error16 - c3ref/result_blob.html
- sqlite3_result_error_code - c3ref/result_blob.html
- sqlite3_result_error_nomem - c3ref/result_blob.html
- sqlite3_result_error_toobig - c3ref/result_blob.html
- sqlite3_result_int - c3ref/result_blob.html
- sqlite3_result_int64 - c3ref/result_blob.html
- sqlite3_result_null - c3ref/result_blob.html
- sqlite3_result_pointer - c3ref/result_blob.html
- sqlite3_result_subtype - c3ref/result_subtype.html
- sqlite3_result_text - c3ref/result_blob.html
- sqlite3_result_text16 - c3ref/result_blob.html
- sqlite3_result_text16be - c3ref/result_blob.html
- sqlite3_result_text16le - c3ref/result_blob.html
- sqlite3_result_text64 - c3ref/result_blob.html
- sqlite3_result_value - c3ref/result_blob.html
- sqlite3_result_zeroblob - c3ref/result_blob.html
- sqlite3_result_zeroblob64 - c3ref/result_blob.html
- sqlite3_rollback_hook - c3ref/commit_hook.html
- sqlite3_rtree_query_callback - rtree.html#xquery
- sqlite3_serialize - c3ref/serialize.html
- sqlite3_session - session/session.html
- sqlite3_set_authorizer - c3ref/set_authorizer.html
- sqlite3_set_auxdata - c3ref/get_auxdata.html
- sqlite3_set_clientdata - c3ref/get_clientdata.html
- sqlite3_set_last_insert_rowid - c3ref/set_last_insert_rowid.html
- sqlite3_shutdown - c3ref/initialize.html
- sqlite3_sleep - c3ref/sleep.html
- sqlite3_snapshot - c3ref/snapshot.html
- sqlite3_snapshot_cmp - c3ref/snapshot_cmp.html
- sqlite3_snapshot_free - c3ref/snapshot_free.html
- sqlite3_snapshot_get - c3ref/snapshot_get.html
- sqlite3_snapshot_open - c3ref/snapshot_open.html
- sqlite3_snapshot_recover - c3ref/snapshot_recover.html
- sqlite3_snprintf - c3ref/mprintf.html
- sqlite3_soft_heap_limit - c3ref/soft_heap_limit.html
- sqlite3_soft_heap_limit64 - c3ref/hard_heap_limit64.html
- sqlite3_sourceid - c3ref/libversion.html
- sqlite3_sql - c3ref/expanded_sql.html
- sqlite3_status - c3ref/status.html
- sqlite3_status64 - c3ref/status.html
- sqlite3_step - c3ref/step.html
- sqlite3_stmt - c3ref/stmt.html
- sqlite3_stmt_busy - c3ref/stmt_busy.html
- sqlite3_stmt_explain - c3ref/stmt_explain.html
- sqlite3_stmt_isexplain - c3ref/stmt_isexplain.html
- sqlite3_stmt_readonly - c3ref/stmt_readonly.html
- sqlite3_stmt_scanstatus - c3ref/stmt_scanstatus.html
- sqlite3_stmt_scanstatus_reset - c3ref/stmt_scanstatus_reset.html
- sqlite3_stmt_scanstatus_v2 - c3ref/stmt_scanstatus.html
- sqlite3_stmt_status - c3ref/stmt_status.html
- sqlite3_str - c3ref/str.html
- sqlite3_str_append - c3ref/str_append.html
- sqlite3_str_appendall - c3ref/str_append.html
- sqlite3_str_appendchar - c3ref/str_append.html
- sqlite3_str_appendf - c3ref/str_append.html
- sqlite3_str_errcode - c3ref/str_errcode.html
- sqlite3_str_finish - c3ref/str_finish.html
- sqlite3_str_length - c3ref/str_errcode.html
- sqlite3_str_new - c3ref/str_new.html
- sqlite3_str_reset - c3ref/str_append.html
- sqlite3_str_value - c3ref/str_errcode.html
- sqlite3_str_vappendf - c3ref/str_append.html
- sqlite3_strglob - c3ref/strglob.html
- sqlite3_stricmp - c3ref/stricmp.html
- sqlite3_strlike - c3ref/strlike.html
- sqlite3_strnicmp - c3ref/stricmp.html
- sqlite3_system_errno - c3ref/system_errno.html
- sqlite3_table_column_metadata - c3ref/table_column_metadata.html
- sqlite3_temp_directory - c3ref/temp_directory.html
- sqlite3_test_control - c3ref/test_control.html
- sqlite3_thread_cleanup - c3ref/aggregate_count.html
- sqlite3_threadsafe - c3ref/threadsafe.html
- sqlite3_total_changes - c3ref/total_changes.html
- sqlite3_total_changes64 - c3ref/total_changes.html
- sqlite3_trace - c3ref/profile.html
- sqlite3_trace_v2 - c3ref/trace_v2.html
- sqlite3_transfer_bindings - c3ref/aggregate_count.html
- sqlite3_txn_state - c3ref/txn_state.html
- sqlite3_uint64 - c3ref/int64.html
- sqlite3_unlock_notify - c3ref/unlock_notify.html
- sqlite3_update_hook - c3ref/update_hook.html
- sqlite3_uri_boolean - c3ref/uri_boolean.html
- sqlite3_uri_int64 - c3ref/uri_boolean.html
- sqlite3_uri_key - c3ref/uri_boolean.html
- sqlite3_uri_parameter - c3ref/uri_boolean.html
- sqlite3_user_data - c3ref/user_data.html
- sqlite3_value - c3ref/value.html
- sqlite3_value_blob - c3ref/value_blob.html
- sqlite3_value_bytes - c3ref/value_blob.html
- sqlite3_value_bytes16 - c3ref/value_blob.html
- sqlite3_value_double - c3ref/value_blob.html
- sqlite3_value_dup - c3ref/value_dup.html
- sqlite3_value_encoding - c3ref/value_encoding.html
- sqlite3_value_free - c3ref/value_dup.html
- sqlite3_value_frombind - c3ref/value_blob.html
- sqlite3_value_int - c3ref/value_blob.html
- sqlite3_value_int64 - c3ref/value_blob.html
- sqlite3_value_nochange - c3ref/value_blob.html
- sqlite3_value_numeric_type - c3ref/value_blob.html
- sqlite3_value_pointer - c3ref/value_blob.html
- sqlite3_value_subtype - c3ref/value_subtype.html
- sqlite3_value_text - c3ref/value_blob.html
- sqlite3_value_text16 - c3ref/value_blob.html
- sqlite3_value_text16be - c3ref/value_blob.html
- sqlite3_value_text16le - c3ref/value_blob.html
- sqlite3_value_type - c3ref/value_blob.html
- sqlite3_version - c3ref/libversion.html
- sqlite3_vfs - c3ref/vfs.html
- sqlite3_vfs.xAccess - c3ref/vfs.html#sqlite3vfsxaccess
- sqlite3_vfs.xOpen - c3ref/vfs.html#sqlite3vfsxopen
- sqlite3_vfs_find - c3ref/vfs_find.html
- sqlite3_vfs_register - c3ref/vfs_find.html
- sqlite3_vfs_unregister - c3ref/vfs_find.html
- sqlite3_vmprintf - c3ref/mprintf.html
- sqlite3_vsnprintf - c3ref/mprintf.html
- sqlite3_vtab - c3ref/vtab.html
- sqlite3_vtab_collation - c3ref/vtab_collation.html
- sqlite3_vtab_config - c3ref/vtab_config.html
- sqlite3_vtab_cursor - c3ref/vtab_cursor.html
- sqlite3_vtab_distinct - c3ref/vtab_distinct.html
- sqlite3_vtab_in - c3ref/vtab_in.html
- sqlite3_vtab_in_first - c3ref/vtab_in_first.html
- sqlite3_vtab_in_next - c3ref/vtab_in_first.html
- sqlite3_vtab_nochange - c3ref/vtab_nochange.html
- sqlite3_vtab_on_conflict - c3ref/vtab_on_conflict.html
- sqlite3_vtab_rhs_value - c3ref/vtab_rhs_value.html
- sqlite3_wal_autocheckpoint - c3ref/wal_autocheckpoint.html
- sqlite3_wal_checkpoint - c3ref/wal_checkpoint.html
- sqlite3_wal_checkpoint_v2 - c3ref/wal_checkpoint_v2.html
- sqlite3_wal_hook - c3ref/wal_hook.html
- sqlite3_win32_set_directory - c3ref/win32_set_directory.html
- sqlite3_win32_set_directory8 - c3ref/win32_set_directory.html
- sqlite3_win32_set_directory16 - c3ref/win32_set_directory.html
- sqlite3changegroup_add - session/sqlite3changegroup_add.html
- sqlite3changegroup_add_strm - session/sqlite3changegroup_add_strm.html
- sqlite3changegroup_delete - session/sqlite3changegroup_delete.html
- sqlite3changegroup_new - session/sqlite3changegroup_new.html
- sqlite3changegroup_output - session/sqlite3changegroup_output.html
- sqlite3changegroup_output_strm - session/sqlite3changegroup_add_strm.html
- sqlite3changegroup_schema - session/sqlite3changegroup_schema.html
- sqlite3changeset_apply - session/sqlite3changeset_apply.html
- sqlite3changeset_apply_strm - session/sqlite3changegroup_add_strm.html
- sqlite3changeset_apply_v2 - session/sqlite3changeset_apply.html
- sqlite3changeset_apply_v2_strm - session/sqlite3changegroup_add_strm.html
- sqlite3changeset_concat - session/sqlite3changeset_concat.html
- sqlite3changeset_concat_strm - session/sqlite3changegroup_add_strm.html
- sqlite3changeset_conflict - session/sqlite3changeset_conflict.html
- sqlite3changeset_finalize - session/sqlite3changeset_finalize.html
- sqlite3changeset_fk_conflicts - session/sqlite3changeset_fk_conflicts.html
- sqlite3changeset_invert - session/sqlite3changeset_invert.html
- sqlite3changeset_invert_strm - session/sqlite3changegroup_add_strm.html
- sqlite3changeset_new - session/sqlite3changeset_new.html
- sqlite3changeset_next - session/sqlite3changeset_next.html
- sqlite3changeset_old - session/sqlite3changeset_old.html
- sqlite3changeset_op - session/sqlite3changeset_op.html
- sqlite3changeset_pk - session/sqlite3changeset_pk.html
- sqlite3changeset_start - session/sqlite3changeset_start.html
- sqlite3changeset_start_strm - session/sqlite3changegroup_add_strm.html
- sqlite3changeset_start_v2 - session/sqlite3changeset_start.html
- sqlite3changeset_start_v2_strm - session/sqlite3changegroup_add_strm.html
- sqlite3changeset_upgrade - session/sqlite3changeset_upgrade.html
- sqlite3rebaser_configure - session/sqlite3rebaser_configure.html
- sqlite3rebaser_create - session/sqlite3rebaser_create.html
- sqlite3rebaser_delete - session/sqlite3rebaser_delete.html
- sqlite3rebaser_rebase - session/sqlite3rebaser_rebase.html
- sqlite3rebaser_rebase_strm - session/sqlite3changegroup_add_strm.html
- sqlite3session_attach - session/sqlite3session_attach.html
- sqlite3session_changeset - session/sqlite3session_changeset.html
- sqlite3session_changeset_size - session/sqlite3session_changeset_size.html
- sqlite3session_changeset_strm - session/sqlite3changegroup_add_strm.html
- sqlite3session_config - session/sqlite3session_config.html
- sqlite3session_create - session/sqlite3session_create.html
- sqlite3session_delete - session/sqlite3session_delete.html
- sqlite3session_diff - session/sqlite3session_diff.html
- sqlite3session_enable - session/sqlite3session_enable.html
- sqlite3session_indirect - session/sqlite3session_indirect.html
- sqlite3session_isempty - session/sqlite3session_isempty.html
- sqlite3session_memory_used - session/sqlite3session_memory_used.html
- sqlite3session_object_config - session/sqlite3session_object_config.html
- sqlite3session_patchset - session/sqlite3session_patchset.html
- sqlite3session_patchset_strm - session/sqlite3changegroup_add_strm.html
- sqlite3session_table_filter - session/sqlite3session_table_filter.html
- SQLITE_4_BYTE_ALIGNED_MALLOC - compile.html#4_byte_aligned_malloc
- SQLITE_ABORT - rescode.html#abort
- SQLITE_ABORT_ROLLBACK - rescode.html#abort_rollback
- SQLITE_ACCESS_EXISTS - c3ref/c_access_exists.html
- SQLITE_ACCESS_READ - c3ref/c_access_exists.html
- SQLITE_ACCESS_READWRITE - c3ref/c_access_exists.html
- SQLITE_ALLOW_COVERING_INDEX_SCAN - compile.html#allow_covering_index_scan
- SQLITE_ALLOW_URI_AUTHORITY - compile.html#allow_uri_authority
- SQLITE_ALTER_TABLE - c3ref/c_alter_table.html
- SQLITE_ANALYZE - c3ref/c_alter_table.html
- SQLITE_ANY - c3ref/c_any.html
- SQLITE_API - compile.html#api
- SQLITE_APICALL - compile.html#apicall
- SQLITE_ATTACH - c3ref/c_alter_table.html
- SQLITE_AUTH - rescode.html#auth
- SQLITE_AUTH_USER - rescode.html#auth_user
- SQLITE_BLOB - c3ref/c_blob.html
- SQLITE_BUSY - rescode.html#busy
- SQLITE_BUSY_RECOVERY - rescode.html#busy_recovery
- SQLITE_BUSY_SNAPSHOT - rescode.html#busy_snapshot
- SQLITE_BUSY_TIMEOUT - rescode.html#busy_timeout
- SQLITE_BYTEORDER - compile.html#byteorder
- SQLITE_CALLBACK - compile.html#callback
- SQLITE_CANTOPEN - rescode.html#cantopen
- SQLITE_CANTOPEN_CONVPATH - rescode.html#cantopen_convpath
- SQLITE_CANTOPEN_DIRTYWAL - rescode.html#cantopen_dirtywal
- SQLITE_CANTOPEN_FULLPATH - rescode.html#cantopen_fullpath
- SQLITE_CANTOPEN_ISDIR - rescode.html#cantopen_isdir
- SQLITE_CANTOPEN_NOTEMPDIR - rescode.html#cantopen_notempdir
- SQLITE_CANTOPEN_SYMLINK - rescode.html#cantopen_symlink
- SQLITE_CASE_SENSITIVE_LIKE - compile.html#case_sensitive_like
- SQLITE_CDECL - compile.html#cdecl
- SQLITE_CHANGESET_ABORT - session/c_changeset_abort.html
- SQLITE_CHANGESET_CONFLICT - session/c_changeset_conflict.html
- SQLITE_CHANGESET_CONSTRAINT - session/c_changeset_conflict.html
- SQLITE_CHANGESET_DATA - session/c_changeset_conflict.html
- SQLITE_CHANGESET_FOREIGN_KEY - session/c_changeset_conflict.html
- SQLITE_CHANGESET_NOTFOUND - session/c_changeset_conflict.html
- SQLITE_CHANGESET_OMIT - session/c_changeset_abort.html
- SQLITE_CHANGESET_REPLACE - session/c_changeset_abort.html
- SQLITE_CHANGESETAPPLY_FKNOACTION - session/c_changesetapply_fknoaction.html
- SQLITE_CHANGESETAPPLY_IGNORENOOP - session/c_changesetapply_fknoaction.html
- SQLITE_CHANGESETAPPLY_INVERT - session/c_changesetapply_fknoaction.html
- SQLITE_CHANGESETAPPLY_NOSAVEPOINT - session/c_changesetapply_fknoaction.html
- SQLITE_CHANGESETSTART_INVERT - session/c_changesetstart_invert.html
- SQLITE_CHECKPOINT_FULL - c3ref/c_checkpoint_full.html
- SQLITE_CHECKPOINT_PASSIVE - c3ref/c_checkpoint_full.html
- SQLITE_CHECKPOINT_RESTART - c3ref/c_checkpoint_full.html
- SQLITE_CHECKPOINT_TRUNCATE - c3ref/c_checkpoint_full.html
- sqlite_compileoption_get - lang_corefunc.html#sqlite_compileoption_get
- sqlite_compileoption_get SQL function - lang_corefunc.html#sqlite_compileoption_get
- sqlite_compileoption_used - lang_corefunc.html#sqlite_compileoption_used
- sqlite_compileoption_used SQL function - lang_corefunc.html#sqlite_compileoption_used
- SQLITE_CONFIG_COVERING_INDEX_SCAN - c3ref/c_config_covering_index_scan.html#sqliteconfigcoveringindexscan
- SQLITE_CONFIG_GETMALLOC - c3ref/c_config_covering_index_scan.html#sqliteconfiggetmalloc
- SQLITE_CONFIG_GETMUTEX - c3ref/c_config_covering_index_scan.html#sqliteconfiggetmutex
- SQLITE_CONFIG_GETPCACHE - c3ref/c_config_covering_index_scan.html#sqliteconfiggetpcache
- SQLITE_CONFIG_GETPCACHE2 - c3ref/c_config_covering_index_scan.html#sqliteconfiggetpcache2
- SQLITE_CONFIG_HEAP - c3ref/c_config_covering_index_scan.html#sqliteconfigheap
- SQLITE_CONFIG_LOG - c3ref/c_config_covering_index_scan.html#sqliteconfiglog
- SQLITE_CONFIG_LOOKASIDE - c3ref/c_config_covering_index_scan.html#sqliteconfiglookaside
- SQLITE_CONFIG_MALLOC - c3ref/c_config_covering_index_scan.html#sqliteconfigmalloc
- SQLITE_CONFIG_MEMDB_MAXSIZE - c3ref/c_config_covering_index_scan.html#sqliteconfigmemdbmaxsize
- SQLITE_CONFIG_MEMSTATUS - c3ref/c_config_covering_index_scan.html#sqliteconfigmemstatus
- SQLITE_CONFIG_MMAP_SIZE - c3ref/c_config_covering_index_scan.html#sqliteconfigmmapsize
- SQLITE_CONFIG_MULTITHREAD - c3ref/c_config_covering_index_scan.html#sqliteconfigmultithread
- SQLITE_CONFIG_MUTEX - c3ref/c_config_covering_index_scan.html#sqliteconfigmutex
- SQLITE_CONFIG_PAGECACHE - c3ref/c_config_covering_index_scan.html#sqliteconfigpagecache
- SQLITE_CONFIG_PCACHE - c3ref/c_config_covering_index_scan.html#sqliteconfigpcache
- SQLITE_CONFIG_PCACHE2 - c3ref/c_config_covering_index_scan.html#sqliteconfigpcache2
- SQLITE_CONFIG_PCACHE_HDRSZ - c3ref/c_config_covering_index_scan.html#sqliteconfigpcachehdrsz
- SQLITE_CONFIG_PMASZ - c3ref/c_config_covering_index_scan.html#sqliteconfigpmasz
- SQLITE_CONFIG_ROWID_IN_VIEW - c3ref/c_config_covering_index_scan.html#sqliteconfigrowidinview
- SQLITE_CONFIG_SCRATCH - c3ref/c_config_covering_index_scan.html#sqliteconfigscratch
- SQLITE_CONFIG_SERIALIZED - c3ref/c_config_covering_index_scan.html#sqliteconfigserialized
- SQLITE_CONFIG_SINGLETHREAD - c3ref/c_config_covering_index_scan.html#sqliteconfigsinglethread
- SQLITE_CONFIG_SMALL_MALLOC - c3ref/c_config_covering_index_scan.html#sqliteconfigsmallmalloc
- SQLITE_CONFIG_SORTERREF_SIZE - c3ref/c_config_covering_index_scan.html#sqliteconfigsorterrefsize
- SQLITE_CONFIG_SQLLOG - c3ref/c_config_covering_index_scan.html#sqliteconfigsqllog
- SQLITE_CONFIG_STMTJRNL_SPILL - c3ref/c_config_covering_index_scan.html#sqliteconfigstmtjrnlspill
- SQLITE_CONFIG_URI - c3ref/c_config_covering_index_scan.html#sqliteconfiguri
- SQLITE_CONFIG_WIN32_HEAPSIZE - c3ref/c_config_covering_index_scan.html#sqliteconfigwin32heapsize
- SQLITE_CONSTRAINT - rescode.html#constraint
- SQLITE_CONSTRAINT_CHECK - rescode.html#constraint_check
- SQLITE_CONSTRAINT_COMMITHOOK - rescode.html#constraint_commithook
- SQLITE_CONSTRAINT_DATATYPE - rescode.html#constraint_datatype
- SQLITE_CONSTRAINT_FOREIGNKEY - rescode.html#constraint_foreignkey
- SQLITE_CONSTRAINT_FUNCTION - rescode.html#constraint_function
- SQLITE_CONSTRAINT_NOTNULL - rescode.html#constraint_notnull
- SQLITE_CONSTRAINT_PINNED - rescode.html#constraint_pinned
- SQLITE_CONSTRAINT_PRIMARYKEY - rescode.html#constraint_primarykey
- SQLITE_CONSTRAINT_ROWID - rescode.html#constraint_rowid
- SQLITE_CONSTRAINT_TRIGGER - rescode.html#constraint_trigger
- SQLITE_CONSTRAINT_UNIQUE - rescode.html#constraint_unique
- SQLITE_CONSTRAINT_VTAB - rescode.html#constraint_vtab
- SQLITE_COPY - c3ref/c_alter_table.html
- SQLITE_CORRUPT - rescode.html#corrupt
- SQLITE_CORRUPT_INDEX - rescode.html#corrupt_index
- SQLITE_CORRUPT_SEQUENCE - rescode.html#corrupt_sequence
- SQLITE_CORRUPT_VTAB - rescode.html#corrupt_vtab
- SQLITE_CREATE_INDEX - c3ref/c_alter_table.html
- SQLITE_CREATE_TABLE - c3ref/c_alter_table.html
- SQLITE_CREATE_TEMP_INDEX - c3ref/c_alter_table.html
- SQLITE_CREATE_TEMP_TABLE - c3ref/c_alter_table.html
- SQLITE_CREATE_TEMP_TRIGGER - c3ref/c_alter_table.html
- SQLITE_CREATE_TEMP_VIEW - c3ref/c_alter_table.html
- SQLITE_CREATE_TRIGGER - c3ref/c_alter_table.html
- SQLITE_CREATE_VIEW - c3ref/c_alter_table.html
- SQLITE_CREATE_VTABLE - c3ref/c_alter_table.html
- SQLITE_DBCONFIG_DEFENSIVE - c3ref/c_dbconfig_defensive.html#sqlitedbconfigdefensive
- SQLITE_DBCONFIG_DQS_DDL - c3ref/c_dbconfig_defensive.html#sqlitedbconfigdqsddl
- SQLITE_DBCONFIG_DQS_DML - c3ref/c_dbconfig_defensive.html#sqlitedbconfigdqsdml
- SQLITE_DBCONFIG_ENABLE_FKEY - c3ref/c_dbconfig_defensive.html#sqlitedbconfigenablefkey
- SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER - c3ref/c_dbconfig_defensive.html#sqlitedbconfigenablefts3tokenizer
- SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION - c3ref/c_dbconfig_defensive.html#sqlitedbconfigenableloadextension
- SQLITE_DBCONFIG_ENABLE_QPSG - c3ref/c_dbconfig_defensive.html#sqlitedbconfigenableqpsg
- SQLITE_DBCONFIG_ENABLE_TRIGGER - c3ref/c_dbconfig_defensive.html#sqlitedbconfigenabletrigger
- SQLITE_DBCONFIG_ENABLE_VIEW - c3ref/c_dbconfig_defensive.html#sqlitedbconfigenableview
- SQLITE_DBCONFIG_LEGACY_ALTER_TABLE - c3ref/c_dbconfig_defensive.html#sqlitedbconfiglegacyaltertable
- SQLITE_DBCONFIG_LEGACY_FILE_FORMAT - c3ref/c_dbconfig_defensive.html#sqlitedbconfiglegacyfileformat
- SQLITE_DBCONFIG_LOOKASIDE - c3ref/c_dbconfig_defensive.html#sqlitedbconfiglookaside
- SQLITE_DBCONFIG_MAINDBNAME - c3ref/c_dbconfig_defensive.html#sqlitedbconfigmaindbname
- SQLITE_DBCONFIG_MAX - c3ref/c_dbconfig_defensive.html
- SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE - c3ref/c_dbconfig_defensive.html#sqlitedbconfignockptonclose
- SQLITE_DBCONFIG_RESET_DATABASE - c3ref/c_dbconfig_defensive.html#sqlitedbconfigresetdatabase
- SQLITE_DBCONFIG_REVERSE_SCANORDER - c3ref/c_dbconfig_defensive.html#sqlitedbconfigreversescanorder
- SQLITE_DBCONFIG_STMT_SCANSTATUS - c3ref/c_dbconfig_defensive.html#sqlitedbconfigstmtscanstatus
- SQLITE_DBCONFIG_TRIGGER_EQP - c3ref/c_dbconfig_defensive.html#sqlitedbconfigtriggereqp
- SQLITE_DBCONFIG_TRUSTED_SCHEMA - c3ref/c_dbconfig_defensive.html#sqlitedbconfigtrustedschema
- SQLITE_DBCONFIG_WRITABLE_SCHEMA - c3ref/c_dbconfig_defensive.html#sqlitedbconfigwritableschema
- sqlite_dbpage - dbpage.html
- SQLITE_DBPAGE virtual table - dbpage.html
- SQLITE_DBSTATUS options - c3ref/c_dbstatus_options.html
- SQLITE_DBSTATUS_CACHE_HIT - c3ref/c_dbstatus_options.html#sqlitedbstatuscachehit
- SQLITE_DBSTATUS_CACHE_MISS - c3ref/c_dbstatus_options.html#sqlitedbstatuscachemiss
- SQLITE_DBSTATUS_CACHE_SPILL - c3ref/c_dbstatus_options.html#sqlitedbstatuscachespill
- SQLITE_DBSTATUS_CACHE_USED - c3ref/c_dbstatus_options.html#sqlitedbstatuscacheused
- SQLITE_DBSTATUS_CACHE_USED_SHARED - c3ref/c_dbstatus_options.html#sqlitedbstatuscacheusedshared
- SQLITE_DBSTATUS_CACHE_WRITE - c3ref/c_dbstatus_options.html#sqlitedbstatuscachewrite
- SQLITE_DBSTATUS_DEFERRED_FKS - c3ref/c_dbstatus_options.html#sqlitedbstatusdeferredfks
- SQLITE_DBSTATUS_LOOKASIDE_HIT - c3ref/c_dbstatus_options.html#sqlitedbstatuslookasidehit
- SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL - c3ref/c_dbstatus_options.html#sqlitedbstatuslookasidemissfull
- SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE - c3ref/c_dbstatus_options.html#sqlitedbstatuslookasidemisssize
- SQLITE_DBSTATUS_LOOKASIDE_USED - c3ref/c_dbstatus_options.html#sqlitedbstatuslookasideused
- SQLITE_DBSTATUS_MAX - c3ref/c_dbstatus_options.html
- SQLITE_DBSTATUS_SCHEMA_USED - c3ref/c_dbstatus_options.html#sqlitedbstatusschemaused
- SQLITE_DBSTATUS_STMT_USED - c3ref/c_dbstatus_options.html#sqlitedbstatusstmtused
- SQLITE_DEBUG - compile.html#debug
- SQLITE_DEFAULT_AUTOMATIC_INDEX - compile.html#default_automatic_index
- SQLITE_DEFAULT_AUTOVACUUM - compile.html#default_autovacuum
- SQLITE_DEFAULT_CACHE_SIZE - compile.html#default_cache_size
- SQLITE_DEFAULT_FILE_FORMAT - compile.html#default_file_format
- SQLITE_DEFAULT_FILE_PERMISSIONS - compile.html#default_file_permissions
- SQLITE_DEFAULT_FOREIGN_KEYS - compile.html#default_foreign_keys
- SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT - compile.html#default_journal_size_limit
- SQLITE_DEFAULT_LOCKING_MODE - compile.html#default_locking_mode
- SQLITE_DEFAULT_LOOKASIDE - compile.html#default_lookaside
- SQLITE_DEFAULT_MEMSTATUS - compile.html#default_memstatus
- SQLITE_DEFAULT_MMAP_SIZE - compile.html#default_mmap_size
- SQLITE_DEFAULT_PAGE_SIZE - compile.html#default_page_size
- SQLITE_DEFAULT_PCACHE_INITSZ - compile.html#default_pcache_initsz
- SQLITE_DEFAULT_SYNCHRONOUS - compile.html#default_synchronous
- SQLITE_DEFAULT_WAL_AUTOCHECKPOINT - compile.html#default_wal_autocheckpoint
- SQLITE_DEFAULT_WAL_SYNCHRONOUS - compile.html#default_wal_synchronous
- SQLITE_DEFAULT_WORKER_THREADS - compile.html#default_worker_threads
- SQLITE_DELETE - c3ref/c_alter_table.html
- SQLITE_DENY - c3ref/c_deny.html
- SQLITE_DESERIALIZE_FREEONCLOSE - c3ref/c_deserialize_freeonclose.html
- SQLITE_DESERIALIZE_READONLY - c3ref/c_deserialize_freeonclose.html
- SQLITE_DESERIALIZE_RESIZEABLE - c3ref/c_deserialize_freeonclose.html
- SQLITE_DETACH - c3ref/c_alter_table.html
- SQLITE_DETERMINISTIC - c3ref/c_deterministic.html#sqlitedeterministic
- SQLITE_DIRECT_OVERFLOW_READ - compile.html#direct_overflow_read
- SQLITE_DIRECTONLY - c3ref/c_deterministic.html#sqlitedirectonly
- SQLITE_DISABLE_DIRSYNC - compile.html#disable_dirsync
- SQLITE_DISABLE_FTS3_UNICODE - compile.html#disable_fts3_unicode
- SQLITE_DISABLE_FTS4_DEFERRED - compile.html#disable_fts4_deferred
- SQLITE_DISABLE_INTRINSIC - compile.html#disable_intrinsic
- SQLITE_DISABLE_LFS - compile.html#disable_lfs
- SQLITE_DISABLE_PAGECACHE_OVERFLOW_STATS - compile.html#disable_pagecache_overflow_stats
- SQLITE_DONE - rescode.html#done
- SQLITE_DQS - compile.html#dqs
- SQLITE_DROP_INDEX - c3ref/c_alter_table.html
- SQLITE_DROP_TABLE - c3ref/c_alter_table.html
- SQLITE_DROP_TEMP_INDEX - c3ref/c_alter_table.html
- SQLITE_DROP_TEMP_TABLE - c3ref/c_alter_table.html
- SQLITE_DROP_TEMP_TRIGGER - c3ref/c_alter_table.html
- SQLITE_DROP_TEMP_VIEW - c3ref/c_alter_table.html
- SQLITE_DROP_TRIGGER - c3ref/c_alter_table.html
- SQLITE_DROP_VIEW - c3ref/c_alter_table.html
- SQLITE_DROP_VTABLE - c3ref/c_alter_table.html
- SQLITE_EMPTY - rescode.html#empty
- SQLITE_ENABLE_8_3_NAMES - compile.html#enable_8_3_names
- SQLITE_ENABLE_API_ARMOR - compile.html#enable_api_armor
- SQLITE_ENABLE_ATOMIC_WRITE - compile.html#enable_atomic_write
- SQLITE_ENABLE_BATCH_ATOMIC_WRITE - compile.html#enable_batch_atomic_write
- SQLITE_ENABLE_BYTECODE_VTAB - compile.html#enable_bytecode_vtab
- SQLITE_ENABLE_COLUMN_METADATA - compile.html#enable_column_metadata
- SQLITE_ENABLE_DBPAGE_VTAB - compile.html#enable_dbpage_vtab
- SQLITE_ENABLE_DBSTAT_VTAB - compile.html#enable_dbstat_vtab
- SQLITE_ENABLE_DESERIALIZE - compile.html#enable_deserialize
- SQLITE_ENABLE_EXPLAIN_COMMENTS - compile.html#enable_explain_comments
- SQLITE_ENABLE_FTS3 - compile.html#enable_fts3
- SQLITE_ENABLE_FTS3_PARENTHESIS - compile.html#enable_fts3_parenthesis
- SQLITE_ENABLE_FTS3_TOKENIZER - compile.html#enable_fts3_tokenizer
- SQLITE_ENABLE_FTS4 - compile.html#enable_fts4
- SQLITE_ENABLE_FTS5 - compile.html#enable_fts5
- SQLITE_ENABLE_GEOPOLY - compile.html#enable_geopoly
- SQLITE_ENABLE_HIDDEN_COLUMNS - compile.html#enable_hidden_columns
- SQLITE_ENABLE_ICU - compile.html#enable_icu
- SQLITE_ENABLE_IOTRACE - compile.html#enable_iotrace
- SQLITE_ENABLE_JSON1 - compile.html#enable_json1
- SQLITE_ENABLE_LOCKING_STYLE - compile.html#enable_locking_style
- SQLITE_ENABLE_MATH_FUNCTIONS - compile.html#enable_math_functions
- SQLITE_ENABLE_MEMORY_MANAGEMENT - compile.html#enable_memory_management
- SQLITE_ENABLE_MEMSYS3 - compile.html#enable_memsys3
- SQLITE_ENABLE_MEMSYS5 - compile.html#enable_memsys5
- SQLITE_ENABLE_NORMALIZE - compile.html#enable_normalize
- SQLITE_ENABLE_NULL_TRIM - compile.html#enable_null_trim
- SQLITE_ENABLE_OFFSET_SQL_FUNC - compile.html#enable_offset_sql_func
- SQLITE_ENABLE_PREUPDATE_HOOK - compile.html#enable_preupdate_hook
- SQLITE_ENABLE_QPSG - compile.html#enable_qpsg
- SQLITE_ENABLE_RBU - compile.html#enable_rbu
- SQLITE_ENABLE_RTREE - compile.html#enable_rtree
- SQLITE_ENABLE_SESSION - compile.html#enable_session
- SQLITE_ENABLE_SNAPSHOT - compile.html#enable_snapshot
- SQLITE_ENABLE_SORTER_REFERENCES - compile.html#enable_sorter_references
- SQLITE_ENABLE_SQLLOG - compile.html#enable_sqllog
- SQLITE_ENABLE_STAT2 - compile.html#enable_stat2
- SQLITE_ENABLE_STAT3 - compile.html#enable_stat3
- SQLITE_ENABLE_STAT4 - compile.html#enable_stat4
- SQLITE_ENABLE_STMT_SCANSTATUS - compile.html#enable_stmt_scanstatus
- SQLITE_ENABLE_STMTVTAB - compile.html#enable_stmtvtab
- SQLITE_ENABLE_TREE_EXPLAIN - compile.html#enable_tree_explain
- SQLITE_ENABLE_UNKNOWN_SQL_FUNCTION - compile.html#enable_unknown_sql_function
- SQLITE_ENABLE_UNLOCK_NOTIFY - compile.html#enable_unlock_notify
- SQLITE_ENABLE_UPDATE_DELETE_LIMIT - compile.html#enable_update_delete_limit
- SQLITE_ERROR - rescode.html#error
- SQLITE_ERROR_MISSING_COLLSEQ - rescode.html#error_missing_collseq
- SQLITE_ERROR_RETRY - rescode.html#error_retry
- SQLITE_ERROR_SNAPSHOT - rescode.html#error_snapshot
- SQLITE_EXTERN - compile.html#extern
- SQLITE_EXTRA_DURABLE - compile.html#extra_durable
- SQLITE_FAIL - c3ref/c_fail.html
- SQLITE_FCNTL_BEGIN_ATOMIC_WRITE - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlbeginatomicwrite
- SQLITE_FCNTL_BUSYHANDLER - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlbusyhandler
- SQLITE_FCNTL_CHUNK_SIZE - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlchunksize
- SQLITE_FCNTL_CKPT_DONE - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlckptdone
- SQLITE_FCNTL_CKPT_START - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlckptstart
- SQLITE_FCNTL_CKSM_FILE - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlcksmfile
- SQLITE_FCNTL_COMMIT_ATOMIC_WRITE - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlcommitatomicwrite
- SQLITE_FCNTL_COMMIT_PHASETWO - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlcommitphasetwo
- SQLITE_FCNTL_DATA_VERSION - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntldataversion
- SQLITE_FCNTL_EXTERNAL_READER - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlexternalreader
- SQLITE_FCNTL_FILE_POINTER - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlfilepointer
- SQLITE_FCNTL_GET_LOCKPROXYFILE - c3ref/c_fcntl_begin_atomic_write.html
- SQLITE_FCNTL_HAS_MOVED - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlhasmoved
- SQLITE_FCNTL_JOURNAL_POINTER - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntljournalpointer
- SQLITE_FCNTL_LAST_ERRNO - c3ref/c_fcntl_begin_atomic_write.html
- SQLITE_FCNTL_LOCK_TIMEOUT - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntllocktimeout
- SQLITE_FCNTL_LOCKSTATE - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntllockstate
- SQLITE_FCNTL_MMAP_SIZE - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlmmapsize
- SQLITE_FCNTL_OVERWRITE - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntloverwrite
- SQLITE_FCNTL_PDB - c3ref/c_fcntl_begin_atomic_write.html
- SQLITE_FCNTL_PERSIST_WAL - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpersistwal
- SQLITE_FCNTL_POWERSAFE_OVERWRITE - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpowersafeoverwrite
- SQLITE_FCNTL_PRAGMA - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpragma
- SQLITE_FCNTL_RBU - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlrbu
- SQLITE_FCNTL_RESERVE_BYTES - c3ref/c_fcntl_begin_atomic_write.html
- SQLITE_FCNTL_RESET_CACHE - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlresetcache
- SQLITE_FCNTL_ROLLBACK_ATOMIC_WRITE - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlrollbackatomicwrite
- SQLITE_FCNTL_SET_LOCKPROXYFILE - c3ref/c_fcntl_begin_atomic_write.html
- SQLITE_FCNTL_SIZE_HINT - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlsizehint
- SQLITE_FCNTL_SIZE_LIMIT - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlsizelimit
- SQLITE_FCNTL_SYNC - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlsync
- SQLITE_FCNTL_SYNC_OMITTED - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlsyncomitted
- SQLITE_FCNTL_TEMPFILENAME - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntltempfilename
- SQLITE_FCNTL_TRACE - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntltrace
- SQLITE_FCNTL_VFS_POINTER - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlvfspointer
- SQLITE_FCNTL_VFSNAME - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlvfsname
- SQLITE_FCNTL_WAL_BLOCK - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlwalblock
- SQLITE_FCNTL_WIN32_AV_RETRY - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlwin32avretry
- SQLITE_FCNTL_WIN32_GET_HANDLE - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlwin32gethandle
- SQLITE_FCNTL_WIN32_SET_HANDLE - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlwin32sethandle
- SQLITE_FCNTL_ZIPVFS - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlzipvfs
- SQLITE_FLOAT - c3ref/c_blob.html
- SQLITE_FORMAT - rescode.html#format
- SQLITE_FTS3_MAX_EXPR_DEPTH - compile.html#fts3_max_expr_depth
- SQLITE_FULL - rescode.html#full
- SQLITE_FUNCTION - c3ref/c_alter_table.html
- SQLITE_HAVE_ISNAN - compile.html#have_isnan
- SQLITE_HAVE_ZLIB - compile.html#have_zlib
- SQLITE_IGNORE - c3ref/c_deny.html
- SQLITE_INDEX_CONSTRAINT_EQ - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_FUNCTION - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_GE - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_GLOB - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_GT - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_IS - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_ISNOT - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_ISNOTNULL - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_ISNULL - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_LE - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_LIKE - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_LIMIT - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_LT - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_MATCH - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_NE - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_OFFSET - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_REGEXP - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_SCAN_UNIQUE - c3ref/c_index_scan_unique.html
- SQLITE_INNOCUOUS - c3ref/c_deterministic.html#sqliteinnocuous
- SQLITE_INSERT - c3ref/c_alter_table.html
- sqlite_int64 - c3ref/int64.html
- SQLITE_INTEGER - c3ref/c_blob.html
- SQLITE_INTERNAL - rescode.html#internal
- SQLITE_INTERRUPT - rescode.html#interrupt
- SQLITE_INTROSPECTION_PRAGMAS - compile.html#introspection_pragmas
- SQLITE_IOCAP_ATOMIC - c3ref/c_iocap_atomic.html
- SQLITE_IOCAP_ATOMIC1K - c3ref/c_iocap_atomic.html
- SQLITE_IOCAP_ATOMIC2K - c3ref/c_iocap_atomic.html
- SQLITE_IOCAP_ATOMIC4K - c3ref/c_iocap_atomic.html
- SQLITE_IOCAP_ATOMIC8K - c3ref/c_iocap_atomic.html
- SQLITE_IOCAP_ATOMIC16K - c3ref/c_iocap_atomic.html
- SQLITE_IOCAP_ATOMIC32K - c3ref/c_iocap_atomic.html
- SQLITE_IOCAP_ATOMIC64K - c3ref/c_iocap_atomic.html
- SQLITE_IOCAP_ATOMIC512 - c3ref/c_iocap_atomic.html
- SQLITE_IOCAP_BATCH_ATOMIC - c3ref/c_iocap_atomic.html
- SQLITE_IOCAP_IMMUTABLE - c3ref/c_iocap_atomic.html
- SQLITE_IOCAP_POWERSAFE_OVERWRITE - c3ref/c_iocap_atomic.html
- SQLITE_IOCAP_SAFE_APPEND - c3ref/c_iocap_atomic.html
- SQLITE_IOCAP_SEQUENTIAL - c3ref/c_iocap_atomic.html
- SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN - c3ref/c_iocap_atomic.html
- SQLITE_IOERR - rescode.html#ioerr
- SQLITE_IOERR_ACCESS - rescode.html#ioerr_access
- SQLITE_IOERR_AUTH - rescode.html#ioerr_auth
- SQLITE_IOERR_BEGIN_ATOMIC - rescode.html#ioerr_begin_atomic
- SQLITE_IOERR_BLOCKED - rescode.html#ioerr_blocked
- SQLITE_IOERR_CHECKRESERVEDLOCK - rescode.html#ioerr_checkreservedlock
- SQLITE_IOERR_CLOSE - rescode.html#ioerr_close
- SQLITE_IOERR_COMMIT_ATOMIC - rescode.html#ioerr_commit_atomic
- SQLITE_IOERR_CONVPATH - rescode.html#ioerr_convpath
- SQLITE_IOERR_CORRUPTFS - rescode.html#ioerr_corruptfs
- SQLITE_IOERR_DATA - rescode.html#ioerr_data
- SQLITE_IOERR_DELETE - rescode.html#ioerr_delete
- SQLITE_IOERR_DELETE_NOENT - rescode.html#ioerr_delete_noent
- SQLITE_IOERR_DIR_CLOSE - rescode.html#ioerr_dir_close
- SQLITE_IOERR_DIR_FSYNC - rescode.html#ioerr_dir_fsync
- SQLITE_IOERR_FSTAT - rescode.html#ioerr_fstat
- SQLITE_IOERR_FSYNC - rescode.html#ioerr_fsync
- SQLITE_IOERR_GETTEMPPATH - rescode.html#ioerr_gettemppath
- SQLITE_IOERR_IN_PAGE - c3ref/c_abort_rollback.html
- SQLITE_IOERR_LOCK - rescode.html#ioerr_lock
- SQLITE_IOERR_MMAP - rescode.html#ioerr_mmap
- SQLITE_IOERR_NOMEM - rescode.html#ioerr_nomem
- SQLITE_IOERR_RDLOCK - rescode.html#ioerr_rdlock
- SQLITE_IOERR_READ - rescode.html#ioerr_read
- SQLITE_IOERR_ROLLBACK_ATOMIC - rescode.html#ioerr_rollback_atomic
- SQLITE_IOERR_SEEK - rescode.html#ioerr_seek
- SQLITE_IOERR_SHMLOCK - rescode.html#ioerr_shmlock
- SQLITE_IOERR_SHMMAP - rescode.html#ioerr_shmmap
- SQLITE_IOERR_SHMOPEN - rescode.html#ioerr_shmopen
- SQLITE_IOERR_SHMSIZE - rescode.html#ioerr_shmsize
- SQLITE_IOERR_SHORT_READ - rescode.html#ioerr_short_read
- SQLITE_IOERR_TRUNCATE - rescode.html#ioerr_truncate
- SQLITE_IOERR_UNLOCK - rescode.html#ioerr_unlock
- SQLITE_IOERR_VNODE - rescode.html#ioerr_vnode
- SQLITE_IOERR_WRITE - rescode.html#ioerr_write
- SQLITE_JSON_MAX_DEPTH - compile.html#json_max_depth
- SQLITE_LIKE_DOESNT_MATCH_BLOBS - compile.html#like_doesnt_match_blobs
- SQLITE_LIMIT_ATTACHED - c3ref/c_limit_attached.html#sqlitelimitattached
- SQLITE_LIMIT_COLUMN - c3ref/c_limit_attached.html#sqlitelimitcolumn
- SQLITE_LIMIT_COMPOUND_SELECT - c3ref/c_limit_attached.html#sqlitelimitcompoundselect
- SQLITE_LIMIT_EXPR_DEPTH - c3ref/c_limit_attached.html#sqlitelimitexprdepth
- SQLITE_LIMIT_FUNCTION_ARG - c3ref/c_limit_attached.html#sqlitelimitfunctionarg
- SQLITE_LIMIT_LENGTH - c3ref/c_limit_attached.html#sqlitelimitlength
- SQLITE_LIMIT_LIKE_PATTERN_LENGTH - c3ref/c_limit_attached.html#sqlitelimitlikepatternlength
- SQLITE_LIMIT_SQL_LENGTH - c3ref/c_limit_attached.html#sqlitelimitsqllength
- SQLITE_LIMIT_TRIGGER_DEPTH - c3ref/c_limit_attached.html#sqlitelimittriggerdepth
- SQLITE_LIMIT_VARIABLE_NUMBER - c3ref/c_limit_attached.html#sqlitelimitvariablenumber
- SQLITE_LIMIT_VDBE_OP - c3ref/c_limit_attached.html#sqlitelimitvdbeop
- SQLITE_LIMIT_WORKER_THREADS - c3ref/c_limit_attached.html#sqlitelimitworkerthreads
- SQLITE_LOCK_EXCLUSIVE - c3ref/c_lock_exclusive.html
- SQLITE_LOCK_NONE - c3ref/c_lock_exclusive.html
- SQLITE_LOCK_PENDING - c3ref/c_lock_exclusive.html
- SQLITE_LOCK_RESERVED - c3ref/c_lock_exclusive.html
- SQLITE_LOCK_SHARED - c3ref/c_lock_exclusive.html
- SQLITE_LOCKED - rescode.html#locked
- SQLITE_LOCKED_SHAREDCACHE - rescode.html#locked_sharedcache
- SQLITE_LOCKED_VTAB - rescode.html#locked_vtab
- sqlite_master table - schematab.html
- SQLITE_MAX_ALLOCATION_SIZE - compile.html#max_allocation_size
- SQLITE_MAX_ATTACHED - limits.html#max_attached
- SQLITE_MAX_COLUMN - limits.html#max_column
- SQLITE_MAX_COMPOUND_SELECT - limits.html#max_compound_select
- SQLITE_MAX_EXPR_DEPTH - limits.html#max_expr_depth
- SQLITE_MAX_FUNCTION_ARG - limits.html#max_function_arg
- SQLITE_MAX_LENGTH - limits.html#max_length
- SQLITE_MAX_LIKE_PATTERN_LENGTH - limits.html#max_like_pattern_length
- SQLITE_MAX_MEMORY - compile.html#max_memory
- SQLITE_MAX_MMAP_SIZE - compile.html#max_mmap_size
- SQLITE_MAX_PAGE_COUNT - limits.html#max_page_count
- SQLITE_MAX_SCHEMA_RETRY - compile.html#max_schema_retry
- SQLITE_MAX_SQL_LENGTH - limits.html#max_sql_length
- SQLITE_MAX_TRIGGER_DEPTH - limits.html#max_trigger_depth
- SQLITE_MAX_VARIABLE_NUMBER - limits.html#max_variable_number
- SQLITE_MAX_WORKER_THREADS - compile.html#max_worker_threads
- SQLITE_MEMDB_DEFAULT_MAXSIZE - compile.html#memdb_default_maxsize
- SQLITE_MEMDEBUG - compile.html#memdebug
- sqlite_memstat - memstat.html
- SQLITE_MEMSTAT virtual table - memstat.html
- SQLITE_MINIMUM_FILE_DESCRIPTOR - compile.html#minimum_file_descriptor
- SQLITE_MISMATCH - rescode.html#mismatch
- SQLITE_MISUSE - rescode.html#misuse
- SQLITE_MUTEX_FAST - c3ref/c_mutex_fast.html
- SQLITE_MUTEX_RECURSIVE - c3ref/c_mutex_fast.html
- SQLITE_MUTEX_STATIC_APP1 - c3ref/c_mutex_fast.html
- SQLITE_MUTEX_STATIC_APP2 - c3ref/c_mutex_fast.html
- SQLITE_MUTEX_STATIC_APP3 - c3ref/c_mutex_fast.html
- SQLITE_MUTEX_STATIC_LRU - c3ref/c_mutex_fast.html
- SQLITE_MUTEX_STATIC_LRU2 - c3ref/c_mutex_fast.html
- SQLITE_MUTEX_STATIC_MAIN - c3ref/c_mutex_fast.html
- SQLITE_MUTEX_STATIC_MEM - c3ref/c_mutex_fast.html
- SQLITE_MUTEX_STATIC_MEM2 - c3ref/c_mutex_fast.html
- SQLITE_MUTEX_STATIC_OPEN - c3ref/c_mutex_fast.html
- SQLITE_MUTEX_STATIC_PMEM - c3ref/c_mutex_fast.html
- SQLITE_MUTEX_STATIC_PRNG - c3ref/c_mutex_fast.html
- SQLITE_MUTEX_STATIC_VFS1 - c3ref/c_mutex_fast.html
- SQLITE_MUTEX_STATIC_VFS2 - c3ref/c_mutex_fast.html
- SQLITE_MUTEX_STATIC_VFS3 - c3ref/c_mutex_fast.html
- SQLITE_NOLFS - rescode.html#nolfs
- SQLITE_NOMEM - rescode.html#nomem
- SQLITE_NOTADB - rescode.html#notadb
- SQLITE_NOTFOUND - rescode.html#notfound
- SQLITE_NOTICE - rescode.html#notice
- SQLITE_NOTICE_RBU - c3ref/c_abort_rollback.html
- SQLITE_NOTICE_RECOVER_ROLLBACK - rescode.html#notice_recover_rollback
- SQLITE_NOTICE_RECOVER_WAL - rescode.html#notice_recover_wal
- SQLITE_NULL - c3ref/c_blob.html
- sqlite_offset - lang_corefunc.html#sqlite_offset
- sqlite_offset SQL function - lang_corefunc.html#sqlite_offset
- SQLITE_OK - rescode.html#ok
- SQLITE_OK_LOAD_PERMANENTLY - rescode.html#ok_load_permanently
- SQLITE_OK_SYMLINK - c3ref/c_abort_rollback.html
- SQLITE_OMIT_ALTERTABLE - compile.html#omit_altertable
- SQLITE_OMIT_ANALYZE - compile.html#omit_analyze
- SQLITE_OMIT_ATTACH - compile.html#omit_attach
- SQLITE_OMIT_AUTHORIZATION - compile.html#omit_authorization
- SQLITE_OMIT_AUTOINCREMENT - compile.html#omit_autoincrement
- SQLITE_OMIT_AUTOINIT - compile.html#omit_autoinit
- SQLITE_OMIT_AUTOMATIC_INDEX - compile.html#omit_automatic_index
- SQLITE_OMIT_AUTORESET - compile.html#omit_autoreset
- SQLITE_OMIT_AUTOVACUUM - compile.html#omit_autovacuum
- SQLITE_OMIT_BETWEEN_OPTIMIZATION - compile.html#omit_between_optimization
- SQLITE_OMIT_BLOB_LITERAL - compile.html#omit_blob_literal
- SQLITE_OMIT_BTREECOUNT - compile.html#omit_btreecount
- SQLITE_OMIT_BUILTIN_TEST - compile.html#omit_builtin_test
- SQLITE_OMIT_CASE_SENSITIVE_LIKE_PRAGMA - compile.html#omit_case_sensitive_like_pragma
- SQLITE_OMIT_CAST - compile.html#omit_cast
- SQLITE_OMIT_CHECK - compile.html#omit_check
- SQLITE_OMIT_COMPILEOPTION_DIAGS - compile.html#omit_compileoption_diags
- SQLITE_OMIT_COMPLETE - compile.html#omit_complete
- SQLITE_OMIT_COMPOUND_SELECT - compile.html#omit_compound_select
- SQLITE_OMIT_CTE - compile.html#omit_cte
- SQLITE_OMIT_DATETIME_FUNCS - compile.html#omit_datetime_funcs
- SQLITE_OMIT_DECLTYPE - compile.html#omit_decltype
- SQLITE_OMIT_DEPRECATED - compile.html#omit_deprecated
- SQLITE_OMIT_DESERIALIZE - compile.html#omit_deserialize
- SQLITE_OMIT_DISKIO - compile.html#omit_diskio
- SQLITE_OMIT_EXPLAIN - compile.html#omit_explain
- SQLITE_OMIT_FLAG_PRAGMAS - compile.html#omit_flag_pragmas
- SQLITE_OMIT_FLOATING_POINT - compile.html#omit_floating_point
- SQLITE_OMIT_FOREIGN_KEY - compile.html#omit_foreign_key
- SQLITE_OMIT_GENERATED_COLUMNS - compile.html#omit_generated_columns
- SQLITE_OMIT_GET_TABLE - compile.html#omit_get_table
- SQLITE_OMIT_HEX_INTEGER - compile.html#omit_hex_integer
- SQLITE_OMIT_INCRBLOB - compile.html#omit_incrblob
- SQLITE_OMIT_INTEGRITY_CHECK - compile.html#omit_integrity_check
- SQLITE_OMIT_INTROSPECTION_PRAGMAS - compile.html#omit_introspection_pragmas
- SQLITE_OMIT_JSON - compile.html#omit_json
- SQLITE_OMIT_LIKE_OPTIMIZATION - compile.html#omit_like_optimization
- SQLITE_OMIT_LOAD_EXTENSION - compile.html#omit_load_extension
- SQLITE_OMIT_LOCALTIME - compile.html#omit_localtime
- SQLITE_OMIT_LOOKASIDE - compile.html#omit_lookaside
- SQLITE_OMIT_MEMORYDB - compile.html#omit_memorydb
- SQLITE_OMIT_OR_OPTIMIZATION - compile.html#omit_or_optimization
- SQLITE_OMIT_PAGER_PRAGMAS - compile.html#omit_pager_pragmas
- SQLITE_OMIT_PRAGMA - compile.html#omit_pragma
- SQLITE_OMIT_PROGRESS_CALLBACK - compile.html#omit_progress_callback
- SQLITE_OMIT_QUICKBALANCE - compile.html#omit_quickbalance
- SQLITE_OMIT_REINDEX - compile.html#omit_reindex
- SQLITE_OMIT_SCHEMA_PRAGMAS - compile.html#omit_schema_pragmas
- SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS - compile.html#omit_schema_version_pragmas
- SQLITE_OMIT_SHARED_CACHE - compile.html#omit_shared_cache
- SQLITE_OMIT_SUBQUERY - compile.html#omit_subquery
- SQLITE_OMIT_TCL_VARIABLE - compile.html#omit_tcl_variable
- SQLITE_OMIT_TEMPDB - compile.html#omit_tempdb
- SQLITE_OMIT_TRACE - compile.html#omit_trace
- SQLITE_OMIT_TRIGGER - compile.html#omit_trigger
- SQLITE_OMIT_TRUNCATE_OPTIMIZATION - compile.html#omit_truncate_optimization
- SQLITE_OMIT_UTF16 - compile.html#omit_utf16
- SQLITE_OMIT_VACUUM - compile.html#omit_vacuum
- SQLITE_OMIT_VIEW - compile.html#omit_view
- SQLITE_OMIT_VIRTUALTABLE - compile.html#omit_virtualtable
- SQLITE_OMIT_WAL - compile.html#omit_wal
- SQLITE_OMIT_WINDOWFUNC - compile.html#omit_windowfunc
- SQLITE_OMIT_WSD - compile.html#omit_wsd
- SQLITE_OMIT_XFER_OPT - compile.html#omit_xfer_opt
- SQLITE_OPEN_AUTOPROXY - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_CREATE - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_DELETEONCLOSE - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_EXCLUSIVE - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_EXRESCODE - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_FULLMUTEX - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_MAIN_DB - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_MAIN_JOURNAL - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_MEMORY - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_NOFOLLOW - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_NOMUTEX - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_PRIVATECACHE - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_READONLY - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_READWRITE - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_SHAREDCACHE - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_SUBJOURNAL - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_SUPER_JOURNAL - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_TEMP_DB - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_TEMP_JOURNAL - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_TRANSIENT_DB - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_URI - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_WAL - c3ref/c_open_autoproxy.html
- SQLITE_OS_OTHER - compile.html#os_other
- SQLITE_PERM - rescode.html#perm
- SQLITE_POWERSAFE_OVERWRITE - compile.html#powersafe_overwrite
- SQLITE_PRAGMA - c3ref/c_alter_table.html
- SQLITE_PREPARE_NO_VTAB - c3ref/c_prepare_normalize.html#sqlitepreparenovtab
- SQLITE_PREPARE_NORMALIZE - c3ref/c_prepare_normalize.html#sqlitepreparenormalize
- SQLITE_PREPARE_PERSISTENT - c3ref/c_prepare_normalize.html#sqlitepreparepersistent
- SQLITE_PRINTF_PRECISION_LIMIT - compile.html#printf_precision_limit
- SQLITE_PROTOCOL - rescode.html#protocol
- SQLITE_QUERY_PLANNER_LIMIT - compile.html#query_planner_limit
- SQLITE_QUERY_PLANNER_LIMIT_INCR - compile.html#query_planner_limit_incr
- SQLITE_RANGE - rescode.html#range
- SQLITE_READ - c3ref/c_alter_table.html
- SQLITE_READONLY - rescode.html#readonly
- SQLITE_READONLY_CANTINIT - rescode.html#readonly_cantinit
- SQLITE_READONLY_CANTLOCK - rescode.html#readonly_cantlock
- SQLITE_READONLY_DBMOVED - rescode.html#readonly_dbmoved
- SQLITE_READONLY_DIRECTORY - rescode.html#readonly_directory
- SQLITE_READONLY_RECOVERY - rescode.html#readonly_recovery
- SQLITE_READONLY_ROLLBACK - rescode.html#readonly_rollback
- SQLITE_RECURSIVE - c3ref/c_alter_table.html
- SQLITE_REINDEX - c3ref/c_alter_table.html
- SQLITE_REPLACE - c3ref/c_fail.html
- SQLITE_RESULT_SUBTYPE - c3ref/c_deterministic.html#sqliteresultsubtype
- SQLITE_REVERSE_UNORDERED_SELECTS - compile.html#reverse_unordered_selects
- SQLITE_ROLLBACK - c3ref/c_fail.html
- SQLITE_ROW - rescode.html#row
- SQLITE_RTREE_INT_ONLY - compile.html#rtree_int_only
- SQLITE_SAVEPOINT - c3ref/c_alter_table.html
- SQLITE_SCANSTAT_COMPLEX - c3ref/c_scanstat_complex.html
- SQLITE_SCANSTAT_EST - c3ref/c_scanstat_est.html#sqlitescanstatest
- SQLITE_SCANSTAT_EXPLAIN - c3ref/c_scanstat_est.html#sqlitescanstatexplain
- SQLITE_SCANSTAT_NAME - c3ref/c_scanstat_est.html#sqlitescanstatname
- SQLITE_SCANSTAT_NCYCLE - c3ref/c_scanstat_est.html#sqlitescanstatncycle
- SQLITE_SCANSTAT_NLOOP - c3ref/c_scanstat_est.html#sqlitescanstatnloop
- SQLITE_SCANSTAT_NVISIT - c3ref/c_scanstat_est.html#sqlitescanstatnvisit
- SQLITE_SCANSTAT_PARENTID - c3ref/c_scanstat_est.html#sqlitescanstatparentid
- SQLITE_SCANSTAT_SELECTID - c3ref/c_scanstat_est.html#sqlitescanstatselectid
- SQLITE_SCHEMA - rescode.html#schema
- sqlite_schema - schematab.html
- sqlite_schema table - schematab.html
- SQLITE_SECURE_DELETE - compile.html#secure_delete
- SQLITE_SELECT - c3ref/c_alter_table.html
- sqlite_sequence - fileformat2.html#seqtab
- SQLITE_SERIALIZE_NOCOPY - c3ref/c_serialize_nocopy.html
- SQLITE_SESSION_CONFIG_STRMSIZE - session/c_session_config_strmsize.html
- SQLITE_SESSION_OBJCONFIG_ROWID - session/c_session_objconfig_rowid.html
- SQLITE_SESSION_OBJCONFIG_SIZE - session/c_session_objconfig_rowid.html
- SQLITE_SHM_EXCLUSIVE - c3ref/c_shm_exclusive.html
- SQLITE_SHM_LOCK - c3ref/c_shm_exclusive.html
- SQLITE_SHM_NLOCK - c3ref/c_shm_nlock.html
- SQLITE_SHM_SHARED - c3ref/c_shm_exclusive.html
- SQLITE_SHM_UNLOCK - c3ref/c_shm_exclusive.html
- SQLITE_SORTER_PMASZ - compile.html#sorter_pmasz
- SQLITE_SOUNDEX - compile.html#soundex
- SQLITE_SOURCE_ID - c3ref/c_source_id.html
- sqlite_source_id - lang_corefunc.html#sqlite_source_id
- sqlite_source_id SQL function - lang_corefunc.html#sqlite_source_id
- SQLITE_STAT1 - fileformat2.html#stat1tab
- sqlite_stat1 - fileformat2.html#stat1tab
- sqlite_stat2 - fileformat2.html#stat2tab
- SQLITE_STAT3 - fileformat2.html#stat3tab
- sqlite_stat3 - fileformat2.html#stat3tab
- SQLITE_STAT4 - fileformat2.html#stat4tab
- sqlite_stat4 - fileformat2.html#stat4tab
- SQLITE_STATIC - c3ref/c_static.html
- SQLITE_STATUS_MALLOC_COUNT - c3ref/c_status_malloc_count.html#sqlitestatusmalloccount
- SQLITE_STATUS_MALLOC_SIZE - c3ref/c_status_malloc_count.html#sqlitestatusmallocsize
- SQLITE_STATUS_MEMORY_USED - c3ref/c_status_malloc_count.html#sqlitestatusmemoryused
- SQLITE_STATUS_PAGECACHE_OVERFLOW - c3ref/c_status_malloc_count.html#sqlitestatuspagecacheoverflow
- SQLITE_STATUS_PAGECACHE_SIZE - c3ref/c_status_malloc_count.html#sqlitestatuspagecachesize
- SQLITE_STATUS_PAGECACHE_USED - c3ref/c_status_malloc_count.html#sqlitestatuspagecacheused
- SQLITE_STATUS_PARSER_STACK - c3ref/c_status_malloc_count.html#sqlitestatusparserstack
- SQLITE_STATUS_SCRATCH_OVERFLOW - c3ref/c_status_malloc_count.html#sqlitestatusscratchoverflow
- SQLITE_STATUS_SCRATCH_SIZE - c3ref/c_status_malloc_count.html#sqlitestatusscratchsize
- SQLITE_STATUS_SCRATCH_USED - c3ref/c_status_malloc_count.html#sqlitestatusscratchused
- SQLITE_STDCALL - compile.html#stdcall
- sqlite_stmt - stmt.html
- SQLITE_STMT virtual table - stmt.html
- SQLITE_STMTJRNL_SPILL - compile.html#stmtjrnl_spill
- SQLITE_STMTSTATUS counter - c3ref/c_stmtstatus_counter.html
- SQLITE_STMTSTATUS counters - c3ref/c_stmtstatus_counter.html
- SQLITE_STMTSTATUS_AUTOINDEX - c3ref/c_stmtstatus_counter.html#sqlitestmtstatusautoindex
- SQLITE_STMTSTATUS_FILTER HIT - c3ref/c_stmtstatus_counter.html#sqlitestmtstatusfilterhit
- SQLITE_STMTSTATUS_FILTER_HIT - c3ref/c_stmtstatus_counter.html
- SQLITE_STMTSTATUS_FILTER_MISS - c3ref/c_stmtstatus_counter.html#sqlitestmtstatusfiltermiss
- SQLITE_STMTSTATUS_FULLSCAN_STEP - c3ref/c_stmtstatus_counter.html#sqlitestmtstatusfullscanstep
- SQLITE_STMTSTATUS_MEMUSED - c3ref/c_stmtstatus_counter.html#sqlitestmtstatusmemused
- SQLITE_STMTSTATUS_REPREPARE - c3ref/c_stmtstatus_counter.html#sqlitestmtstatusreprepare
- SQLITE_STMTSTATUS_RUN - c3ref/c_stmtstatus_counter.html#sqlitestmtstatusrun
- SQLITE_STMTSTATUS_SORT - c3ref/c_stmtstatus_counter.html#sqlitestmtstatussort
- SQLITE_STMTSTATUS_VM_STEP - c3ref/c_stmtstatus_counter.html#sqlitestmtstatusvmstep
- SQLITE_STRICT_SUBTYPE - compile.html#strict_subtype
- SQLITE_SUBTYPE - c3ref/c_deterministic.html#sqlitesubtype
- SQLITE_SYNC_DATAONLY - c3ref/c_sync_dataonly.html
- SQLITE_SYNC_FULL - c3ref/c_sync_dataonly.html
- SQLITE_SYNC_NORMAL - c3ref/c_sync_dataonly.html
- SQLITE_SYSAPI - compile.html#sysapi
- SQLITE_TCLAPI - compile.html#tclapi
- sqlite_temp_schema - schematab.html
- SQLITE_TEMP_STORE - compile.html#temp_store
- SQLITE_TESTCTRL_ALWAYS - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_ASSERT - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_BENIGN_MALLOC_HOOKS - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_BITVEC_TEST - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_BYTEORDER - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_EXPLAIN_STMT - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_EXTRA_SCHEMA_CHECKS - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_FAULT_INSTALL - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_FIRST - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_FK_NO_ACTION - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_IMPOSTER - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_INTERNAL_FUNCTIONS - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_ISINIT - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_ISKEYWORD - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_JSON_SELFCHECK - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_LAST - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_LOCALTIME_FAULT - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_LOGEST - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_NEVER_CORRUPT - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_ONCE_RESET_THRESHOLD - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_OPTIMIZATIONS - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_PARSER_COVERAGE - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_PENDING_BYTE - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_PRNG_RESET - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_PRNG_RESTORE - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_PRNG_SAVE - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_PRNG_SEED - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_RESERVE - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_RESULT_INTREAL - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_SCRATCHMALLOC - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_SEEK_COUNT - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_SORTER_MMAP - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_TRACEFLAGS - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_TUNE - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_USELONGDOUBLE - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_VDBE_COVERAGE - c3ref/c_testctrl_always.html
- SQLITE_TEXT - c3ref/c_blob.html
- SQLITE_THREADSAFE - compile.html#threadsafe
- SQLITE_TOOBIG - rescode.html#toobig
- SQLITE_TRACE - c3ref/c_trace.html
- SQLITE_TRACE_CLOSE - c3ref/c_trace.html#sqlitetraceclose
- SQLITE_TRACE_PROFILE - c3ref/c_trace.html#sqlitetraceprofile
- SQLITE_TRACE_ROW - c3ref/c_trace.html#sqlitetracerow
- SQLITE_TRACE_SIZE_LIMIT - compile.html#trace_size_limit
- SQLITE_TRACE_STMT - c3ref/c_trace.html#sqlitetracestmt
- SQLITE_TRANSACTION - c3ref/c_alter_table.html
- SQLITE_TRANSIENT - c3ref/c_static.html
- SQLITE_TRUSTED_SCHEMA - compile.html#trusted_schema
- SQLITE_TXN_NONE - c3ref/c_txn_none.html#sqlitetxnnone
- SQLITE_TXN_READ - c3ref/c_txn_none.html#sqlitetxnread
- SQLITE_TXN_WRITE - c3ref/c_txn_none.html#sqlitetxnwrite
- sqlite_uint64 - c3ref/int64.html
- SQLITE_UNTESTABLE - compile.html#untestable
- SQLITE_UPDATE - c3ref/c_alter_table.html
- SQLITE_USE_ALLOCA - compile.html#use_alloca
- SQLITE_USE_FCNTL_TRACE - compile.html#use_fcntl_trace
- SQLITE_USE_SEH - compile.html#use_seh
- SQLITE_USE_URI - compile.html#use_uri
- SQLITE_UTF8 - c3ref/c_any.html
- SQLITE_UTF16 - c3ref/c_any.html
- SQLITE_UTF16_ALIGNED - c3ref/c_any.html
- SQLITE_UTF16BE - c3ref/c_any.html
- SQLITE_UTF16LE - c3ref/c_any.html
- SQLITE_VERSION - c3ref/c_source_id.html
- sqlite_version - lang_corefunc.html#sqlite_version
- sqlite_version SQL function - lang_corefunc.html#sqlite_version
- SQLITE_VERSION_NUMBER - c3ref/c_source_id.html
- SQLITE_VTAB_CONSTRAINT_SUPPORT - c3ref/c_vtab_constraint_support.html#sqlitevtabconstraintsupport
- SQLITE_VTAB_DIRECTONLY - c3ref/c_vtab_constraint_support.html#sqlitevtabdirectonly
- SQLITE_VTAB_INNOCUOUS - c3ref/c_vtab_constraint_support.html#sqlitevtabinnocuous
- SQLITE_VTAB_USES_ALL_SCHEMAS - c3ref/c_vtab_constraint_support.html#sqlitevtabusesallschemas
- SQLITE_WARNING - rescode.html#warning
- SQLITE_WARNING_AUTOINDEX - rescode.html#warning_autoindex
- SQLITE_WIN32_DATA_DIRECTORY_TYPE - c3ref/c_win32_data_directory_type.html
- SQLITE_WIN32_HEAP_CREATE - compile.html#win32_heap_create
- SQLITE_WIN32_MALLOC - compile.html#win32_malloc
- SQLITE_WIN32_MALLOC_VALIDATE - compile.html#win32_malloc_validate
- SQLITE_WIN32_TEMP_DIRECTORY_TYPE - c3ref/c_win32_data_directory_type.html
- SQLITE_ZERO_MALLOC - compile.html#zero_malloc
- sqrt - lang_mathfunc.html#sqrt
- sqrt SQL function - lang_mathfunc.html#sqrt
- stale file descriptor - howtocorrupt.html#stalefd
- standard query parameters - uri.html#coreqp
- statement journal - tempfiles.html#stmtjrnl
- Statement journals - tempfiles.html#stmtjrnl
- statement journals - tempfiles.html#stmtjrnl
- statically linked extensions - loadext.html#statext
- stats - pragma.html#pragma_stats
- stats pragma - pragma.html#pragma_stats
- status method - tclsqlite.html#status
- status parameters - c3ref/c_status_malloc_count.html
- storage class - datatype3.html#storageclasses
- strategies - queryplanner.html#searching
- strftime - lang_datefunc.html#strftm
- strftime SQL function - lang_datefunc.html#strftm
- STRICT - stricttables.html
- STRICT table - stricttables.html
- STRICT tables - stricttables.html
- strict type checking - stricttables.html
- string_agg - lang_aggfunc.html#group_concat
- string_agg aggregate function - lang_aggfunc.html#group_concat
- subprograms - opcode.html#subprog
- Subqueries - lang_expr.html#subq
- subquery co-routines - optoverview.html#coroutines
- subsec modifier - lang_datefunc.html#subsec
- subsecond modifier - lang_datefunc.html#subsec
- substr - lang_corefunc.html#substr
- substr SQL function - lang_corefunc.html#substr
- sum - lang_aggfunc.html#sumunc
- sum aggregate function - lang_aggfunc.html#sumunc
- sumFunc - lang_aggfunc.html#sumunc
- super-journal - tempfiles.html#superjrnl
- swarmvtab - swarmvtab.html#overview
- swarmvtab context - swarmvtab.html#component_table_context_values
- synchronous - pragma.html#pragma_synchronous
- synchronous pragma - pragma.html#pragma_synchronous
- syntax diagrams - syntaxdiagrams.html
- table b-tree - fileformat2.html#btypes
- table data format - fileformat2.html##sqltab
- table-constraint - syntax/table-constraint.html
- table-constraint syntax diagram - syntax/table-constraint.html
- table-options - syntax/table-options.html
- table-options syntax diagram - syntax/table-options.html
- table-or-subquery - syntax/table-or-subquery.html
- table-or-subquery syntax diagram - syntax/table-or-subquery.html
- table-valued function - vtab.html#tabfunc2
- table-valued functions - vtab.html#tabfunc2
- table-valued functions in the FROM clause - lang_select.html#tabfunc1
- table_info - pragma.html#pragma_table_info
- table_info pragma - pragma.html#pragma_table_info
- table_list - pragma.html#pragma_table_list
- table_list pragma - pragma.html#pragma_table_list
- table_xinfo - pragma.html#pragma_table_xinfo
- table_xinfo pragma - pragma.html#pragma_table_xinfo
- tables_used virtual table - bytecodevtab.html
- tan - lang_mathfunc.html#tan
- tan SQL function - lang_mathfunc.html#tan
- tanh - lang_mathfunc.html#tanh
- tanh SQL function - lang_mathfunc.html#tanh
- Tcl extension - tclsqlite.html
- TCL Interface - tclsqlite.html
- TCL interface authorizer method - tclsqlite.html#authorizer
- TCL interface backup method - tclsqlite.html#backup
- TCL interface bind_fallback method - tclsqlite.html#bind_fallback
- TCL interface busy method - tclsqlite.html#busy
- TCL interface cache method - tclsqlite.html#cache
- TCL interface changes method - tclsqlite.html#changes
- TCL interface close method - tclsqlite.html#close
- TCL interface collate method - tclsqlite.html#collate
- TCL interface collation_needed method - tclsqlite.html#collation_needed
- TCL interface commit_hook method - tclsqlite.html#commit_hook
- TCL interface complete method - tclsqlite.html#complete
- TCL interface config method - tclsqlite.html#config
- TCL interface copy method - tclsqlite.html#copy
- TCL interface deserialize method - tclsqlite.html#deserialize
- TCL interface enable_load_extension method - tclsqlite.html#enable_load_extension
- TCL interface errorcode method - tclsqlite.html#errorcode
- TCL interface eval method - tclsqlite.html#eval
- TCL interface exists method - tclsqlite.html#exists
- TCL interface function method - tclsqlite.html#function
- TCL interface incrblob method - tclsqlite.html#incrblob
- TCL interface interrupt method - tclsqlite.html#interrupt
- TCL interface last_insert_rowid method - tclsqlite.html#last_insert_rowid
- TCL interface nullvalue method - tclsqlite.html#nullvalue
- TCL interface onecolumn method - tclsqlite.html#onecolumn
- TCL interface preupdate method - tclsqlite.html#preupdate
- TCL interface profile method - tclsqlite.html#profile
- TCL interface progress method - tclsqlite.html#progress
- TCL interface restore method - tclsqlite.html#restore
- TCL interface rollback_hook method - tclsqlite.html#rollback_hook
- TCL interface serialize method - tclsqlite.html#serialize
- TCL interface status method - tclsqlite.html#status
- TCL interface timeout method - tclsqlite.html#timeout
- TCL interface total_changes method - tclsqlite.html#total_changes
- TCL interface trace method - tclsqlite.html#trace
- TCL interface trace_v2 method - tclsqlite.html#trace_v2
- TCL interface transaction method - tclsqlite.html#transaction
- TCL interface unlock_notify method - tclsqlite.html#unlock_notify
- TCL interface update_hook method - tclsqlite.html#update_hook
- TCL interface version method - tclsqlite.html#version
- TCL interface wal_hook method - tclsqlite.html#wal_hook
- TCL test suite - testing.html#tcl
- TCL variable substitution - tclsqlite.html#varsubst
- TEA tarball - download.html
- TEMP triggers on non-TEMP tables - lang_createtrigger.html#temptrig
- temp_store - pragma.html#pragma_temp_store
- temp_store pragma - pragma.html#pragma_temp_store
- temp_store_directory - pragma.html#pragma_temp_store_directory
- temp_store_directory pragma - pragma.html#pragma_temp_store_directory
- temporary databases - inmemorydb.html#temp_db
- temporary directory search algorithm - tempfiles.html#tempdir
- temporary disk files - tempfiles.html
- temporary tables - inmemorydb.html#temp_db
- tempstore - tempfiles.html#tempstore
- test coverage - testing.html#coverage
- test harness - testing.html#harnesses
- test suite - testing.html
- testcase macros - testing.html#testcase
- tested - testing.html
- testing - testing.html
- text encoding - fileformat2.html#enc
- TH3 - th3.html
- the - and - operators - json1.html#jptr
- the - operator - json1.html#jptr
- the .fullschema dot-command - cli.html#fullschema
- the amalgamation - amalgamation.html
- the ext3 barrier problem - lockingv3.html#ext3-barrier-problem
- The Fossil NGQP Upgrade Case Study - queryplanner-ng.html#fossilcasestudy
- the json1 extension - json1.html
- the SQLITE_DBPAGE extension - dbpage.html
- the SQLITE_MEMSTAT extension - memstat.html
- the SQLITE_STMT extension - stmt.html
- The Use Of assert In SQLite - assert.html
- the xCachesize page cache method - c3ref/pcache_methods2.html#thexcachesizepagecachemethod
- the xCreate page cache methods - c3ref/pcache_methods2.html#thexcreatepagecachemethods
- the xDestroy page cache method - c3ref/pcache_methods2.html#thexdestroypagecachemethod
- the xFetch page cache methods - c3ref/pcache_methods2.html#thexfetchpagecachemethods
- the xInit page cache method - c3ref/pcache_methods2.html#thexinitpagecachemethod
- the xPagecount page cache methods - c3ref/pcache_methods2.html#thexpagecountpagecachemethods
- the xRekey page cache methods - c3ref/pcache_methods2.html#thexrekeypagecachemethods
- the xShrink page cache method - c3ref/pcache_methods2.html#thexshrinkpagecachemethod
- the xShutdown page cache method - c3ref/pcache_methods2.html#thexshutdownpagecachemethod
- the xUnpin page cache method - c3ref/pcache_methods2.html#thexunpinpagecachemethod
- Things That Can Go Wrong - atomiccommit.html#sect_9_0
- threading mode - threadsafe.html
- threads - pragma.html#pragma_threads
- threads pragma - pragma.html#pragma_threads
- three test harnesses - testing.html#harnesses
- time - lang_datefunc.html#dttm
- time shift modifiers - lang_datefunc.html#tmshf
- time SQL function - lang_datefunc.html#dttm
- timediff - lang_datefunc.html#tmdif
- timediff SQL function - lang_datefunc.html#tmdif
- timeout method - tclsqlite.html#timeout
- tokenizer - fts3.html#tokenizer
- torn page - psow.html#tornpage
- total - lang_aggfunc.html#sumunc
- total aggregate function - lang_aggfunc.html#sumunc
- total_changes - lang_corefunc.html#total_changes
- total_changes method - tclsqlite.html#total_changes
- total_changes SQL function - lang_corefunc.html#total_changes
- trace method - tclsqlite.html#trace
- trace_v2 method - tclsqlite.html#trace_v2
- transaction - lang_transaction.html
- transaction method - tclsqlite.html#transaction
- transaction state - c3ref/c_txn_none.html
- transactional - transactional.html
- treats the CROSS JOIN operator specially - lang_select.html#crossjoin
- trigger - lang_createtrigger.html
- triggers - lang_createtrigger.html
- trigram indexes - fts5.html#trigramidx
- trigram tokenizer - fts5.html#trigramidx
- trim - lang_corefunc.html#trim
- trim SQL function - lang_corefunc.html#trim
- trunc - lang_mathfunc.html#trunc
- trunc SQL function - lang_mathfunc.html#trunc
- truncate optimization - lang_delete.html#truncateopt
- trusted_schema - pragma.html#pragma_trusted_schema
- trusted_schema pragma - pragma.html#pragma_trusted_schema
- type affinity - datatype3.html#affinity
- type-name - syntax/type-name.html
- type-name syntax diagram - syntax/type-name.html
- typeof - lang_corefunc.html#typeof
- typeof SQL function - lang_corefunc.html#typeof
- UINT - uintcseq.html
- UINT collating sequence - uintcseq.html
- undefined BEFORE trigger behavior - lang_createtrigger.html#undef_before
- undo/redo - undoredo.html
- undoredo - undoredo.html
- unhex - lang_corefunc.html#unhex
- unhex SQL function - lang_corefunc.html#unhex
- unicode - lang_corefunc.html#unicode
- unicode SQL function - lang_corefunc.html#unicode
- unicode61 - fts3.html#unicode61
- Uniform Resource Identifier - uri.html
- unindexed - fts5.html#the_unindexed_column_option
- UNION virtual table - unionvtab.html
- union-vtab - unionvtab.html
- unionvtab - unionvtab.html
- UNIQUE - lang_createtable.html#uniqueconst
- UNIQUE constraint - lang_createtable.html#uniqueconst
- unique constraint - lang_createtable.html#uniqueconst
- UNIQUE constraints - lang_createtable.html#uniqueconst
- unique index - lang_createindex.html#uniqueidx
- unixepoch - lang_datefunc.html#uepch
- unixepoch function - lang_datefunc.html#uepch
- unixepoch SQL function - lang_datefunc.html#uepch
- unlikely - lang_corefunc.html#unlikely
- unlikely SQL function - lang_corefunc.html#unlikely
- unlink corruption - howtocorrupt.html#unlink
- unlinked database files - howtocorrupt.html#unlink
- unlock_notify method - tclsqlite.html#unlock_notify
- unprotected sqlite3_value - c3ref/value.html
- unsafe-testing command-line option - cli.html#testing_mode
- untrusted database files - security.html#baddb
- UPDATE - lang_update.html
- UPDATE FROM - lang_update.html#upfrom
- UPDATE trigger - lang_createtrigger.html
- update-stmt - syntax/update-stmt.html
- update-stmt syntax diagram - syntax/update-stmt.html
- update-stmt-limited - syntax/update-stmt-limited.html
- update-stmt-limited syntax diagram - syntax/update-stmt-limited.html
- update_hook method - tclsqlite.html#update_hook
- UPDATEs - lang_update.html
- upluscontrol - optoverview.html#uplus
- upper - lang_corefunc.html#upper
- upper SQL function - lang_corefunc.html#upper
- UPSERT - lang_upsert.html
- upsert - lang_upsert.html
- upsert clause - lang_upsert.html
- UPSERT parsing ambiguity - lang_upsert.html#parseambig
- upsert-clause - syntax/upsert-clause.html
- upsert-clause syntax diagram - syntax/upsert-clause.html
- URI - uri.html
- URI filename - uri.html
- URI filename examples - c3ref/open.html#urifilenameexamples
- URI filenames - uri.html
- URI filenames in sqlite3_open - c3ref/open.html#urifilenamesinsqlite3open
- URI query parameters - uri.html#coreqp
- usable size - fileformat2.html#usable_size
- use of shared cache mode is discouraged - sharedcache.html#dontuse
- user-defined window functions - windowfunctions.html#udfwinfunc
- user_version - pragma.html#pragma_user_version
- user_version pragma - pragma.html#pragma_user_version
- using SQLite for websites - whentouse.html#website
- Using the SQLite Online Backup API - backup.html
- Using the SQLite Unlock Notification Feature - unlock_notify.html
- utc modifier - lang_datefunc.html#localtime
- VACUUM - lang_vacuum.html
- vacuum - lang_vacuum.html
- VACUUM INTO - lang_vacuum.html#vacuuminto
- vacuum-stmt - syntax/vacuum-stmt.html
- vacuum-stmt syntax diagram - syntax/vacuum-stmt.html
- value argument - json1.html#varg
- VALUES - lang_select.html#values
- VALUES clause - lang_select.html#values
- variable-length integer - fileformat2.html#varint
- varint - fileformat2.html#varint
- VDBE - opcode.html
- vdbe_addoptrace - pragma.html#pragma_vdbe_addoptrace
- vdbe_addoptrace pragma - pragma.html#pragma_vdbe_addoptrace
- vdbe_debug - pragma.html#pragma_vdbe_debug
- vdbe_debug pragma - pragma.html#pragma_vdbe_debug
- vdbe_listing - pragma.html#pragma_vdbe_listing
- vdbe_listing pragma - pragma.html#pragma_vdbe_listing
- vdbe_trace - pragma.html#pragma_vdbe_trace
- vdbe_trace pragma - pragma.html#pragma_vdbe_trace
- vectors - rowvalue.html
- Version 3.0.0 - releaselog/3_0_0.html
- version 3.0.0 - releaselog/3_0_0.html
- Version 3.0.1 - releaselog/3_0_1.html
- version 3.0.1 - releaselog/3_0_1.html
- Version 3.0.2 - releaselog/3_0_2.html
- version 3.0.2 - releaselog/3_0_2.html
- Version 3.0.3 - releaselog/3_0_3.html
- version 3.0.3 - releaselog/3_0_3.html
- Version 3.0.4 - releaselog/3_0_4.html
- version 3.0.4 - releaselog/3_0_4.html
- Version 3.0.5 - releaselog/3_0_5.html
- version 3.0.5 - releaselog/3_0_5.html
- Version 3.0.6 - releaselog/3_0_6.html
- version 3.0.6 - releaselog/3_0_6.html
- Version 3.0.7 - releaselog/3_0_7.html
- version 3.0.7 - releaselog/3_0_7.html
- Version 3.0.8 - releaselog/3_0_8.html
- version 3.0.8 - releaselog/3_0_8.html
- Version 3.1.0 - releaselog/3_1_0.html
- version 3.1.0 - releaselog/3_1_0.html
- Version 3.1.1 - releaselog/3_1_1.html
- version 3.1.1 - releaselog/3_1_1.html
- Version 3.1.2 - releaselog/3_1_2.html
- version 3.1.2 - releaselog/3_1_2.html
- Version 3.1.3 - releaselog/3_1_3.html
- version 3.1.3 - releaselog/3_1_3.html
- Version 3.1.4 - releaselog/3_1_4.html
- version 3.1.4 - releaselog/3_1_4.html
- Version 3.1.5 - releaselog/3_1_5.html
- version 3.1.5 - releaselog/3_1_5.html
- Version 3.1.6 - releaselog/3_1_6.html
- version 3.1.6 - releaselog/3_1_6.html
- Version 3.2.0 - releaselog/3_2_0.html
- version 3.2.0 - releaselog/3_2_0.html
- Version 3.2.1 - releaselog/3_2_1.html
- version 3.2.1 - releaselog/3_2_1.html
- Version 3.2.2 - releaselog/3_2_2.html
- version 3.2.2 - releaselog/3_2_2.html
- Version 3.2.3 - releaselog/3_2_3.html
- version 3.2.3 - releaselog/3_2_3.html
- Version 3.2.4 - releaselog/3_2_4.html
- version 3.2.4 - releaselog/3_2_4.html
- Version 3.2.5 - releaselog/3_2_5.html
- version 3.2.5 - releaselog/3_2_5.html
- Version 3.2.6 - releaselog/3_2_6.html
- version 3.2.6 - releaselog/3_2_6.html
- Version 3.2.7 - releaselog/3_2_7.html
- version 3.2.7 - releaselog/3_2_7.html
- Version 3.2.8 - releaselog/3_2_8.html
- version 3.2.8 - releaselog/3_2_8.html
- Version 3.3.0 - releaselog/3_3_0.html
- version 3.3.0 - releaselog/3_3_0.html
- Version 3.3.0.0 - releaselog/3_3_0.html
- version 3.3.0.0 - releaselog/3_3_0.html
- Version 3.3.1 - releaselog/3_3_1.html
- version 3.3.1 - releaselog/3_3_1.html
- Version 3.3.1.0 - releaselog/3_3_1.html
- version 3.3.1.0 - releaselog/3_3_1.html
- Version 3.3.2 - releaselog/3_3_2.html
- version 3.3.2 - releaselog/3_3_2.html
- Version 3.3.2.0 - releaselog/3_3_2.html
- version 3.3.2.0 - releaselog/3_3_2.html
- Version 3.3.3 - releaselog/3_3_3.html
- version 3.3.3 - releaselog/3_3_3.html
- Version 3.3.3.0 - releaselog/3_3_3.html
- version 3.3.3.0 - releaselog/3_3_3.html
- Version 3.3.4 - releaselog/3_3_4.html
- version 3.3.4 - releaselog/3_3_4.html
- Version 3.3.4.0 - releaselog/3_3_4.html
- version 3.3.4.0 - releaselog/3_3_4.html
- Version 3.3.5 - releaselog/3_3_5.html
- version 3.3.5 - releaselog/3_3_5.html
- Version 3.3.5.0 - releaselog/3_3_5.html
- version 3.3.5.0 - releaselog/3_3_5.html
- Version 3.3.6 - releaselog/3_3_6.html
- version 3.3.6 - releaselog/3_3_6.html
- Version 3.3.6.0 - releaselog/3_3_6.html
- version 3.3.6.0 - releaselog/3_3_6.html
- Version 3.3.7 - releaselog/3_3_7.html
- version 3.3.7 - releaselog/3_3_7.html
- Version 3.3.7.0 - releaselog/3_3_7.html
- version 3.3.7.0 - releaselog/3_3_7.html
- Version 3.3.8 - releaselog/3_3_8.html
- version 3.3.8 - releaselog/3_3_8.html
- Version 3.3.8.0 - releaselog/3_3_8.html
- version 3.3.8.0 - releaselog/3_3_8.html
- Version 3.3.9 - releaselog/3_3_9.html
- version 3.3.9 - releaselog/3_3_9.html
- Version 3.3.9.0 - releaselog/3_3_9.html
- version 3.3.9.0 - releaselog/3_3_9.html
- Version 3.3.10 - releaselog/3_3_10.html
- version 3.3.10 - releaselog/3_3_10.html
- Version 3.3.10.0 - releaselog/3_3_10.html
- version 3.3.10.0 - releaselog/3_3_10.html
- Version 3.3.11 - releaselog/3_3_11.html
- version 3.3.11 - releaselog/3_3_11.html
- Version 3.3.11.0 - releaselog/3_3_11.html
- version 3.3.11.0 - releaselog/3_3_11.html
- Version 3.3.12 - releaselog/3_3_12.html
- version 3.3.12 - releaselog/3_3_12.html
- Version 3.3.12.0 - releaselog/3_3_12.html
- version 3.3.12.0 - releaselog/3_3_12.html
- Version 3.3.13 - releaselog/3_3_13.html
- version 3.3.13 - releaselog/3_3_13.html
- Version 3.3.13.0 - releaselog/3_3_13.html
- version 3.3.13.0 - releaselog/3_3_13.html
- Version 3.3.14 - releaselog/3_3_14.html
- version 3.3.14 - releaselog/3_3_14.html
- Version 3.3.14.0 - releaselog/3_3_14.html
- version 3.3.14.0 - releaselog/3_3_14.html
- Version 3.3.15 - releaselog/3_3_15.html
- version 3.3.15 - releaselog/3_3_15.html
- Version 3.3.15.0 - releaselog/3_3_15.html
- version 3.3.15.0 - releaselog/3_3_15.html
- Version 3.3.16 - releaselog/3_3_16.html
- version 3.3.16 - releaselog/3_3_16.html
- Version 3.3.16.0 - releaselog/3_3_16.html
- version 3.3.16.0 - releaselog/3_3_16.html
- Version 3.3.17 - releaselog/3_3_17.html
- version 3.3.17 - releaselog/3_3_17.html
- Version 3.3.17.0 - releaselog/3_3_17.html
- version 3.3.17.0 - releaselog/3_3_17.html
- Version 3.4.0 - releaselog/3_4_0.html
- version 3.4.0 - releaselog/3_4_0.html
- Version 3.4.1 - releaselog/3_4_1.html
- version 3.4.1 - releaselog/3_4_1.html
- Version 3.4.2 - releaselog/3_4_2.html
- version 3.4.2 - releaselog/3_4_2.html
- Version 3.5.0 - releaselog/3_5_0.html
- version 3.5.0 - releaselog/3_5_0.html
- Version 3.5.1 - releaselog/3_5_1.html
- version 3.5.1 - releaselog/3_5_1.html
- Version 3.5.2 - releaselog/3_5_2.html
- version 3.5.2 - releaselog/3_5_2.html
- Version 3.5.3 - releaselog/3_5_3.html
- version 3.5.3 - releaselog/3_5_3.html
- Version 3.5.4 - releaselog/3_5_4.html
- version 3.5.4 - releaselog/3_5_4.html
- Version 3.5.5 - releaselog/3_5_5.html
- version 3.5.5 - releaselog/3_5_5.html
- Version 3.5.6 - releaselog/3_5_6.html
- version 3.5.6 - releaselog/3_5_6.html
- Version 3.5.7 - releaselog/3_5_7.html
- version 3.5.7 - releaselog/3_5_7.html
- Version 3.5.8 - releaselog/3_5_8.html
- version 3.5.8 - releaselog/3_5_8.html
- Version 3.5.9 - releaselog/3_5_9.html
- version 3.5.9 - releaselog/3_5_9.html
- Version 3.6.0 - releaselog/3_6_0.html
- version 3.6.0 - releaselog/3_6_0.html
- Version 3.6.1 - releaselog/3_6_1.html
- version 3.6.1 - releaselog/3_6_1.html
- Version 3.6.2 - releaselog/3_6_2.html
- version 3.6.2 - releaselog/3_6_2.html
- Version 3.6.3 - releaselog/3_6_3.html
- version 3.6.3 - releaselog/3_6_3.html
- Version 3.6.4 - releaselog/3_6_4.html
- version 3.6.4 - releaselog/3_6_4.html
- Version 3.6.5 - releaselog/3_6_5.html
- version 3.6.5 - releaselog/3_6_5.html
- Version 3.6.6 - releaselog/3_6_6.html
- version 3.6.6 - releaselog/3_6_6.html
- Version 3.6.6.1 - releaselog/3_6_6_1.html
- version 3.6.6.1 - releaselog/3_6_6_1.html
- Version 3.6.6.2 - releaselog/3_6_6_2.html
- version 3.6.6.2 - releaselog/3_6_6_2.html
- Version 3.6.7 - releaselog/3_6_7.html
- version 3.6.7 - releaselog/3_6_7.html
- Version 3.6.8 - releaselog/3_6_8.html
- version 3.6.8 - releaselog/3_6_8.html
- Version 3.6.9 - releaselog/3_6_9.html
- version 3.6.9 - releaselog/3_6_9.html
- Version 3.6.10 - releaselog/3_6_10.html
- version 3.6.10 - releaselog/3_6_10.html
- Version 3.6.11 - releaselog/3_6_11.html
- version 3.6.11 - releaselog/3_6_11.html
- Version 3.6.12 - releaselog/3_6_12.html
- version 3.6.12 - releaselog/3_6_12.html
- Version 3.6.13 - releaselog/3_6_13.html
- version 3.6.13 - releaselog/3_6_13.html
- Version 3.6.14 - releaselog/3_6_14.html
- version 3.6.14 - releaselog/3_6_14.html
- Version 3.6.14.1 - releaselog/3_6_14_1.html
- version 3.6.14.1 - releaselog/3_6_14_1.html
- Version 3.6.14.2 - releaselog/3_6_14_2.html
- version 3.6.14.2 - releaselog/3_6_14_2.html
- Version 3.6.15 - releaselog/3_6_15.html
- version 3.6.15 - releaselog/3_6_15.html
- Version 3.6.16 - releaselog/3_6_16.html
- version 3.6.16 - releaselog/3_6_16.html
- Version 3.6.16.1 - releaselog/3_6_16_1.html
- version 3.6.16.1 - releaselog/3_6_16_1.html
- Version 3.6.17 - releaselog/3_6_17.html
- version 3.6.17 - releaselog/3_6_17.html
- Version 3.6.18 - releaselog/3_6_18.html
- version 3.6.18 - releaselog/3_6_18.html
- Version 3.6.19 - releaselog/3_6_19.html
- version 3.6.19 - releaselog/3_6_19.html
- Version 3.6.20 - releaselog/3_6_20.html
- version 3.6.20 - releaselog/3_6_20.html
- Version 3.6.21 - releaselog/3_6_21.html
- version 3.6.21 - releaselog/3_6_21.html
- Version 3.6.22 - releaselog/3_6_22.html
- version 3.6.22 - releaselog/3_6_22.html
- Version 3.6.23 - releaselog/3_6_23.html
- version 3.6.23 - releaselog/3_6_23.html
- Version 3.6.23.1 - releaselog/3_6_23_1.html
- version 3.6.23.1 - releaselog/3_6_23_1.html
- Version 3.6.23.1.0 - releaselog/3_6_23_1.html
- version 3.6.23.1.0 - releaselog/3_6_23_1.html
- Version 3.7.0 - releaselog/3_7_0.html
- version 3.7.0 - releaselog/3_7_0.html
- Version 3.7.0.1 - releaselog/3_7_0_1.html
- version 3.7.0.1 - releaselog/3_7_0_1.html
- Version 3.7.1 - releaselog/3_7_1.html
- version 3.7.1 - releaselog/3_7_1.html
- Version 3.7.2 - releaselog/3_7_2.html
- version 3.7.2 - releaselog/3_7_2.html
- Version 3.7.3 - releaselog/3_7_3.html
- version 3.7.3 - releaselog/3_7_3.html
- Version 3.7.4 - releaselog/3_7_4.html
- version 3.7.4 - releaselog/3_7_4.html
- Version 3.7.5 - releaselog/3_7_5.html
- version 3.7.5 - releaselog/3_7_5.html
- Version 3.7.6 - releaselog/3_7_6.html
- version 3.7.6 - releaselog/3_7_6.html
- Version 3.7.6.1 - releaselog/3_7_6_1.html
- version 3.7.6.1 - releaselog/3_7_6_1.html
- Version 3.7.6.2 - releaselog/3_7_6_2.html
- version 3.7.6.2 - releaselog/3_7_6_2.html
- Version 3.7.6.3 - releaselog/3_7_6_3.html
- version 3.7.6.3 - releaselog/3_7_6_3.html
- Version 3.7.7 - releaselog/3_7_7.html
- version 3.7.7 - releaselog/3_7_7.html
- Version 3.7.7.1 - releaselog/3_7_7_1.html
- version 3.7.7.1 - releaselog/3_7_7_1.html
- Version 3.7.8 - releaselog/3_7_8.html
- version 3.7.8 - releaselog/3_7_8.html
- Version 3.7.9 - releaselog/3_7_9.html
- version 3.7.9 - releaselog/3_7_9.html
- Version 3.7.10 - releaselog/3_7_10.html
- version 3.7.10 - releaselog/3_7_10.html
- Version 3.7.11 - releaselog/3_7_11.html
- version 3.7.11 - releaselog/3_7_11.html
- Version 3.7.12 - releaselog/3_7_12.html
- version 3.7.12 - releaselog/3_7_12.html
- Version 3.7.12.1 - releaselog/3_7_12_1.html
- version 3.7.12.1 - releaselog/3_7_12_1.html
- Version 3.7.13 - releaselog/3_7_13.html
- version 3.7.13 - releaselog/3_7_13.html
- Version 3.7.14 - releaselog/3_7_14.html
- version 3.7.14 - releaselog/3_7_14.html
- Version 3.7.14.1 - releaselog/3_7_14_1.html
- version 3.7.14.1 - releaselog/3_7_14_1.html
- Version 3.7.15 - releaselog/3_7_15.html
- version 3.7.15 - releaselog/3_7_15.html
- Version 3.7.15.1 - releaselog/3_7_15_1.html
- version 3.7.15.1 - releaselog/3_7_15_1.html
- Version 3.7.15.2 - releaselog/3_7_15_2.html
- version 3.7.15.2 - releaselog/3_7_15_2.html
- Version 3.7.16 - releaselog/3_7_16.html
- version 3.7.16 - releaselog/3_7_16.html
- Version 3.7.16.1 - releaselog/3_7_16_1.html
- version 3.7.16.1 - releaselog/3_7_16_1.html
- Version 3.7.16.2 - releaselog/3_7_16_2.html
- version 3.7.16.2 - releaselog/3_7_16_2.html
- Version 3.7.17 - releaselog/3_7_17.html
- version 3.7.17 - releaselog/3_7_17.html
- Version 3.8.0 - releaselog/3_8_0.html
- version 3.8.0 - releaselog/3_8_0.html
- Version 3.8.0.1 - releaselog/3_8_0_1.html
- version 3.8.0.1 - releaselog/3_8_0_1.html
- Version 3.8.0.2 - releaselog/3_8_0_2.html
- version 3.8.0.2 - releaselog/3_8_0_2.html
- Version 3.8.1 - releaselog/3_8_1.html
- version 3.8.1 - releaselog/3_8_1.html
- Version 3.8.2 - releaselog/3_8_2.html
- version 3.8.2 - releaselog/3_8_2.html
- Version 3.8.3 - releaselog/3_8_3.html
- version 3.8.3 - releaselog/3_8_3.html
- Version 3.8.3.1 - releaselog/3_8_3_1.html
- version 3.8.3.1 - releaselog/3_8_3_1.html
- Version 3.8.3.1.0 - releaselog/3_8_3_1.html
- version 3.8.3.1.0 - releaselog/3_8_3_1.html
- Version 3.8.4 - releaselog/3_8_4.html
- version 3.8.4 - releaselog/3_8_4.html
- Version 3.8.4.1 - releaselog/3_8_4_1.html
- version 3.8.4.1 - releaselog/3_8_4_1.html
- Version 3.8.4.2 - releaselog/3_8_4_2.html
- version 3.8.4.2 - releaselog/3_8_4_2.html
- Version 3.8.4.3 - releaselog/3_8_4_3.html
- version 3.8.4.3 - releaselog/3_8_4_3.html
- Version 3.8.5 - releaselog/3_8_5.html
- version 3.8.5 - releaselog/3_8_5.html
- Version 3.8.6 - releaselog/3_8_6.html
- version 3.8.6 - releaselog/3_8_6.html
- Version 3.8.7 - releaselog/3_8_7.html
- version 3.8.7 - releaselog/3_8_7.html
- Version 3.8.7.1 - releaselog/3_8_7_1.html
- version 3.8.7.1 - releaselog/3_8_7_1.html
- Version 3.8.7.2 - releaselog/3_8_7_2.html
- version 3.8.7.2 - releaselog/3_8_7_2.html
- Version 3.8.7.3 - releaselog/3_8_7_3.html
- version 3.8.7.3 - releaselog/3_8_7_3.html
- Version 3.8.7.4 - releaselog/3_8_7_4.html
- version 3.8.7.4 - releaselog/3_8_7_4.html
- Version 3.8.8 - releaselog/3_8_8.html
- version 3.8.8 - releaselog/3_8_8.html
- Version 3.8.8.1 - releaselog/3_8_8_1.html
- version 3.8.8.1 - releaselog/3_8_8_1.html
- Version 3.8.8.2 - releaselog/3_8_8_2.html
- version 3.8.8.2 - releaselog/3_8_8_2.html
- Version 3.8.8.3 - releaselog/3_8_8_3.html
- version 3.8.8.3 - releaselog/3_8_8_3.html
- Version 3.8.9 - releaselog/3_8_9.html
- version 3.8.9 - releaselog/3_8_9.html
- Version 3.8.10 - releaselog/3_8_10.html
- version 3.8.10 - releaselog/3_8_10.html
- Version 3.8.10.1 - releaselog/3_8_10_1.html
- version 3.8.10.1 - releaselog/3_8_10_1.html
- Version 3.8.10.2 - releaselog/3_8_10_2.html
- version 3.8.10.2 - releaselog/3_8_10_2.html
- Version 3.8.11 - releaselog/3_8_11.html
- version 3.8.11 - releaselog/3_8_11.html
- Version 3.8.11.1 - releaselog/3_8_11_1.html
- version 3.8.11.1 - releaselog/3_8_11_1.html
- Version 3.9.0 - releaselog/3_9_0.html
- version 3.9.0 - releaselog/3_9_0.html
- Version 3.9.1 - releaselog/3_9_1.html
- version 3.9.1 - releaselog/3_9_1.html
- Version 3.9.2 - releaselog/3_9_2.html
- version 3.9.2 - releaselog/3_9_2.html
- Version 3.9.3 - releaselog/3_9_3.html
- version 3.9.3 - releaselog/3_9_3.html
- Version 3.10.0 - releaselog/3_10_0.html
- version 3.10.0 - releaselog/3_10_0.html
- Version 3.10.1 - releaselog/3_10_1.html
- version 3.10.1 - releaselog/3_10_1.html
- Version 3.10.2 - releaselog/3_10_2.html
- version 3.10.2 - releaselog/3_10_2.html
- Version 3.11.0 - releaselog/3_11_0.html
- version 3.11.0 - releaselog/3_11_0.html
- Version 3.11.1 - releaselog/3_11_1.html
- version 3.11.1 - releaselog/3_11_1.html
- Version 3.12.0 - releaselog/3_12_0.html
- version 3.12.0 - releaselog/3_12_0.html
- version 3.12.0 page size change - pgszchng2016.html
- Version 3.12.1 - releaselog/3_12_1.html
- version 3.12.1 - releaselog/3_12_1.html
- Version 3.12.2 - releaselog/3_12_2.html
- version 3.12.2 - releaselog/3_12_2.html
- Version 3.13.0 - releaselog/3_13_0.html
- version 3.13.0 - releaselog/3_13_0.html
- Version 3.13.0.0 - releaselog/3_13_0.html
- version 3.13.0.0 - releaselog/3_13_0.html
- Version 3.14 - releaselog/3_14.html
- version 3.14 - releaselog/3_14.html
- Version 3.14.0 - releaselog/3_14.html
- version 3.14.0 - releaselog/3_14.html
- Version 3.14.1 - releaselog/3_14_1.html
- version 3.14.1 - releaselog/3_14_1.html
- Version 3.14.2 - releaselog/3_14_2.html
- version 3.14.2 - releaselog/3_14_2.html
- Version 3.15.0 - releaselog/3_15_0.html
- version 3.15.0 - releaselog/3_15_0.html
- Version 3.15.1 - releaselog/3_15_1.html
- version 3.15.1 - releaselog/3_15_1.html
- Version 3.15.2 - releaselog/3_15_2.html
- version 3.15.2 - releaselog/3_15_2.html
- Version 3.16.0 - releaselog/3_16_0.html
- version 3.16.0 - releaselog/3_16_0.html
- Version 3.16.1 - releaselog/3_16_1.html
- version 3.16.1 - releaselog/3_16_1.html
- Version 3.16.2 - releaselog/3_16_2.html
- version 3.16.2 - releaselog/3_16_2.html
- Version 3.17.0 - releaselog/3_17_0.html
- version 3.17.0 - releaselog/3_17_0.html
- Version 3.18.0 - releaselog/3_18_0.html
- version 3.18.0 - releaselog/3_18_0.html
- Version 3.18.1 - releaselog/3_18_1.html
- version 3.18.1 - releaselog/3_18_1.html
- Version 3.18.2 - releaselog/3_18_2.html
- version 3.18.2 - releaselog/3_18_2.html
- Version 3.19.0 - releaselog/3_19_0.html
- version 3.19.0 - releaselog/3_19_0.html
- Version 3.19.1 - releaselog/3_19_1.html
- version 3.19.1 - releaselog/3_19_1.html
- Version 3.19.2 - releaselog/3_19_2.html
- version 3.19.2 - releaselog/3_19_2.html
- Version 3.19.3 - releaselog/3_19_3.html
- version 3.19.3 - releaselog/3_19_3.html
- Version 3.20.0 - releaselog/3_20_0.html
- version 3.20.0 - releaselog/3_20_0.html
- Version 3.20.1 - releaselog/3_20_1.html
- version 3.20.1 - releaselog/3_20_1.html
- Version 3.21.0 - releaselog/3_21_0.html
- version 3.21.0 - releaselog/3_21_0.html
- Version 3.22.0 - releaselog/3_22_0.html
- version 3.22.0 - releaselog/3_22_0.html
- Version 3.23.0 - releaselog/3_23_0.html
- version 3.23.0 - releaselog/3_23_0.html
- Version 3.23.0.0 - releaselog/3_23_0.html
- version 3.23.0.0 - releaselog/3_23_0.html
- Version 3.23.1 - releaselog/3_23_1.html
- version 3.23.1 - releaselog/3_23_1.html
- Version 3.23.1.0 - releaselog/3_23_1.html
- version 3.23.1.0 - releaselog/3_23_1.html
- Version 3.24.0 - releaselog/3_24_0.html
- version 3.24.0 - releaselog/3_24_0.html
- Version 3.25.0 - releaselog/3_25_0.html
- version 3.25.0 - releaselog/3_25_0.html
- Version 3.25.1 - releaselog/3_25_1.html
- version 3.25.1 - releaselog/3_25_1.html
- Version 3.25.2 - releaselog/3_25_2.html
- version 3.25.2 - releaselog/3_25_2.html
- Version 3.25.3 - releaselog/3_25_3.html
- version 3.25.3 - releaselog/3_25_3.html
- Version 3.26.0 - releaselog/3_26_0.html
- version 3.26.0 - releaselog/3_26_0.html
- Version 3.27.0 - releaselog/3_27_0.html
- version 3.27.0 - releaselog/3_27_0.html
- Version 3.27.1 - releaselog/3_27_1.html
- version 3.27.1 - releaselog/3_27_1.html
- Version 3.27.2 - releaselog/3_27_2.html
- version 3.27.2 - releaselog/3_27_2.html
- Version 3.28.0 - releaselog/3_28_0.html
- version 3.28.0 - releaselog/3_28_0.html
- Version 3.29.0 - releaselog/3_29_0.html
- version 3.29.0 - releaselog/3_29_0.html
- Version 3.30.0 - releaselog/3_30_0.html
- version 3.30.0 - releaselog/3_30_0.html
- Version 3.30.1 - releaselog/3_30_1.html
- version 3.30.1 - releaselog/3_30_1.html
- Version 3.31.0 - releaselog/3_31_0.html
- version 3.31.0 - releaselog/3_31_0.html
- Version 3.31.1 - releaselog/3_31_1.html
- version 3.31.1 - releaselog/3_31_1.html
- Version 3.32.0 - releaselog/3_32_0.html
- version 3.32.0 - releaselog/3_32_0.html
- Version 3.32.1 - releaselog/3_32_1.html
- version 3.32.1 - releaselog/3_32_1.html
- Version 3.32.2 - releaselog/3_32_2.html
- version 3.32.2 - releaselog/3_32_2.html
- Version 3.32.3 - releaselog/3_32_3.html
- version 3.32.3 - releaselog/3_32_3.html
- Version 3.33.0 - releaselog/3_33_0.html
- version 3.33.0 - releaselog/3_33_0.html
- Version 3.33.0.0 - releaselog/3_33_0.html
- version 3.33.0.0 - releaselog/3_33_0.html
- Version 3.34.0 - releaselog/3_34_0.html
- version 3.34.0 - releaselog/3_34_0.html
- Version 3.34.1 - releaselog/3_34_1.html
- version 3.34.1 - releaselog/3_34_1.html
- Version 3.35.0 - releaselog/3_35_0.html
- version 3.35.0 - releaselog/3_35_0.html
- Version 3.35.1 - releaselog/3_35_1.html
- version 3.35.1 - releaselog/3_35_1.html
- Version 3.35.2 - releaselog/3_35_2.html
- version 3.35.2 - releaselog/3_35_2.html
- Version 3.35.3 - releaselog/3_35_3.html
- version 3.35.3 - releaselog/3_35_3.html
- Version 3.35.4 - releaselog/3_35_4.html
- version 3.35.4 - releaselog/3_35_4.html
- Version 3.35.5 - releaselog/3_35_5.html
- version 3.35.5 - releaselog/3_35_5.html
- Version 3.36.0 - releaselog/3_36_0.html
- version 3.36.0 - releaselog/3_36_0.html
- Version 3.37.0 - releaselog/3_37_0.html
- version 3.37.0 - releaselog/3_37_0.html
- Version 3.37.1 - releaselog/3_37_1.html
- version 3.37.1 - releaselog/3_37_1.html
- Version 3.37.2 - releaselog/3_37_2.html
- version 3.37.2 - releaselog/3_37_2.html
- Version 3.38.0 - releaselog/3_38_0.html
- version 3.38.0 - releaselog/3_38_0.html
- Version 3.38.1 - releaselog/3_38_1.html
- version 3.38.1 - releaselog/3_38_1.html
- Version 3.38.2 - releaselog/3_38_2.html
- version 3.38.2 - releaselog/3_38_2.html
- Version 3.38.3 - releaselog/3_38_3.html
- version 3.38.3 - releaselog/3_38_3.html
- Version 3.38.4 - releaselog/3_38_4.html
- version 3.38.4 - releaselog/3_38_4.html
- Version 3.38.5 - releaselog/3_38_5.html
- version 3.38.5 - releaselog/3_38_5.html
- Version 3.39.0 - releaselog/3_39_0.html
- version 3.39.0 - releaselog/3_39_0.html
- Version 3.39.1 - releaselog/3_39_1.html
- version 3.39.1 - releaselog/3_39_1.html
- Version 3.39.2 - releaselog/3_39_2.html
- version 3.39.2 - releaselog/3_39_2.html
- Version 3.39.3 - releaselog/3_39_3.html
- version 3.39.3 - releaselog/3_39_3.html
- Version 3.39.4 - releaselog/3_39_4.html
- version 3.39.4 - releaselog/3_39_4.html
- Version 3.40.0 - releaselog/3_40_0.html
- version 3.40.0 - releaselog/3_40_0.html
- Version 3.40.1 - releaselog/3_40_1.html
- version 3.40.1 - releaselog/3_40_1.html
- Version 3.41.0 - releaselog/3_41_0.html
- version 3.41.0 - releaselog/3_41_0.html
- Version 3.41.1 - releaselog/3_41_1.html
- version 3.41.1 - releaselog/3_41_1.html
- Version 3.41.2 - releaselog/3_41_2.html
- version 3.41.2 - releaselog/3_41_2.html
- Version 3.42.0 - releaselog/3_42_0.html
- version 3.42.0 - releaselog/3_42_0.html
- Version 3.43.0 - releaselog/3_43_0.html
- version 3.43.0 - releaselog/3_43_0.html
- Version 3.43.0.0 - releaselog/3_43_0.html
- version 3.43.0.0 - releaselog/3_43_0.html
- Version 3.43.1 - releaselog/3_43_1.html
- version 3.43.1 - releaselog/3_43_1.html
- Version 3.43.1.0 - releaselog/3_43_1.html
- version 3.43.1.0 - releaselog/3_43_1.html
- Version 3.43.2 - releaselog/3_43_2.html
- version 3.43.2 - releaselog/3_43_2.html
- Version 3.43.2.0 - releaselog/3_43_2.html
- version 3.43.2.0 - releaselog/3_43_2.html
- Version 3.44.0 - releaselog/3_44_0.html
- version 3.44.0 - releaselog/3_44_0.html
- Version 3.44.1 - releaselog/3_44_1.html
- version 3.44.1 - releaselog/3_44_1.html
- Version 3.44.2 - releaselog/3_44_2.html
- version 3.44.2 - releaselog/3_44_2.html
- Version 3.45.0 - releaselog/3_45_0.html
- version 3.45.0 - releaselog/3_45_0.html
- Version 3.45.1 - releaselog/3_45_1.html
- version 3.45.1 - releaselog/3_45_1.html
- Version 3.45.2 - releaselog/3_45_2.html
- version 3.45.2 - releaselog/3_45_2.html
- Version 3.45.3 - releaselog/3_45_3.html
- version 3.45.3 - releaselog/3_45_3.html
- version method - tclsqlite.html#version
- version numbering conventions - versionnumbers.html
- version-valid-for number - fileformat2.html#validfor
- VFS - vfs.html
- vfs query parameter - uri.html#urivfs
- VFS shim - vfs.html#shim
- VFS shims - vfs.html#shim
- VFSes - vfs.html
- VIEW - lang_createview.html
- view - lang_createview.html
- views - lang_createview.html
- virtual machine - opcode.html
- virtual machine instructions - opcode.html
- virtual table - vtab.html
- virtual table configuration option - c3ref/c_vtab_constraint_support.html
- virtual table configuration options - c3ref/c_vtab_constraint_support.html
- virtual table cursor - c3ref/vtab_cursor.html
- virtual table list - vtablist.html
- virtual table module - c3ref/module.html
- virtual tables - vtab.html
- vulnerabilities - cves.html
- w - printf.html#percentw
- WAL - wal.html
- WAL backwards compatibility - wal.html#bkwrds
- WAL checksum algorithm - fileformat2.html#walcksm
- WAL concurrency - wal.html#concurrency
- WAL file - wal.html#walfile
- WAL file format - fileformat2.html#walformat
- WAL format - fileformat2.html#walformat
- WAL mode - wal.html
- WAL read algorithm - fileformat2.html#walread
- WAL reset - fileformat2.html#walreset
- WAL without shared memory - wal.html#noshm
- wal-index - walformat.html#shm
- WAL-index File Format - walformat.html#walidxfmt
- WAL-index format - walformat.html#walidxfmt
- WAL-mode crash recovery - walformat.html#recovery
- WAL-mode File Format - walformat.html
- WAL-mode locks - walformat.html#locks
- WAL-mode read blocking - wal.html#busy
- wal_autocheckpoint - pragma.html#pragma_wal_autocheckpoint
- wal_autocheckpoint pragma - pragma.html#pragma_wal_autocheckpoint
- wal_checkpoint - pragma.html#pragma_wal_checkpoint
- wal_checkpoint pragma - pragma.html#pragma_wal_checkpoint
- wal_hook method - tclsqlite.html#wal_hook
- Warranty of Title - copyright.html#warrantyoftitle
- What If OpenOffice Used SQLite - affcase1.html
- when to use WITHOUT ROWID - withoutrowid.html#wtu
- WHERE clause - lang_select.html#whereclause
- why ALTER TABLE is so difficult - lang_altertable.html#altertableishard
- Win32 native memory allocator - malloc.html#win32heap
- window chaining - windowfunctions.html#wchaining
- window function - windowfunctions.html
- Window functions - windowfunctions.html
- window functions - windowfunctions.html
- window-defn - syntax/window-defn.html
- window-defn syntax diagram - syntax/window-defn.html
- window-function-invocation - syntax/window-function-invocation.html
- window-function-invocation syntax diagram - syntax/window-function-invocation.html
- WITH - lang_with.html
- with - lang_with.html
- WITH clause - lang_with.html
- with-clause - syntax/with-clause.html
- with-clause syntax diagram - syntax/with-clause.html
- WITHOUT ROWID - withoutrowid.html
- WITHOUT rowid - withoutrowid.html
- WITHOUT ROWID virtual table - vtab.html#worid
- WITHOUT ROWID virtual tables - vtab.html#worid
- wrapping text - cli.html#wrap1
- writable_schema - pragma.html#pragma_writable_schema
- writable_schema pragma - pragma.html#pragma_writable_schema
- write-ahead log - wal.html
- writer starvation - lockingv3.html#writer_starvation
- xBegin - vtab.html#xBegin
- xBestIndex - vtab.html#xbestindex
- xColumn - vtab.html#xcolumn
- xCommit - vtab.html#xcommit
- xConnect - vtab.html#xconnect
- xCreate - vtab.html#xcreate
- xDestroy - vtab.html#sqlite3_module.xDestroy
- xDisconnect - vtab.html#xdisconnect
- xEof - vtab.html#xeof
- xFilter - vtab.html#xfilter
- xFindFunction - vtab.html#xfindfunction
- xIntegrity - vtab.html#xintegrity
- xIntegrity method - vtab.html#xintegrity
- xNext - vtab.html#xnext
- xQueryFunc RTree callback - rtree.html#xquery
- xRelease - vtab.html#xsavepoint
- xRename - vtab.html#xrename
- xRollback - vtab.html#xrollback
- xRollbackTo - vtab.html#xsavepoint
- xRowid - vtab.html#xrowid
- xSavepoint - vtab.html#xsavepoint
- xShadowName - vtab.html#xshadowname
- xUpdate - vtab.html#xupdate
- YYSTACKDEPTH - compile.html#yystackdepth
- YYTRACKMAXSTACKDEPTH - compile.html#yytrackmaxstackdepth
- z - printf.html#percentz
- zero-configuration - zeroconf.html
- zero-malloc memory allocator - malloc.html#memsys5
- zeroblob - lang_corefunc.html#zeroblob
- zeroblob SQL function - lang_corefunc.html#zeroblob
- ZIP file as database - cli.html#zipdb
- zipfile - zipfile.html
- Zipfile virtual table - zipfile.html
This page last modified on 2023-03-31 19:57:15 UTC
+
- --insert option - cli.html#arinsup
- --safe command-line option - cli.html#safemode
- --unsafe-testing command-line option - cli.html#testing_mode
- --update option - cli.html#arinsup
- -DHAVE_FDATASYNC - compile.html#fdatasync
- -DHAVE_GMTIME_R - compile.html#gmtime_r
- -DHAVE_ISNAN - compile.html#isnan
- -DHAVE_LOCALTIME_R - compile.html#localtime_r
- -DHAVE_LOCALTIME_S - compile.html#localtime_s
- -DHAVE_MALLOC_USABLE_SIZE - compile.html#malloc_usable_size
- -DHAVE_SQLITE_CONFIG_H - compile.html#sqlite_config_h
- -DHAVE_STRCHRNUL - compile.html#strchrnul
- -DHAVE_UTIME - compile.html#utime
- -DSQLITE_4_BYTE_ALIGNED_MALLOC - compile.html#4_byte_aligned_malloc
- -DSQLITE_ALLOW_COVERING_INDEX_SCAN - compile.html#allow_covering_index_scan
- -DSQLITE_ALLOW_URI_AUTHORITY - compile.html#allow_uri_authority
- -DSQLITE_API - compile.html#api
- -DSQLITE_APICALL - compile.html#apicall
- -DSQLITE_BYTEORDER - compile.html#byteorder
- -DSQLITE_CALLBACK - compile.html#callback
- -DSQLITE_CASE_SENSITIVE_LIKE - compile.html#case_sensitive_like
- -DSQLITE_CDECL - compile.html#cdecl
- -DSQLITE_DEBUG - compile.html#debug
- -DSQLITE_DEFAULT_AUTOMATIC_INDEX - compile.html#default_automatic_index
- -DSQLITE_DEFAULT_AUTOVACUUM - compile.html#default_autovacuum
- -DSQLITE_DEFAULT_CACHE_SIZE - compile.html#default_cache_size
- -DSQLITE_DEFAULT_FILE_FORMAT - compile.html#default_file_format
- -DSQLITE_DEFAULT_FILE_PERMISSIONS - compile.html#default_file_permissions
- -DSQLITE_DEFAULT_FOREIGN_KEYS - compile.html#default_foreign_keys
- -DSQLITE_DEFAULT_JOURNAL_SIZE_LIMIT - compile.html#default_journal_size_limit
- -DSQLITE_DEFAULT_LOCKING_MODE - compile.html#default_locking_mode
- -DSQLITE_DEFAULT_LOOKASIDE - compile.html#default_lookaside
- -DSQLITE_DEFAULT_MEMSTATUS - compile.html#default_memstatus
- -DSQLITE_DEFAULT_MMAP_SIZE - compile.html#default_mmap_size
- -DSQLITE_DEFAULT_PAGE_SIZE - compile.html#default_page_size
- -DSQLITE_DEFAULT_PCACHE_INITSZ - compile.html#default_pcache_initsz
- -DSQLITE_DEFAULT_SYNCHRONOUS - compile.html#default_synchronous
- -DSQLITE_DEFAULT_WAL_AUTOCHECKPOINT - compile.html#default_wal_autocheckpoint
- -DSQLITE_DEFAULT_WAL_SYNCHRONOUS - compile.html#default_wal_synchronous
- -DSQLITE_DEFAULT_WORKER_THREADS - compile.html#default_worker_threads
- -DSQLITE_DIRECT_OVERFLOW_READ - compile.html#direct_overflow_read
- -DSQLITE_DISABLE_DIRSYNC - compile.html#disable_dirsync
- -DSQLITE_DISABLE_FTS3_UNICODE - compile.html#disable_fts3_unicode
- -DSQLITE_DISABLE_FTS4_DEFERRED - compile.html#disable_fts4_deferred
- -DSQLITE_DISABLE_INTRINSIC - compile.html#disable_intrinsic
- -DSQLITE_DISABLE_LFS - compile.html#disable_lfs
- -DSQLITE_DISABLE_PAGECACHE_OVERFLOW_STATS - compile.html#disable_pagecache_overflow_stats
- -DSQLITE_DQS - compile.html#dqs
- -DSQLITE_ENABLE_8_3_NAMES - compile.html#enable_8_3_names
- -DSQLITE_ENABLE_API_ARMOR - compile.html#enable_api_armor
- -DSQLITE_ENABLE_ATOMIC_WRITE - compile.html#enable_atomic_write
- -DSQLITE_ENABLE_BATCH_ATOMIC_WRITE - compile.html#enable_batch_atomic_write
- -DSQLITE_ENABLE_BYTECODE_VTAB - compile.html#enable_bytecode_vtab
- -DSQLITE_ENABLE_COLUMN_METADATA - compile.html#enable_column_metadata
- -DSQLITE_ENABLE_DBPAGE_VTAB - compile.html#enable_dbpage_vtab
- -DSQLITE_ENABLE_DBSTAT_VTAB - compile.html#enable_dbstat_vtab
- -DSQLITE_ENABLE_DESERIALIZE - compile.html#enable_deserialize
- -DSQLITE_ENABLE_EXPLAIN_COMMENTS - compile.html#enable_explain_comments
- -DSQLITE_ENABLE_FTS3 - compile.html#enable_fts3
- -DSQLITE_ENABLE_FTS3_PARENTHESIS - compile.html#enable_fts3_parenthesis
- -DSQLITE_ENABLE_FTS3_TOKENIZER - compile.html#enable_fts3_tokenizer
- -DSQLITE_ENABLE_FTS4 - compile.html#enable_fts4
- -DSQLITE_ENABLE_FTS5 - compile.html#enable_fts5
- -DSQLITE_ENABLE_GEOPOLY - compile.html#enable_geopoly
- -DSQLITE_ENABLE_HIDDEN_COLUMNS - compile.html#enable_hidden_columns
- -DSQLITE_ENABLE_ICU - compile.html#enable_icu
- -DSQLITE_ENABLE_IOTRACE - compile.html#enable_iotrace
- -DSQLITE_ENABLE_JSON1 - compile.html#enable_json1
- -DSQLITE_ENABLE_LOCKING_STYLE - compile.html#enable_locking_style
- -DSQLITE_ENABLE_MATH_FUNCTIONS - compile.html#enable_math_functions
- -DSQLITE_ENABLE_MEMORY_MANAGEMENT - compile.html#enable_memory_management
- -DSQLITE_ENABLE_MEMSYS3 - compile.html#enable_memsys3
- -DSQLITE_ENABLE_MEMSYS5 - compile.html#enable_memsys5
- -DSQLITE_ENABLE_NORMALIZE - compile.html#enable_normalize
- -DSQLITE_ENABLE_NULL_TRIM - compile.html#enable_null_trim
- -DSQLITE_ENABLE_OFFSET_SQL_FUNC - compile.html#enable_offset_sql_func
- -DSQLITE_ENABLE_PREUPDATE_HOOK - compile.html#enable_preupdate_hook
- -DSQLITE_ENABLE_QPSG - compile.html#enable_qpsg
- -DSQLITE_ENABLE_RBU - compile.html#enable_rbu
- -DSQLITE_ENABLE_RTREE - compile.html#enable_rtree
- -DSQLITE_ENABLE_SESSION - compile.html#enable_session
- -DSQLITE_ENABLE_SNAPSHOT - compile.html#enable_snapshot
- -DSQLITE_ENABLE_SORTER_REFERENCES - compile.html#enable_sorter_references
- -DSQLITE_ENABLE_SQLLOG - compile.html#enable_sqllog
- -DSQLITE_ENABLE_STAT2 - compile.html#enable_stat2
- -DSQLITE_ENABLE_STAT3 - compile.html#enable_stat3
- -DSQLITE_ENABLE_STAT4 - compile.html#enable_stat4
- -DSQLITE_ENABLE_STMT_SCANSTATUS - compile.html#enable_stmt_scanstatus
- -DSQLITE_ENABLE_STMTVTAB - compile.html#enable_stmtvtab
- -DSQLITE_ENABLE_TREE_EXPLAIN - compile.html#enable_tree_explain
- -DSQLITE_ENABLE_UNKNOWN_SQL_FUNCTION - compile.html#enable_unknown_sql_function
- -DSQLITE_ENABLE_UNLOCK_NOTIFY - compile.html#enable_unlock_notify
- -DSQLITE_ENABLE_UPDATE_DELETE_LIMIT - compile.html#enable_update_delete_limit
- -DSQLITE_EXTERN - compile.html#extern
- -DSQLITE_EXTRA_DURABLE - compile.html#extra_durable
- -DSQLITE_FTS3_MAX_EXPR_DEPTH - compile.html#fts3_max_expr_depth
- -DSQLITE_HAVE_ISNAN - compile.html#have_isnan
- -DSQLITE_HAVE_ZLIB - compile.html#have_zlib
- -DSQLITE_INTROSPECTION_PRAGMAS - compile.html#introspection_pragmas
- -DSQLITE_JSON_MAX_DEPTH - compile.html#json_max_depth
- -DSQLITE_LIKE_DOESNT_MATCH_BLOBS - compile.html#like_doesnt_match_blobs
- -DSQLITE_MAX_ALLOCATION_SIZE - compile.html#max_allocation_size
- -DSQLITE_MAX_MEMORY - compile.html#max_memory
- -DSQLITE_MAX_MMAP_SIZE - compile.html#max_mmap_size
- -DSQLITE_MAX_SCHEMA_RETRY - compile.html#max_schema_retry
- -DSQLITE_MAX_WORKER_THREADS - compile.html#max_worker_threads
- -DSQLITE_MEMDB_DEFAULT_MAXSIZE - compile.html#memdb_default_maxsize
- -DSQLITE_MEMDEBUG - compile.html#memdebug
- -DSQLITE_MINIMUM_FILE_DESCRIPTOR - compile.html#minimum_file_descriptor
- -DSQLITE_OMIT_ALTERTABLE - compile.html#omit_altertable
- -DSQLITE_OMIT_ANALYZE - compile.html#omit_analyze
- -DSQLITE_OMIT_ATTACH - compile.html#omit_attach
- -DSQLITE_OMIT_AUTHORIZATION - compile.html#omit_authorization
- -DSQLITE_OMIT_AUTOINCREMENT - compile.html#omit_autoincrement
- -DSQLITE_OMIT_AUTOINIT - compile.html#omit_autoinit
- -DSQLITE_OMIT_AUTOMATIC_INDEX - compile.html#omit_automatic_index
- -DSQLITE_OMIT_AUTORESET - compile.html#omit_autoreset
- -DSQLITE_OMIT_AUTOVACUUM - compile.html#omit_autovacuum
- -DSQLITE_OMIT_BETWEEN_OPTIMIZATION - compile.html#omit_between_optimization
- -DSQLITE_OMIT_BLOB_LITERAL - compile.html#omit_blob_literal
- -DSQLITE_OMIT_BTREECOUNT - compile.html#omit_btreecount
- -DSQLITE_OMIT_BUILTIN_TEST - compile.html#omit_builtin_test
- -DSQLITE_OMIT_CASE_SENSITIVE_LIKE_PRAGMA - compile.html#omit_case_sensitive_like_pragma
- -DSQLITE_OMIT_CAST - compile.html#omit_cast
- -DSQLITE_OMIT_CHECK - compile.html#omit_check
- -DSQLITE_OMIT_COMPILEOPTION_DIAGS - compile.html#omit_compileoption_diags
- -DSQLITE_OMIT_COMPLETE - compile.html#omit_complete
- -DSQLITE_OMIT_COMPOUND_SELECT - compile.html#omit_compound_select
- -DSQLITE_OMIT_CTE - compile.html#omit_cte
- -DSQLITE_OMIT_DATETIME_FUNCS - compile.html#omit_datetime_funcs
- -DSQLITE_OMIT_DECLTYPE - compile.html#omit_decltype
- -DSQLITE_OMIT_DEPRECATED - compile.html#omit_deprecated
- -DSQLITE_OMIT_DESERIALIZE - compile.html#omit_deserialize
- -DSQLITE_OMIT_DISKIO - compile.html#omit_diskio
- -DSQLITE_OMIT_EXPLAIN - compile.html#omit_explain
- -DSQLITE_OMIT_FLAG_PRAGMAS - compile.html#omit_flag_pragmas
- -DSQLITE_OMIT_FLOATING_POINT - compile.html#omit_floating_point
- -DSQLITE_OMIT_FOREIGN_KEY - compile.html#omit_foreign_key
- -DSQLITE_OMIT_GENERATED_COLUMNS - compile.html#omit_generated_columns
- -DSQLITE_OMIT_GET_TABLE - compile.html#omit_get_table
- -DSQLITE_OMIT_HEX_INTEGER - compile.html#omit_hex_integer
- -DSQLITE_OMIT_INCRBLOB - compile.html#omit_incrblob
- -DSQLITE_OMIT_INTEGRITY_CHECK - compile.html#omit_integrity_check
- -DSQLITE_OMIT_INTROSPECTION_PRAGMAS - compile.html#omit_introspection_pragmas
- -DSQLITE_OMIT_JSON - compile.html#omit_json
- -DSQLITE_OMIT_LIKE_OPTIMIZATION - compile.html#omit_like_optimization
- -DSQLITE_OMIT_LOAD_EXTENSION - compile.html#omit_load_extension
- -DSQLITE_OMIT_LOCALTIME - compile.html#omit_localtime
- -DSQLITE_OMIT_LOOKASIDE - compile.html#omit_lookaside
- -DSQLITE_OMIT_MEMORYDB - compile.html#omit_memorydb
- -DSQLITE_OMIT_OR_OPTIMIZATION - compile.html#omit_or_optimization
- -DSQLITE_OMIT_PAGER_PRAGMAS - compile.html#omit_pager_pragmas
- -DSQLITE_OMIT_PRAGMA - compile.html#omit_pragma
- -DSQLITE_OMIT_PROGRESS_CALLBACK - compile.html#omit_progress_callback
- -DSQLITE_OMIT_QUICKBALANCE - compile.html#omit_quickbalance
- -DSQLITE_OMIT_REINDEX - compile.html#omit_reindex
- -DSQLITE_OMIT_SCHEMA_PRAGMAS - compile.html#omit_schema_pragmas
- -DSQLITE_OMIT_SCHEMA_VERSION_PRAGMAS - compile.html#omit_schema_version_pragmas
- -DSQLITE_OMIT_SHARED_CACHE - compile.html#omit_shared_cache
- -DSQLITE_OMIT_SUBQUERY - compile.html#omit_subquery
- -DSQLITE_OMIT_TCL_VARIABLE - compile.html#omit_tcl_variable
- -DSQLITE_OMIT_TEMPDB - compile.html#omit_tempdb
- -DSQLITE_OMIT_TRACE - compile.html#omit_trace
- -DSQLITE_OMIT_TRIGGER - compile.html#omit_trigger
- -DSQLITE_OMIT_TRUNCATE_OPTIMIZATION - compile.html#omit_truncate_optimization
- -DSQLITE_OMIT_UTF16 - compile.html#omit_utf16
- -DSQLITE_OMIT_VACUUM - compile.html#omit_vacuum
- -DSQLITE_OMIT_VIEW - compile.html#omit_view
- -DSQLITE_OMIT_VIRTUALTABLE - compile.html#omit_virtualtable
- -DSQLITE_OMIT_WAL - compile.html#omit_wal
- -DSQLITE_OMIT_WINDOWFUNC - compile.html#omit_windowfunc
- -DSQLITE_OMIT_WSD - compile.html#omit_wsd
- -DSQLITE_OMIT_XFER_OPT - compile.html#omit_xfer_opt
- -DSQLITE_OS_OTHER - compile.html#os_other
- -DSQLITE_POWERSAFE_OVERWRITE - compile.html#powersafe_overwrite
- -DSQLITE_PRINTF_PRECISION_LIMIT - compile.html#printf_precision_limit
- -DSQLITE_QUERY_PLANNER_LIMIT - compile.html#query_planner_limit
- -DSQLITE_QUERY_PLANNER_LIMIT_INCR - compile.html#query_planner_limit_incr
- -DSQLITE_REVERSE_UNORDERED_SELECTS - compile.html#reverse_unordered_selects
- -DSQLITE_RTREE_INT_ONLY - compile.html#rtree_int_only
- -DSQLITE_SECURE_DELETE - compile.html#secure_delete
- -DSQLITE_SORTER_PMASZ - compile.html#sorter_pmasz
- -DSQLITE_SOUNDEX - compile.html#soundex
- -DSQLITE_STDCALL - compile.html#stdcall
- -DSQLITE_STMTJRNL_SPILL - compile.html#stmtjrnl_spill
- -DSQLITE_STRICT_SUBTYPE - compile.html#strict_subtype
- -DSQLITE_SYSAPI - compile.html#sysapi
- -DSQLITE_TCLAPI - compile.html#tclapi
- -DSQLITE_TEMP_STORE - compile.html#temp_store
- -DSQLITE_THREADSAFE - compile.html#threadsafe
- -DSQLITE_TRACE_SIZE_LIMIT - compile.html#trace_size_limit
- -DSQLITE_TRUSTED_SCHEMA - compile.html#trusted_schema
- -DSQLITE_UNTESTABLE - compile.html#untestable
- -DSQLITE_USE_ALLOCA - compile.html#use_alloca
- -DSQLITE_USE_FCNTL_TRACE - compile.html#use_fcntl_trace
- -DSQLITE_USE_SEH - compile.html#use_seh
- -DSQLITE_USE_URI - compile.html#use_uri
- -DSQLITE_WIN32_HEAP_CREATE - compile.html#win32_heap_create
- -DSQLITE_WIN32_MALLOC - compile.html#win32_malloc
- -DSQLITE_WIN32_MALLOC_VALIDATE - compile.html#win32_malloc_validate
- -DSQLITE_ZERO_MALLOC - compile.html#zero_malloc
- .archive command - cli.html#sqlar
- .connection - cli.html#dotconn
- .databases - cli.html#dotdatabases
- .databases command - cli.html#dotdatabases
- .dump - cli.html#dump
- .excel - cli.html#dotexcel
- .expert command - cli.html#expert
- .fullschema - cli.html#fullschema
- .import - cli.html#csv
- .import command - cli.html#csv
- .imposter dot-command - imposter.html#dotimposter
- .load command - cli.html#dotload
- .mode - cli.html#dotmode
- .mode quote - cli.html#dotmodequote
- .once - cli.html#dotoutput
- .open - cli.html#dotopen
- .open command - cli.html#dotopen
- .output - cli.html#dotoutput
- .parameter command - cli.html#param
- .read - cli.html#dotread
- .recover dot-command - cli.html#recover
- .schema - cli.html#dschema
- .selftest dot-command - cli.html#selftest
- .sha3sum dot-command - cli.html#sha3sum
- .tables - cli.html#dtables
- 3rd-party fuzzers - testing.html#3pfuzz
- 34to35 - 34to35.html
- 35 Faster Than The Filesystem - fasterthanfs.html
- 35to36 - 35to36.html
- about 200 SQL statements per webpage - np1queryprob.html
- abs - lang_corefunc.html#abs
- abs SQL function - lang_corefunc.html#abs
- ACID - transactional.html
- acos - lang_mathfunc.html#acos
- acos SQL function - lang_mathfunc.html#acos
- acosh - lang_mathfunc.html#acosh
- acosh SQL function - lang_mathfunc.html#acosh
- add column - lang_altertable.html#altertabaddcol
- Adding to Zip - zipfile.html#adding_entries_to_a_zip_archive
- advanced - swarmvtab.html#advanced_usage
- advantages of WAL-mode - wal.html#advantages
- affinities - datatype3.html#affinity
- affinity - datatype3.html#affinity
- affinity in compound VIEWs - datatype3.html#affcompoundview
- Affinity Of Expressions - datatype3.html#expraff
- affshort - aff_short.html
- AFL - testing.html#aflfuzz
- aggfunc - lang_aggfunc.html
- Aggregate Functions - lang_aggfunc.html
- Aggregate functions - lang_aggfunc.html
- aggregate functions - lang_aggfunc.html
- aggregate JSON SQL functions - json1.html#jgroupobjectb
- aggregate SQL functions - lang_aggfunc.html
- aggregate window functions - windowfunctions.html#aggwinfunc
- aggregate-function-invocation - syntax/aggregate-function-invocation.html
- aggregate-function-invocation syntax diagram - syntax/aggregate-function-invocation.html
- alphabetical listing of documents - doclist.html
- ALTER - lang_altertable.html
- ALTER TABLE - lang_altertable.html
- ALTER TABLE ADD COLUMN - lang_altertable.html#altertabaddcol
- ALTER TABLE DROP COLUMN - lang_altertable.html#altertabdropcol
- ALTER TABLE RENAME - lang_altertable.html#altertabrename
- ALTER TABLE RENAME COLUMN - lang_altertable.html#altertabmvcol
- ALTER TABLE RENAME documentation - lang_altertable.html#altertabrename
- alter-table-stmt - syntax/alter-table-stmt.html
- alter-table-stmt syntax diagram - syntax/alter-table-stmt.html
- altertable - lang_altertable.html
- amalgamation - amalgamation.html
- amalgamation tarball - download.html
- ambiguous dates - lang_datefunc.html#dtambg
- American Fuzzy Lop fuzzer - testing.html#aflfuzz
- analysis_limit - pragma.html#pragma_analysis_limit
- analysis_limit pragma - pragma.html#pragma_analysis_limit
- ANALYZE - lang_analyze.html
- analyze - lang_analyze.html
- analyze-stmt - syntax/analyze-stmt.html
- analyze-stmt syntax diagram - syntax/analyze-stmt.html
- appformat - appfileformat.html
- Application File Format - appfileformat.html
- application file format - appfileformat.html
- application file-format - appfileformat.html
- Application ID - fileformat2.html#appid
- application-defined function attacks - appfunc.html#sec
- application-defined SQL function - appfunc.html
- application-defined SQL functions - appfunc.html
- application-defined window functions - windowfunctions.html#udfwinfunc
- application_id - pragma.html#pragma_application_id
- application_id pragma - pragma.html#pragma_application_id
- appreciate the freedom - flextypegood.html
- Appropriate Uses For SQLite - whentouse.html
- approximate ANALYZE - lang_analyze.html#approx
- Approximate ANALYZE For Large Databases - lang_analyze.html#approx
- asin - lang_mathfunc.html#asin
- asin SQL function - lang_mathfunc.html#asin
- asinh - lang_mathfunc.html#asinh
- asinh SQL function - lang_mathfunc.html#asinh
- asynchronous I/O backend - asyncvfs.html
- asynchronous VFS - asyncvfs.html
- atan - lang_mathfunc.html#atan
- atan SQL function - lang_mathfunc.html#atan
- atan2 - lang_mathfunc.html#atan2
- atan2 SQL function - lang_mathfunc.html#atan2
- atanh - lang_mathfunc.html#atanh
- atanh SQL function - lang_mathfunc.html#atanh
- Atomic Commit - atomiccommit.html
- atomic commit - atomiccommit.html
- ATTACH - lang_attach.html
- attach - lang_attach.html
- ATTACH DATABASE - lang_attach.html
- attach-stmt - syntax/attach-stmt.html
- attach-stmt syntax diagram - syntax/attach-stmt.html
- attached - lang_attach.html
- attack resistance - security.html
- authorizer callback - c3ref/set_authorizer.html
- authorizer method - tclsqlite.html#authorizer
- auto modifier - lang_datefunc.html#automod
- auto_vacuum - pragma.html#pragma_auto_vacuum
- auto_vacuum pragma - pragma.html#pragma_auto_vacuum
- autocommit mode - c3ref/get_autocommit.html
- AUTOINCREMENT - autoinc.html
- automated undo/redo stack - undoredo.html
- automatic indexes - optoverview.html#autoindex
- Automatic indexing - optoverview.html#autoindex
- automatic indexing - optoverview.html#autoindex
- automatic_index - pragma.html#pragma_automatic_index
- automatic_index pragma - pragma.html#pragma_automatic_index
- Automatically Running ANALYZE - lang_analyze.html#autoanalyze
- automatically running ANALYZE - lang_analyze.html#autoanalyze
- automerge command - fts3.html#*fts4automergecmd
- auxiliary columns - rtree.html#auxcol
- auxiliary columns in r-tree tables - rtree.html#auxcol
- auxiliary function mapping - fts5.html#sorting_by_auxiliary_function_results
- avg - lang_aggfunc.html#avg
- avg aggregate function - lang_aggfunc.html#avg
- avoiding large WAL files - wal.html#bigwal
- B-tree - fileformat2.html#btree
- B-Trees - fileformat2.html#btree
- backup API - backup.html
- backup method - tclsqlite.html#backup
- bare aggregate terms - lang_select.html#bareagg
- base64 SQL function - cli.html#base64
- base85 SQL function - cli.html#base85
- bcvtab - bytecodevtab.html
- BEGIN - lang_transaction.html
- BEGIN EXCLUSIVE - lang_transaction.html#immediate
- BEGIN IMMEDIATE - lang_transaction.html#immediate
- begin-stmt - syntax/begin-stmt.html
- begin-stmt syntax diagram - syntax/begin-stmt.html
- benefits of using WITHOUT ROWID - withoutrowid.html#bene
- BETWEEN - lang_expr.html#between
- BINARY - datatype3.html#collation
- BINARY collating function - datatype3.html#collation
- binary operators - lang_expr.html#binaryops
- bind_fallback method - tclsqlite.html#bind_fallback
- BLOB handle - c3ref/blob.html
- BLOB handles - c3ref/blob.html
- BLOB I/O performance - intern-v-extern-blob.html
- block sorting - queryplanner.html#partialsort
- books about SQLite - books.html
- boolean datatype - datatype3.html#boolean
- boolean expression - lang_expr.html#booleanexpr
- bound parameter - lang_expr.html#varparam
- bound parameters - lang_expr.html#varparam
- bugs - fts3.html#limitations
- build product names - download.html#encoding
- building a DLL - howtocompile.html#dll
- building the amalgamation - howtocompile.html#amal
- built-in memory allocators - malloc.html#altalloc
- built-in printf - printf.html
- built-in SQL math functions - lang_mathfunc.html
- built-in window functions - windowfunctions.html#builtins
- built-ins - windowfunctions.html#builtins
- builtin window functions - windowfunctions.html#biwinfunc
- busy handler - c3ref/busy_handler.html
- busy method - tclsqlite.html#busy
- busy-handler callback - c3ref/busy_handler.html
- busy_timeout - pragma.html#pragma_busy_timeout
- busy_timeout pragma - pragma.html#pragma_busy_timeout
- byte-order determination rules - c3ref/bind_blob.html#byteorderdeterminationrules
- bytecode - opcode.html
- bytecode and tables_used virtual tables - bytecodevtab.html
- bytecode engine - opcode.html
- bytecode virtual table - bytecodevtab.html
- bytecodes - opcode.html
- C-API function list - c3ref/funclist.html
- C-language Interface - c3ref/intro.html
- cache method - tclsqlite.html#cache
- cache query parameter - uri.html#uricache
- cache_size - pragma.html#pragma_cache_size
- cache_size pragma - pragma.html#pragma_cache_size
- cache_spill - pragma.html#pragma_cache_spill
- cache_spill pragma - pragma.html#pragma_cache_spill
- canonical source code - getthecode.html
- capi3ref - c3ref/intro.html
- capi3ref_funclist - c3ref/funclist.html
- carray - carray.html
- carray table-valued function - carray.html
- CASE expression - lang_expr.html#case
- case_sensitive_like - pragma.html#pragma_case_sensitive_like
- case_sensitive_like pragma - pragma.html#pragma_case_sensitive_like
- CAST - lang_expr.html#castexpr
- cast - lang_expr.html#castexpr
- CAST expression - lang_expr.html#castexpr
- CAST operator - lang_expr.html#castexpr
- categorical listing of SQLite documents - docs.html
- ceil - lang_mathfunc.html#ceil
- ceiling - lang_mathfunc.html#ceil
- cell format summary - fileformat2.html#cellformat
- cell payload - fileformat2.html#cell_payload
- cell_size_check - pragma.html#pragma_cell_size_check
- cell_size_check pragma - pragma.html#pragma_cell_size_check
- cfgerrors - howtocorrupt.html#cfgerr
- change counter - fileformat2.html#chngctr
- changes - lang_corefunc.html#changes
- changes method - tclsqlite.html#changes
- changes SQL function - lang_corefunc.html#changes
- changeset - sessionintro.html#changeset
- changesets - sessionintro.html#changeset
- char - lang_corefunc.html#char
- char SQL function - lang_corefunc.html#char
- CHECK - lang_createtable.html#ckconst
- CHECK constraint - lang_createtable.html#ckconst
- CHECK constraints - lang_createtable.html#ckconst
- checklist - testing.html#cklist
- checkpoint - wal.html#ckpt
- checkpoint mode - c3ref/c_checkpoint_full.html
- checkpoint_fullfsync - pragma.html#pragma_checkpoint_fullfsync
- checkpoint_fullfsync pragma - pragma.html#pragma_checkpoint_fullfsync
- checkpointed - wal.html#ckpt
- checkpointing - wal.html#ckpt
- checksum VFS - cksumvfs.html
- checksum VFS shim - cksumvfs.html
- child key - foreignkeys.html#parentchild
- child table - foreignkeys.html#parentchild
- chronology - chronology.html
- cintro - cintro.html
- cksumvfs - cksumvfs.html
- CLI - cli.html
- clone the entire repository - getthecode.html#clone
- close method - tclsqlite.html#close
- Clustered indexes - withoutrowid.html
- co-routines - optoverview.html#coroutines
- coalesce - lang_corefunc.html#coalesce
- coalesce SQL function - lang_corefunc.html#coalesce
- Code of Conduct - codeofconduct.html
- Code of Ethics - codeofethics.html
- Code of Ethics of the Project Founder - codeofethics.html
- code repositories - download.html#srctree
- COLLATE - lang_createindex.html#collidx
- COLLATE clause - lang_createtable.html#collateclause
- COLLATE clauses - lang_createtable.html#collateclause
- COLLATE constraint - lang_createtable.html#collateclause
- collate method - tclsqlite.html#collate
- COLLATE operator - lang_expr.html#collateop
- collating function - datatype3.html#collation
- collating sequence - datatype3.html#collation
- collating sequences - datatype3.html#collation
- collation - datatype3.html#collation
- collation_list - pragma.html#pragma_collation_list
- collation_list pragma - pragma.html#pragma_collation_list
- collation_needed method - tclsqlite.html#collation_needed
- column access functions - c3ref/column_blob.html
- column affinity - datatype3.html#affinity
- column definition - lang_createtable.html#tablecoldef
- column definitions - lang_createtable.html#tablecoldef
- column-constraint - syntax/column-constraint.html
- column-constraint syntax diagram - syntax/column-constraint.html
- column-def - syntax/column-def.html
- column-def syntax diagram - syntax/column-def.html
- column-name-list - syntax/column-name-list.html
- column-name-list syntax diagram - syntax/column-name-list.html
- Columnar output modes - cli.html#clmnr
- columnar output modes - cli.html#clmnr
- colUsed field - vtab.html#colUsed
- comma option - printf.html#comma
- Command Line Interface - cli.html
- command-line interface - cli.html
- command-line options - cli.html#clopts
- command-line shell - cli.html
- commands - fts3.html#commands
- comment - lang_comment.html
- comment-syntax - syntax/comment-syntax.html
- comment-syntax syntax diagram - syntax/comment-syntax.html
- comments - lang_comment.html
- COMMIT - lang_transaction.html
- commit-stmt - syntax/commit-stmt.html
- commit-stmt syntax diagram - syntax/commit-stmt.html
- commit_hook method - tclsqlite.html#commit_hook
- common table expressions - lang_with.html
- common-table-expression - syntax/common-table-expression.html
- common-table-expression syntax diagram - syntax/common-table-expression.html
- comparison affinity rules - datatype3.html#compaff
- comparison expressions - datatype3.html#comparisons
- comparison with fts4 - fts5.html#appendix_a
- compilation - swarmvtab.html#compiling_and_using_swarmvtab
- compile fts - fts3.html#compiling_and_enabling_fts3_and_fts4
- compile loadable extensions - loadext.html#build
- compile-time options - compile.html
- compile_options - pragma.html#pragma_compile_options
- compile_options pragma - pragma.html#pragma_compile_options
- Compiling Loadable Extensions - loadext.html#build
- compiling the CLI - howtocompile.html#cli
- compiling the TCL interface - howtocompile.html#tcl
- complete list of SQLite releases - changes.html
- complete method - tclsqlite.html#complete
- COMPLETION - completion.html
- COMPLETION extension - completion.html
- COMPLETION table-valued function - completion.html
- compound query - lang_select.html#compound
- compound SELECT - lang_select.html#compound
- compound select - lang_select.html#compound
- compound SELECTs - lang_select.html#compound
- compound-operator - syntax/compound-operator.html
- compound-operator syntax diagram - syntax/compound-operator.html
- compound-select-stmt - syntax/compound-select-stmt.html
- compound-select-stmt syntax diagram - syntax/compound-select-stmt.html
- compressed FTS4 content - fts3.html#*fts4compression
- compute the Mandelbrot set - lang_with.html#mandelbrot
- computed columns - gencol.html
- concat - lang_corefunc.html#concat
- concat SQL function - lang_corefunc.html#concat
- concat_ws - lang_corefunc.html#concat_ws
- concat_ws SQL function - lang_corefunc.html#concat_ws
- config method - tclsqlite.html#config
- configurable edit distances - spellfix1.html#configeditdist
- configuration option - c3ref/c_config_covering_index_scan.html
- conflict - lang_conflict.html
- conflict clause - lang_conflict.html
- conflict resolution algorithm - lang_conflict.html
- conflict resolution mode - c3ref/c_fail.html
- conflict-clause - syntax/conflict-clause.html
- conflict-clause syntax diagram - syntax/conflict-clause.html
- constant-propagation optimization - optoverview.html#constprop
- contentless fts4 tables - fts3.html#_contentless_fts4_tables_
- contentless-delete - fts5.html#clssdeltab
- copy method - tclsqlite.html#copy
- copyright - copyright.html
- Core Functions - lang_corefunc.html
- core URI query parameters - c3ref/open.html#coreuriqueryparameters
- corefunc - lang_corefunc.html
- coreqp - uri.html#coreqp
- correlated subqueries - lang_expr.html#cosub
- cos - lang_mathfunc.html#cos
- cos SQL function - lang_mathfunc.html#cos
- cosh - lang_mathfunc.html#cosh
- cosh SQL function - lang_mathfunc.html#cosh
- count - lang_aggfunc.html#count
- count aggregate function - lang_aggfunc.html#count
- count_changes - pragma.html#pragma_count_changes
- count_changes pragma - pragma.html#pragma_count_changes
- coverage testing vs. fuzz testing - testing.html#tension
- covering index - queryplanner.html#covidx
- covering indexes - queryplanner.html#covidx
- covering indices - queryplanner.html#covidx
- CPU cycles used - cpu.html
- CPU performance measurement - cpu.html
- CREATE INDEX - lang_createindex.html
- CREATE TABLE - lang_createtable.html
- CREATE TABLE AS - lang_createtable.html#createtabas
- CREATE TRIGGER - lang_createtrigger.html
- CREATE VIEW - lang_createview.html
- CREATE VIRTUAL TABLE - lang_createvtab.html
- create-index-stmt - syntax/create-index-stmt.html
- create-index-stmt syntax diagram - syntax/create-index-stmt.html
- create-table-stmt - syntax/create-table-stmt.html
- create-table-stmt syntax diagram - syntax/create-table-stmt.html
- create-trigger-stmt - syntax/create-trigger-stmt.html
- create-trigger-stmt syntax diagram - syntax/create-trigger-stmt.html
- create-view-stmt - syntax/create-view-stmt.html
- create-view-stmt syntax diagram - syntax/create-view-stmt.html
- create-virtual-table-stmt - syntax/create-virtual-table-stmt.html
- create-virtual-table-stmt syntax diagram - syntax/create-virtual-table-stmt.html
- createindex - lang_createindex.html
- createtable - lang_createtable.html
- createtrigger - lang_createtrigger.html
- createview - lang_createview.html
- createvtab - lang_createvtab.html
- crew - crew.html
- CROSS JOIN - optoverview.html#crossjoin
- csv - csv.html
- CSV export - cli.html#csvout
- CSV import - cli.html#csv
- CSV virtual table - csv.html
- cte-table-name - syntax/cte-table-name.html
- cte-table-name syntax diagram - syntax/cte-table-name.html
- custom auxiliary functions - fts5.html#custom_auxiliary_functions_api_reference
- custom auxiliary overview - fts5.html#custom_auxiliary_functions_api_overview
- custom builds - custombuild.html
- custom r-tree queries - rtree.html#customquery
- custom SQL function - appfunc.html
- custom SQL functions - appfunc.html
- custom tokenizers - fts5.html#custom_tokenizers
- custom virtual tables - vtab.html#customvtab
- CVEs - cves.html
- Dan Kennedy - crew.html#dan
- data container - whentouse.html#container
- data transfer format - whentouse.html#wireproto
- data_store_directory - pragma.html#pragma_data_store_directory
- data_store_directory pragma - pragma.html#pragma_data_store_directory
- data_version - pragma.html#pragma_data_version
- data_version pragma - pragma.html#pragma_data_version
- database as container object - sqlar.html#dbasobj
- database as object - sqlar.html#dbasobj
- database connection - c3ref/sqlite3.html
- database connections - c3ref/sqlite3.html
- database corruption caused by inconsistent use of 83 filenames - shortnames.html#db83corrupt
- database filename aliasing - howtocorrupt.html#alias
- database header - fileformat2.html#database_header
- database_list - pragma.html#pragma_database_list
- database_list pragma - pragma.html#pragma_database_list
- datatype - datatype3.html
- date - lang_datefunc.html#dttm
- date and time datatype - datatype3.html#datetime
- Date And Time Functions - lang_datefunc.html
- date and time functions - lang_datefunc.html
- date SQL function - lang_datefunc.html#dttm
- date/time modifiers - lang_datefunc.html#dtmods
- date/time special case - deterministic.html#dtexception
- datefunc - lang_datefunc.html
- datetime - lang_datefunc.html#dttm
- datetime SQL function - lang_datefunc.html#dttm
- dbghints - debugging.html
- dbhash - dbhash.html
- dbhash.exe - dbhash.html
- dbsqlfuzz - testing.html#dbsqlfuzz
- dbstat - dbstat.html
- DBSTAT aggregated mode - dbstat.html#dbstatagg
- DBSTAT virtual table - dbstat.html
- dbstat virtual table - dbstat.html
- debugging hints - debugging.html
- debugging memory allocator - malloc.html#memdebug
- decimal extension - floatingpoint.html#decext
- decision checklist - whentouse.html#dbcklst
- DEFAULT clauses - lang_createtable.html#dfltval
- default column value - lang_createtable.html#dfltval
- default memory allocator - malloc.html#defaultalloc
- default value - lang_createtable.html#dfltval
- default_cache_size - pragma.html#pragma_default_cache_size
- default_cache_size pragma - pragma.html#pragma_default_cache_size
- defense against dark arts - security.html
- defense against the dark arts - security.html
- defensive code - testing.html#defcode
- defer_foreign_keys - pragma.html#pragma_defer_foreign_keys
- defer_foreign_keys pragma - pragma.html#pragma_defer_foreign_keys
- degrees - lang_mathfunc.html#degrees
- degrees SQL function - lang_mathfunc.html#degrees
- DELETE - lang_delete.html
- delete - lang_delete.html
- delete-stmt - syntax/delete-stmt.html
- delete-stmt syntax diagram - syntax/delete-stmt.html
- delete-stmt-limited - syntax/delete-stmt-limited.html
- delete-stmt-limited syntax diagram - syntax/delete-stmt-limited.html
- deletemerge - fts5.html#the_deletemerge_configuration_option
- DELETEs - lang_delete.html
- deleting a hot journal - howtocorrupt.html#delhotjrnl
- deprecated - c3ref/experimental.html
- DESC - lang_createindex.html#descidx
- descending index - lang_createindex.html#descidx
- descending indexes - lang_createindex.html#descidx
- descending indices - lang_createindex.html#descidx
- deserialize method - tclsqlite.html#deserialize
- DETACH - lang_detach.html
- detach - lang_detach.html
- DETACH DATABASE - lang_detach.html
- detach-stmt - syntax/detach-stmt.html
- detach-stmt syntax diagram - syntax/detach-stmt.html
- deterministic function - deterministic.html
- deterministic functions - deterministic.html
- deterministic SQL functions - deterministic.html
- DISTINCT - lang_select.html#distinct
- doclist - doclist.html
- documents by category - docs.html
- dot-commands - cli.html#dotcmd
- double-quoted string literal - quirks.html#dblquote
- double-quoted string misfeature - quirks.html#dblquote
- download page - download.html
- drop column - lang_altertable.html#altertabdropcol
- DROP INDEX - lang_dropindex.html
- DROP TABLE - lang_droptable.html
- DROP TRIGGER - lang_droptrigger.html
- DROP VIEW - lang_dropview.html
- drop-index-stmt - syntax/drop-index-stmt.html
- drop-index-stmt syntax diagram - syntax/drop-index-stmt.html
- drop-table-stmt - syntax/drop-table-stmt.html
- drop-table-stmt syntax diagram - syntax/drop-table-stmt.html
- drop-trigger-stmt - syntax/drop-trigger-stmt.html
- drop-trigger-stmt syntax diagram - syntax/drop-trigger-stmt.html
- drop-view-stmt - syntax/drop-view-stmt.html
- drop-view-stmt syntax diagram - syntax/drop-view-stmt.html
- dropindex - lang_dropindex.html
- droptable - lang_droptable.html
- droptrigger - lang_droptrigger.html
- dropview - lang_dropview.html
- dynamic string - c3ref/str.html
- dynamic typing - datatype3.html
- edit SQL function - cli.html#editfunc
- editdist3 - spellfix1.html#editdist3
- embedded - serverless.html
- empty_result_callbacks - pragma.html#pragma_empty_result_callbacks
- empty_result_callbacks pragma - pragma.html#pragma_empty_result_callbacks
- enable_load_extension method - tclsqlite.html#enable_load_extension
- encoding - pragma.html#pragma_encoding
- encoding pragma - pragma.html#pragma_encoding
- enhanced query syntax - fts3.html#_set_operations_using_the_enhanced_query_syntax
- eponymous virtual table - vtab.html#epovtab
- eponymous virtual tables - vtab.html#epovtab
- eponymous-only virtual table - vtab.html#epoonlyvtab
- eponymous-only virtual tables - vtab.html#epoonlyvtab
- eqp-or-opt - eqp.html#or-opt
- errlog - errlog.html
- error code - rescode.html
- error codes - rescode.html
- error log - errlog.html
- errorcode method - tclsqlite.html#errorcode
- ESCAPE - lang_expr.html#like
- eval method - tclsqlite.html#eval
- EXCLUDE clause - windowfunctions.html#wexcls
- exclude clause - windowfunctions.html#wexcls
- EXCLUSIVE - lockingv3.html#excl_lock
- EXCLUSIVE lock - lockingv3.html#excl_lock
- exclusive lock - lockingv3.html#excl_lock
- EXCLUSIVE locking mode - pragma.html#pragma_locking_mode
- exclusive locking mode - pragma.html#pragma_locking_mode
- exists method - tclsqlite.html#exists
- EXISTS operator - lang_expr.html#exists_op
- exp - lang_mathfunc.html#exp
- exp SQL function - lang_mathfunc.html#exp
- experimental - c3ref/experimental.html
- experimental memory allocators - malloc.html#memsysx
- EXPLAIN - lang_explain.html
- explain - lang_explain.html
- EXPLAIN QUERY PLAN - eqp.html
- explain query plan - eqp.html
- export to excel - cli.html#exexcel*
- export to TSV - cli.html#extsv*
- expr - syntax/expr.html
- expr syntax diagram - syntax/expr.html
- expression - lang_expr.html
- expression affinity - datatype3.html#expraff
- expression index - expridx.html
- expression indexes - expridx.html
- expression syntax - lang_expr.html
- ext-v-prim - rescode.html#pve
- extended error code - rescode.html#extrc
- extended error codes - rescode.html#extrc
- extended result code - rescode.html#extrc
- extended result code definitions - c3ref/c_abort_rollback.html
- extended result codes - rescode.html#extrc
- Extending FTS5 - fts5.html#extending_fts5
- extension loading - loadext.html
- external content fts4 tables - fts3.html#_external_content_fts4_tables_
- extract - lang_expr.html#extract
- factored-select-stmt - syntax/factored-select-stmt.html
- factored-select-stmt syntax diagram - syntax/factored-select-stmt.html
- faster than the filesystem - fasterthanfs.html
- file control - c3ref/file_control.html
- file control opcode - c3ref/c_fcntl_begin_atomic_write.html
- file control opcodes - c3ref/c_fcntl_begin_atomic_write.html
- file format - fileformat2.html
- file format version numbers - fileformat2.html#vnums
- file I/O functions - cli.html#fileio
- file locking and concurrency control - lockingv3.html
- file locking states - lockingv3.html#locking
- file-format benefits - aff_short.html
- filesystem corruption - howtocorrupt.html#fscorruption
- FILTER clause on aggregate functions - lang_aggfunc.html#aggfilter
- filter-clause - syntax/filter-clause.html
- filter-clause syntax diagram - syntax/filter-clause.html
- flattened - optoverview.html#flattening
- flattening optimization - optoverview.html#flattening
- flexible type system - datatype3.html
- Flexible typing is a feature - flextypegood.html
- floor - lang_mathfunc.html#floor
- floor SQL function - lang_mathfunc.html#floor
- footprint - footprint.html
- foreign key actions - foreignkeys.html#fk_actions
- foreign key constraint - foreignkeys.html
- FOREIGN KEY constraints - foreignkeys.html
- foreign key constraints - foreignkeys.html
- foreign key constraints are enabled - foreignkeys.html#fk_enable
- foreign-key-clause - syntax/foreign-key-clause.html
- foreign-key-clause syntax diagram - syntax/foreign-key-clause.html
- foreign_key_check - pragma.html#pragma_foreign_key_check
- foreign_key_check pragma - pragma.html#pragma_foreign_key_check
- foreign_key_list - pragma.html#pragma_foreign_key_list
- foreign_key_list pragma - pragma.html#pragma_foreign_key_list
- foreign_keys - pragma.html#pragma_foreign_keys
- foreign_keys pragma - pragma.html#pragma_foreign_keys
- format - lang_corefunc.html#format
- format SQL function - lang_corefunc.html#format
- forum - support.html#fx
- frame boundary - windowfunctions.html#frameboundary
- frame specification - windowfunctions.html#framespec
- frame type - windowfunctions.html#frametype
- frame-spec - syntax/frame-spec.html
- frame-spec syntax diagram - syntax/frame-spec.html
- frames - windowfunctions.html#framespec
- free-page list - fileformat2.html#freelist
- freelist - fileformat2.html#freelist
- freelist_count - pragma.html#pragma_freelist_count
- freelist_count pragma - pragma.html#pragma_freelist_count
- FROM clause - lang_select.html#fromclause
- FTS auxiliary functions - fts3.html#snippet
- FTS hidden column - fts3.html#hiddencol
- FTS MATCH - fts3.html#full_text_index_queries
- FTS shadow tables - fts3.html#*shadowtab
- FTS3 - fts3.html
- fts3 - fts3.html
- fts3_tokenizer - fts3.html#f3tknzr
- fts3tokenize - fts3.html#fts3tok
- fts3tokenize virtual table - fts3.html#fts3tok
- FTS4 - fts3.html#fts4
- FTS4 automerge command - fts3.html#*fts4automergecmd
- FTS4 commands - fts3.html#*cmds
- fts4 compress option - fts3.html#the_compress_and_uncompress_options
- FTS4 content option - fts3.html#*fts4content
- fts4 content option - fts3.html#the_content_option_
- FTS4 integrity-check command - fts3.html#*fts4ickcmd
- FTS4 languageid option - fts3.html#*fts4languageid
- fts4 languageid option - fts3.html#the_languageid_option
- FTS4 matchinfo option - fts3.html#fts4matchinfo
- fts4 matchinfo option - fts3.html#the_matchinfo_option
- FTS4 merge command - fts3.html#*fts4mergecmd
- FTS4 notindexed option - fts3.html#fts4notindexed
- fts4 notindexed option - fts3.html#the_notindexed_option
- FTS4 optimize command - fts3.html#*fts4optcmd
- FTS4 options - fts3.html#fts4_options
- FTS4 order option - fts3.html#fts4order
- FTS4 prefix option - fts3.html#fts4prefix
- fts4 prefix option - fts3.html#the_prefix_option
- FTS4 rebuild command - fts3.html#*fts4rebuidcmd
- fts4aux - fts3.html#fts4aux
- fts4aux languageid column - fts3.html#f4alid
- FTS5 - fts5.html
- fts5 - fts5.html
- FTS5 automerge option - fts5.html#the_automerge_configuration_option
- FTS5 auxiliary functions - fts5.html#_auxiliary_functions_
- FTS5 bm25 - fts5.html#the_bm25_function
- FTS5 boolean operators - fts5.html#fts5_boolean_operators
- FTS5 building - fts5.html#compiling_and_using_fts5
- FTS5 column filters - fts5.html#fts5_column_filters
- FTS5 columnsize option - fts5.html#the_columnsize_option
- FTS5 content option - fts5.html#external_content_and_contentless_tables
- FTS5 contentless tables - fts5.html#contentless_tables
- FTS5 contentless-delete tables - fts5.html#contentless_delete_tables
- FTS5 CREATE TABLE Options - fts5.html#fts5_table_creation_and_initialization
- FTS5 custom auxiliary functions - fts5.html#custom_auxiliary_functions
- FTS5 delete command - fts5.html#the_delete_command
- FTS5 delete-all command - fts5.html#the_delete_all_command
- FTS5 detail option - fts5.html#the_detail_option
- FTS5 external content pitfalls - fts5.html#external_content_table_pitfalls
- FTS5 external content tables - fts5.html#external_content_tables
- FTS5 highlight - fts5.html#the_highlight_function
- FTS5 initial token - fts5.html#carrotq
- FTS5 initial token queries - fts5.html#fts5_initial_token_queries
- FTS5 merge command - fts5.html#the_merge_command
- FTS5 NEAR queries - fts5.html#fts5_near_queries
- FTS5 optimize command - fts5.html#the_optimize_command
- FTS5 pgsz option - fts5.html#the_pgsz_configuration_option
- FTS5 Phrases - fts5.html#fts5_phrases
- FTS5 prefix indexes - fts5.html#prefix_indexes
- FTS5 prefix queries - fts5.html#fts5_prefix_queries
- FTS5 query syntax - fts5.html#full_text_query_syntax
- FTS5 rank configuration option - fts5.html#the_rank_configuration_option
- FTS5 rebuild command - fts5.html#the_rebuild_command
- FTS5 secure-delete command - fts5.html#the_secure_delete_configuration_option
- fts5 shadow tables - fts5.html#fts5shadowtables
- FTS5 snippet - fts5.html#the_snippet_function
- FTS5 Strings - fts5.html#fts5_strings
- fts5 technical differences - fts5.html#_summary_of_technical_differences_
- FTS5 tokendata option - fts5.html#the_tokendata_option
- FTS5 tokenizers - fts5.html#tokenizers
- FTS5 usermerge option - fts5.html#the_usermerge_configuration_option
- fts5vocab - fts5.html#the_fts5vocab_virtual_table_module
- FULL JOIN - lang_select.html#fulljoin
- FULL OUTER JOIN - lang_select.html#fulljoin
- Full-featured SQL - fullsql.html
- full-featured SQL - fullsql.html
- full-text search - fts3.html
- full_column_names - pragma.html#pragma_full_column_names
- full_column_names pragma - pragma.html#pragma_full_column_names
- fullfsync - pragma.html#pragma_fullfsync
- fullfsync pragma - pragma.html#pragma_fullfsync
- function creation routines - c3ref/create_function.html
- function method - tclsqlite.html#function
- function-arguments - syntax/function-arguments.html
- function-arguments syntax diagram - syntax/function-arguments.html
- function_list - pragma.html#pragma_function_list
- function_list pragma - pragma.html#pragma_function_list
- functions within expressions - lang_expr.html#*funcinexpr
- fuzz testing - testing.html#fuzztesting
- fuzzcheck - testing.html#fuzzcheck
- generalized ALTER TABLE procedure - lang_altertable.html#otheralter
- generate_series - series.html
- generated column - gencol.html
- Generated columns - gencol.html
- generated columns - gencol.html
- GEOPOLY - geopoly.html
- geopoly - geopoly.html
- Geopoly extension - geopoly.html
- Geopoly module - geopoly.html
- geopoly_area - geopoly.html#garea
- geopoly_bbox - geopoly.html#gbbox
- geopoly_blob - geopoly.html#gblob
- geopoly_ccw - geopoly.html#ccw
- geopoly_contains_point - geopoly.html#gpoint
- geopoly_group_bbox - geopoly.html#gbbox
- geopoly_json - geopoly.html#gjson
- geopoly_overlap - geopoly.html#goverlap
- geopoly_regular - geopoly.html#regpoly
- geopoly_svg - geopoly.html#gsvg
- geopoly_within - geopoly.html#gwithin
- geopoly_xform - geopoly.html#xform
- get the canonical source code - getthecode.html
- GLOB - lang_expr.html#glob
- glob - lang_corefunc.html#glob
- glob SQL function - lang_corefunc.html#glob
- GROUP BY - lang_select.html#resultset
- GROUP BY clause - lang_select.html#resultset
- group_concat - lang_aggfunc.html#group_concat
- group_concat aggregate function - lang_aggfunc.html#group_concat
- GROUPS frames - windowfunctions.html#grouptype
- hard_heap_limit - pragma.html#pragma_hard_heap_limit
- hard_heap_limit pragma - pragma.html#pragma_hard_heap_limit
- hash join - optoverview.html#hashjoin
- HAVE_FDATASYNC - compile.html#fdatasync
- HAVE_GMTIME_R - compile.html#gmtime_r
- HAVE_ISNAN - compile.html#isnan
- HAVE_LOCALTIME_R - compile.html#localtime_r
- HAVE_LOCALTIME_S - compile.html#localtime_s
- HAVE_MALLOC_USABLE_SIZE - compile.html#malloc_usable_size
- HAVE_SQLITE_CONFIG_H - compile.html#sqlite_config_h
- HAVE_STRCHRNUL - compile.html#strchrnul
- HAVE_UTIME - compile.html#utime
- HAVING - lang_select.html#resultset
- HAVING clause - lang_select.html#resultset
- hazards of upgrading to the NGQP - queryplanner-ng.html#hazards
- hex - lang_corefunc.html#hex
- hex SQL function - lang_corefunc.html#hex
- hexadecimal integer literals - lang_expr.html#hexint
- hexadecimal integers - lang_expr.html#hexint
- hidden column - vtab.html#hiddencol
- hidden columns - vtab.html#hiddencol
- high-reliability - hirely.html
- Hipp - crew.html
- host parameter - c3ref/bind_blob.html
- host parameter name - c3ref/bind_blob.html
- host parameters - c3ref/bind_blob.html
- hot journal - fileformat2.html#hotjrnl
- hot journal files - fileformat2.html#hotjrnl
- how collation is determined - datatype3.html#colrules
- How SQL Works - howitworks.html
- How SQLite Works - howitworks.html
- how to compile - howtocompile.html
- How To Compile SQLite - howtocompile.html
- how to corrupt - howtocorrupt.html
- how to corrupt a database - useovernet.html
- How To Corrupt Your Database Files - lockingv3.html#how_to_corrupt
- how vacuum works - lang_vacuum.html#howvacuumworks
- IEEE 754 floating point values are approximations - floatingpoint.html#fpapprox
- ieee754 extension - floatingpoint.html#ieee754ext
- ieee754 function - floatingpoint.html#ieee754
- ieee754_exponent function - floatingpoint.html#ieee754m
- ieee754_from_blob function - floatingpoint.html#ieee754b
- ieee754_mantissa function - floatingpoint.html#ieee754m
- ieee754_to_blob function - floatingpoint.html#ieee754b
- ifnull - lang_corefunc.html#ifnull
- ifnull SQL function - lang_corefunc.html#ifnull
- ignore_check_constraints - pragma.html#pragma_ignore_check_constraints
- ignore_check_constraints pragma - pragma.html#pragma_ignore_check_constraints
- iif - lang_corefunc.html#iif
- iif SQL function - lang_corefunc.html#iif
- immutable query parameter - uri.html#uriimmutable
- imposter tables - imposter.html
- IN operator - lang_expr.html#in_op
- in-header database size - fileformat2.html#filesize
- in-memory database - inmemorydb.html
- in-memory databases - inmemorydb.html
- in-memory shared cache database - inmemorydb.html#sharedmemdb
- in-memory shared-cache - sharedcache.html#inmemsharedcache
- incrblob method - tclsqlite.html#incrblob
- increase in the default page size - pgszchng2016.html
- incremental_vacuum - pragma.html#pragma_incremental_vacuum
- incremental_vacuum pragma - pragma.html#pragma_incremental_vacuum
- index b-tree - fileformat2.html#btypes
- index_info - pragma.html#pragma_index_info
- index_info pragma - pragma.html#pragma_index_info
- index_list - pragma.html#pragma_index_list
- index_list pragma - pragma.html#pragma_index_list
- index_xinfo - pragma.html#pragma_index_xinfo
- index_xinfo pragma - pragma.html#pragma_index_xinfo
- INDEXED BY - lang_indexedby.html
- indexed expression - expridx.html
- indexed expressions - expridx.html
- indexed-column - syntax/indexed-column.html
- indexed-column syntax diagram - syntax/indexed-column.html
- Indexes - lang_createindex.html
- Indexes On Expressions - expridx.html
- indexes on expressions - expridx.html
- indexing - queryplanner.html
- indexing tutorial - queryplanner.html
- INSERT - lang_insert.html
- insert - lang_insert.html
- insert-stmt - syntax/insert-stmt.html
- insert-stmt syntax diagram - syntax/insert-stmt.html
- INSERTs - lang_insert.html
- INSTEAD OF - lang_createtrigger.html#instead_of_trigger
- INSTEAD OF trigger - lang_createtrigger.html#instead_of_trigger
- instr - lang_corefunc.html#instr
- instr SQL function - lang_corefunc.html#instr
- INTEGER PRIMARY KEY - lang_createtable.html#rowid
- integer-valued r-trees - rtree.html#intrtree
- integrity_check - pragma.html#pragma_integrity_check
- integrity_check pragma - pragma.html#pragma_integrity_check
- internal index - fileformat2.html#intschema
- internal indexes - fileformat2.html#intschema
- internal schema object - fileformat2.html#intschema
- internal schema objects - fileformat2.html#intschema
- internal table - fileformat2.html#intschema
- internal tables - fileformat2.html#intschema
- Internal Versus External BLOBs - intern-v-extern-blob.html
- interrupt method - tclsqlite.html#interrupt
- invalid UTF - invalidutf.html
- IS DISTINCT FROM - lang_expr.html#isdf
- IS NOT DISTINCT FROM - lang_expr.html#isdf
- IS NOT operator - lang_expr.html#isisnot
- IS operator - lang_expr.html#isisnot
- isolation - isolation.html
- jfuzz - testing.html#dbsqlfuzz
- join order - optoverview.html#joins
- join-clause - syntax/join-clause.html
- join-clause syntax diagram - syntax/join-clause.html
- join-constraint - syntax/join-constraint.html
- join-constraint syntax diagram - syntax/join-constraint.html
- join-operator - syntax/join-operator.html
- join-operator syntax diagram - syntax/join-operator.html
- journal_mode - pragma.html#pragma_journal_mode
- journal_mode pragma - pragma.html#pragma_journal_mode
- journal_size_limit - pragma.html#pragma_journal_size_limit
- journal_size_limit pragma - pragma.html#pragma_journal_size_limit
- json - json1.html#jmini
- JSON BLOB input bug - json1.html#jblobbug
- JSON function path arguments - json1.html#jsonpath
- JSON paths - json1.html#jsonpath
- json SQL function - json1.html#jmini
- JSON SQL functions - json1.html
- json1 - json1.html
- JSON5 - json1.html#json5
- JSON5 extensions - json1.html#json5
- json_array - json1.html#jarray
- json_array SQL function - json1.html#jarray
- json_array_length - json1.html#jarraylen
- json_array_length SQL function - json1.html#jarraylen
- json_each - json1.html#jeach
- json_each table-valued function - json1.html#jeach
- json_error_position - json1.html#jerr
- json_error_position SQL function - json1.html#jerr
- json_extract - json1.html#jex
- json_extract SQL function - json1.html#jex
- json_group_array - json1.html#jgrouparray
- json_group_array SQL function - json1.html#jgrouparray
- json_group_object - json1.html#jgroupobject
- json_group_object SQL function - json1.html#jgroupobject
- json_insert - json1.html#jins
- json_insert SQL function - json1.html#jins
- json_object - json1.html#jobj
- json_object SQL function - json1.html#jobj
- json_patch - json1.html#jpatch
- json_patch SQL function - json1.html#jpatch
- json_pretty - json1.html#jpretty
- json_pretty SQL function - json1.html#jpretty
- json_quote - json1.html#jquote
- json_quote SQL function - json1.html#jquote
- json_remove - json1.html#jrm
- json_remove SQL function - json1.html#jrm
- json_replace - json1.html#jrepl
- json_replace SQL function - json1.html#jrepl
- json_set - json1.html#jset
- json_set SQL function - json1.html#jset
- json_tree - json1.html#jtree
- json_tree table-valued function - json1.html#jtree
- json_type - json1.html#jtype
- json_type SQL function - json1.html#jtype
- json_valid - json1.html#jvalid
- json_valid SQL function - json1.html#jvalid
- JSONB - json1.html#jsonbx
- jsonb - json1.html#jminib
- jsonb SQL function - json1.html#jminib
- jsonb_array - json1.html#jarrayb
- jsonb_array SQL function - json1.html#jarrayb
- jsonb_extract - json1.html#jexb
- jsonb_extract SQL function - json1.html#jexb
- jsonb_group_array - json1.html#jgrouparrayb
- jsonb_group_array SQL function - json1.html#jgrouparrayb
- jsonb_group_object - json1.html#jgroupobjectb
- jsonb_group_object SQL function - json1.html#jgroupobjectb
- jsonb_insert - json1.html#jinsb
- jsonb_insert SQL function - json1.html#jinsb
- jsonb_object - json1.html#jobjb
- jsonb_object SQL function - json1.html#jobjb
- jsonb_patch - json1.html#jpatchb
- jsonb_patch SQL function - json1.html#jpatchb
- jsonb_remove - json1.html#jrmb
- jsonb_remove SQL function - json1.html#jrmb
- jsonb_replace - json1.html#jreplb
- jsonb_replace SQL function - json1.html#jreplb
- jsonb_set - json1.html#jsetb
- jsonb_set SQL function - json1.html#jsetb
- julianday - lang_datefunc.html#jlndy
- julianday modifier - lang_datefunc.html#jdmod
- julianday SQL function - lang_datefunc.html#jlndy
- Kennedy - crew.html
- keyword index - keyword_index.html
- keywords - lang_keywords.html
- langexpr - lang_expr.html
- langindexedby - lang_indexedby.html
- langkeywords - lang_keywords.html
- langreplace - lang_replace.html
- languageid - fts3.html#*fts4languageid
- langupdate - lang_update.html
- langvacuum - lang_vacuum.html
- large WAL files - wal.html#bigwal
- last_insert_rowid - lang_corefunc.html#last_insert_rowid
- last_insert_rowid method - tclsqlite.html#last_insert_rowid
- last_insert_rowid SQL function - lang_corefunc.html#last_insert_rowid
- LEFT JOIN strength reduction optimization - optoverview.html#leftjoinreduction
- legacy_alter_table - pragma.html#pragma_legacy_alter_table
- legacy_alter_table pragma - pragma.html#pragma_legacy_alter_table
- legacy_file_format - pragma.html#pragma_legacy_file_format
- legacy_file_format pragma - pragma.html#pragma_legacy_file_format
- Lemon - lemon.html
- Lemon LALR parser generator - lemon.html
- Lemon parser generator - lemon.html
- length - lang_corefunc.html#length
- length SQL function - lang_corefunc.html#length
- library size - footprint.html
- license - copyright.html
- LIKE - lang_expr.html#like
- like - lang_corefunc.html#like
- LIKE optimization - optoverview.html#like_opt
- like SQL function - lang_corefunc.html#like
- likelihood - lang_corefunc.html#likelihood
- likelihood SQL function - lang_corefunc.html#likelihood
- likely - lang_corefunc.html#likely
- likely SQL function - lang_corefunc.html#likely
- LIMIT - lang_select.html#limitoffset
- limit categories - c3ref/c_limit_attached.html
- limit category - c3ref/c_limit_attached.html
- limits - limits.html
- list of current bytecodes - opcode.html#codes
- list of virtual tables - vtablist.html
- literal value - lang_expr.html#litvalue
- literal-value - syntax/literal-value.html
- literal-value syntax diagram - syntax/literal-value.html
- ln - lang_mathfunc.html#ln
- ln SQL function - lang_mathfunc.html#ln
- load_extension - lang_corefunc.html#load_extension
- load_extension SQL function - lang_corefunc.html#load_extension
- loadable extension - loadext.html
- loadable extensions - loadext.html
- loadext - loadext.html
- localtime modifier - lang_datefunc.html#localtime
- lock-byte page - fileformat2.html#lockbyte
- locking_mode - pragma.html#pragma_locking_mode
- locking_mode pragma - pragma.html#pragma_locking_mode
- log - lang_mathfunc.html#log
- log2 - lang_mathfunc.html#log2
- log2 SQL function - lang_mathfunc.html#log2
- log10 - lang_mathfunc.html#log
- long term support - lts.html
- lookaside - malloc.html#lookaside
- lookaside buffer - malloc.html#lookaside
- lookaside memory - malloc.html#lookaside
- lookaside memory allocator - malloc.html#lookaside
- low-dependency - selfcontained.html
- lower - lang_corefunc.html#lower
- lower SQL function - lang_corefunc.html#lower
- ltrim - lang_corefunc.html#ltrim
- ltrim SQL function - lang_corefunc.html#ltrim
- mailing lists - support.html#mailinglists
- managing SQLite Archives from the command-line - sqlar.html#cltools
- Manual Control Of Query Plans Using CROSS JOIN - optoverview.html#crossjoin
- Manual Control Of Query Plans Using SQLITE_STAT Tables - optoverview.html#manctrl
- master journal - tempfiles.html#superjrnl
- MATCH - lang_expr.html#match
- matchinfo - fts3.html#matchinfo
- matchinfo b flag - fts3.html#matchinfo-b
- matchinfo x flag - fts3.html#matchinfo-x
- matchinfo y flag - fts3.html#matchinfo-y
- materialization hints - lang_with.html#mathint
- MATERIALIZED - lang_with.html#mathint
- Math Functions - lang_mathfunc.html
- math functions - lang_mathfunc.html
- mathfunc - lang_mathfunc.html
- max - lang_corefunc.html#max_scalar
- max aggregate function - lang_aggfunc.html#max_agg
- max SQL function - lang_corefunc.html#max_scalar
- max_agg - lang_aggfunc.html#max_agg
- max_page_count - pragma.html#pragma_max_page_count
- max_page_count pragma - pragma.html#pragma_max_page_count
- max_scalar - lang_corefunc.html#max_scalar
- maxopen parameter - swarmvtab.html#the_maxopen_parameter
- MC/DC - testing.html#mcdc
- MC/DC testing - testing.html#mcdc
- memory - inmemorydb.html
- memory allocation - malloc.html
- memory statistics - malloc.html#memstatus
- memory-mapped I/O - mmap.html
- memsys2 - malloc.html#memdebug
- memsys5 - malloc.html#memsys5
- merge command - fts3.html#*fts4mergecmd
- microoptimizations - cpu.html#microopt
- min - lang_corefunc.html#min_scalar
- min aggregate function - lang_aggfunc.html#min_agg
- min SQL function - lang_corefunc.html#min_scalar
- min/max optimization - optoverview.html#minmax
- min_agg - lang_aggfunc.html#min_agg
- min_scalar - lang_corefunc.html#min_scalar
- missing callback - swarmvtab.html#the_missing_callback
- mmap - mmap.html
- mmap_size - pragma.html#pragma_mmap_size
- mmap_size pragma - pragma.html#pragma_mmap_size
- mod - lang_mathfunc.html#mod
- mod SQL function - lang_mathfunc.html#mod
- mode query parameter - uri.html#urimode
- modeof - uri.html#urimodeof
- modeof query parameter - uri.html#urimodeof
- modifiers - lang_datefunc.html#dtmods
- module_list - pragma.html#pragma_module_list
- module_list pragma - pragma.html#pragma_module_list
- most used - mostdeployed.html
- most widely deployed - mostdeployed.html
- most widely used - mostdeployed.html
- mutation test script - th3.html#muttest
- mutation testing - testing.html#mutationtests
- mxFrame - walformat.html#mxframe
- naming - lang_naming.html
- nBackfill - walformat.html#nbackfill
- NEAR queries - fts3.html#near
- network filesystem use - useovernet.html
- Next Generation Query Planner - queryplanner-ng.html
- next generation query planner - queryplanner-ng.html
- NGQP - queryplanner-ng.html
- NOCASE - datatype3.html#collation
- NOCASE collating function - datatype3.html#collation
- nolock query parameter - uri.html#urinolock
- non-deterministic functions - deterministic.html
- non-standard SELECT syntax - lang_select.html#nonstd
- NOT EXISTS operator - lang_expr.html#exists_op
- NOT IN operator - lang_expr.html#in_op
- NOT INDEXED - lang_indexedby.html
- NOT MATERIALIZED - lang_with.html#mathint
- NOT NULL - lang_createtable.html#notnullconst
- NOT NULL constraint - lang_createtable.html#notnullconst
- NOT NULL constraints - lang_createtable.html#notnullconst
- not open-contributin - copyright.html#notopencontrib
- NUL characters in strings - nulinstr.html
- nullif - lang_corefunc.html#nullif
- nullif SQL function - lang_corefunc.html#nullif
- NULLS FIRST - lang_select.html#nullslast
- NULLS LAST - lang_select.html#nullslast
- nullvalue method - tclsqlite.html#nullvalue
- numeric literals - lang_expr.html#litvalue
- numeric-literal - syntax/numeric-literal.html
- numeric-literal syntax diagram - syntax/numeric-literal.html
- object resolution - lang_naming.html
- octet_length - lang_corefunc.html#octet_length
- octet_length SQL function - lang_corefunc.html#octet_length
- OFFSET - lang_select.html#limitoffset
- offsets - fts3.html#offsets
- omit-left-join optimization - optoverview.html#omitnoopjoin
- omit-outer-join optimization - optoverview.html#omitnoopjoin
- omitfeatures - compile.html#omitfeatures
- ON CONFLICT - lang_conflict.html
- ON CONFLICT clause - lang_conflict.html
- ON CONFLICT clauses - lang_conflict.html
- on-disk format - fileformat2.html
- onecolumn method - tclsqlite.html#onecolumn
- opcode definitions - opcode.html#codes
- opcodes - opcode.html
- OPEN_EXRESCODE - c3ref/open.html#openexrescode
- OPEN_NOFOLLOW - c3ref/open.html#opennofollow
- openclose callback - swarmvtab.html#the_openclose_callback
- OpenOffice case study - affcase1.html
- optimize - pragma.html#pragma_optimize
- optimize command - fts3.html#*fts4optcmd
- optimize pragma - pragma.html#pragma_optimize
- optimizer - optoverview.html
- OR optimization - optoverview.html#or_opt
- or optimization - optoverview.html#or_opt
- or-connected-terms - queryplanner.html#or_in_where
- ORDER BY - lang_select.html#orderby
- order by - lang_select.html#orderby
- ORDER BY clause in aggregate functions - lang_aggfunc.html#aggorderby
- orderByConsumed - vtab.html#obc
- ordering-term - syntax/ordering-term.html
- ordering-term syntax diagram - syntax/ordering-term.html
- ordinary common table expressions - lang_with.html#ordinarycte
- OS backend - vfs.html
- OSS Fuzz - testing.html#ossfuzz
- OUTER JOIN strength reduction - optoverview.html#leftjoinreduction
- OUTER JOIN strength reduction optimization - optoverview.html#leftjoinreduction
- output mode - cli.html#dotmode
- over-clause - syntax/over-clause.html
- over-clause syntax diagram - syntax/over-clause.html
- overflow page - fileformat2.html#ovflpgs
- overflow pages - fileformat2.html#ovflpgs
- page cache - c3ref/pcache_methods2.html
- page_count - pragma.html#pragma_page_count
- page_count pragma - pragma.html#pragma_page_count
- page_size - pragma.html#pragma_page_size
- page_size pragma - pragma.html#pragma_page_size
- pagecache memory allocator - malloc.html#pagecache
- parameter - lang_expr.html#varparam
- parameter binding - c3ref/bind_blob.html
- parameters - lang_expr.html#varparam
- parent key - foreignkeys.html#parentchild
- parent table - foreignkeys.html#parentchild
- parser_trace - pragma.html#pragma_parser_trace
- parser_trace pragma - pragma.html#pragma_parser_trace
- partial index - partialindex.html
- partial indexes - partialindex.html
- partial indices - partialindex.html
- partial sorting by index - queryplanner.html#partialsort
- partition - windowfunctions.html#ptxn
- patchset - sessionintro.html#changeset
- patchsets - sessionintro.html#changeset
- PENDING - lockingv3.html#pending_lock
- PENDING lock - lockingv3.html#pending_lock
- pending lock - lockingv3.html#pending_lock
- permuted index - sitemap.html
- persistent journal mode - pragma.html#pragma_journal_mode
- persistent loadable extensions - loadext.html#persist
- phrase queries - fts3.html#phrase
- pi - lang_mathfunc.html#pi
- pi SQL function - lang_mathfunc.html#pi
- pointer leak - bindptr.html#ptrleak
- pointer leaks - bindptr.html#ptrleak
- pointer passing interface - bindptr.html
- pointer passing interfaces - bindptr.html
- pointer types - bindptr.html#ptrtyp
- pointer value - bindptr.html
- porting SQLite - custombuild.html
- pow - lang_mathfunc.html#pow
- pow SQL function - lang_mathfunc.html#pow
- power-safe - transactional.html
- power-safe transactions - transactional.html
- powersafe overwrite - psow.html
- PRAGMA - pragma.html#syntax
- PRAGMA analysis_limit - pragma.html#pragma_analysis_limit
- PRAGMA application_id - pragma.html#pragma_application_id
- PRAGMA auto_vacuum - pragma.html#pragma_auto_vacuum
- PRAGMA automatic_index - pragma.html#pragma_automatic_index
- PRAGMA busy_timeout - pragma.html#pragma_busy_timeout
- PRAGMA cache_size - pragma.html#pragma_cache_size
- PRAGMA cache_spill - pragma.html#pragma_cache_spill
- PRAGMA case_sensitive_like - pragma.html#pragma_case_sensitive_like
- PRAGMA cell_size_check - pragma.html#pragma_cell_size_check
- PRAGMA checkpoint_fullfsync - pragma.html#pragma_checkpoint_fullfsync
- PRAGMA collation_list - pragma.html#pragma_collation_list
- PRAGMA compile_options - pragma.html#pragma_compile_options
- PRAGMA count_changes - pragma.html#pragma_count_changes
- PRAGMA data_store_directory - pragma.html#pragma_data_store_directory
- PRAGMA data_version - pragma.html#pragma_data_version
- PRAGMA database_list - pragma.html#pragma_database_list
- PRAGMA default_cache_size - pragma.html#pragma_default_cache_size
- PRAGMA defer_foreign_keys - pragma.html#pragma_defer_foreign_keys
- PRAGMA empty_result_callbacks - pragma.html#pragma_empty_result_callbacks
- PRAGMA encoding - pragma.html#pragma_encoding
- PRAGMA foreign_key_check - pragma.html#pragma_foreign_key_check
- PRAGMA foreign_key_list - pragma.html#pragma_foreign_key_list
- PRAGMA foreign_keys - pragma.html#pragma_foreign_keys
- PRAGMA freelist_count - pragma.html#pragma_freelist_count
- PRAGMA full_column_names - pragma.html#pragma_full_column_names
- PRAGMA fullfsync - pragma.html#pragma_fullfsync
- PRAGMA function - pragma.html#pragfunc
- PRAGMA function_list - pragma.html#pragma_function_list
- PRAGMA functions - pragma.html#pragfunc
- PRAGMA hard_heap_limit - pragma.html#pragma_hard_heap_limit
- PRAGMA ignore_check_constraints - pragma.html#pragma_ignore_check_constraints
- PRAGMA incremental_vacuum - pragma.html#pragma_incremental_vacuum
- PRAGMA index_info - pragma.html#pragma_index_info
- PRAGMA index_list - pragma.html#pragma_index_list
- PRAGMA index_xinfo - pragma.html#pragma_index_xinfo
- PRAGMA integrity_check - pragma.html#pragma_integrity_check
- PRAGMA journal_mode - pragma.html#pragma_journal_mode
- PRAGMA journal_size_limit - pragma.html#pragma_journal_size_limit
- PRAGMA legacy_alter_table - pragma.html#pragma_legacy_alter_table
- PRAGMA legacy_file_format - pragma.html#pragma_legacy_file_format
- pragma list - pragma.html#toc
- PRAGMA locking_mode - pragma.html#pragma_locking_mode
- PRAGMA max_page_count - pragma.html#pragma_max_page_count
- PRAGMA mmap_size - pragma.html#pragma_mmap_size
- PRAGMA module_list - pragma.html#pragma_module_list
- PRAGMA optimize - pragma.html#pragma_optimize
- PRAGMA page_count - pragma.html#pragma_page_count
- PRAGMA page_size - pragma.html#pragma_page_size
- PRAGMA parser_trace - pragma.html#pragma_parser_trace
- PRAGMA pragma_list - pragma.html#pragma_pragma_list
- PRAGMA query_only - pragma.html#pragma_query_only
- PRAGMA quick_check - pragma.html#pragma_quick_check
- PRAGMA read_uncommitted - pragma.html#pragma_read_uncommitted
- PRAGMA recursive_triggers - pragma.html#pragma_recursive_triggers
- PRAGMA reverse_unordered_selects - pragma.html#pragma_reverse_unordered_selects
- PRAGMA schema_version - pragma.html#pragma_schema_version
- PRAGMA secure_delete - pragma.html#pragma_secure_delete
- PRAGMA short_column_names - pragma.html#pragma_short_column_names
- PRAGMA shrink_memory - pragma.html#pragma_shrink_memory
- PRAGMA soft_heap_limit - pragma.html#pragma_soft_heap_limit
- PRAGMA stats - pragma.html#pragma_stats
- PRAGMA synchronous - pragma.html#pragma_synchronous
- PRAGMA table_info - pragma.html#pragma_table_info
- PRAGMA table_list - pragma.html#pragma_table_list
- PRAGMA table_xinfo - pragma.html#pragma_table_xinfo
- PRAGMA temp_store - pragma.html#pragma_temp_store
- PRAGMA temp_store_directory - pragma.html#pragma_temp_store_directory
- PRAGMA threads - pragma.html#pragma_threads
- PRAGMA trusted_schema - pragma.html#pragma_trusted_schema
- PRAGMA user_version - pragma.html#pragma_user_version
- PRAGMA vdbe_addoptrace - pragma.html#pragma_vdbe_addoptrace
- PRAGMA vdbe_debug - pragma.html#pragma_vdbe_debug
- PRAGMA vdbe_listing - pragma.html#pragma_vdbe_listing
- PRAGMA vdbe_trace - pragma.html#pragma_vdbe_trace
- PRAGMA wal_autocheckpoint - pragma.html#pragma_wal_autocheckpoint
- PRAGMA wal_checkpoint - pragma.html#pragma_wal_checkpoint
- PRAGMA writable_schema - pragma.html#pragma_writable_schema
- pragma-stmt - syntax/pragma-stmt.html
- pragma-stmt syntax diagram - syntax/pragma-stmt.html
- pragma-value - syntax/pragma-value.html
- pragma-value syntax diagram - syntax/pragma-value.html
- pragma_list - pragma.html#pragma_pragma_list
- pragma_list pragma - pragma.html#pragma_pragma_list
- precompiled amalgamation tarballs - amalgamation.html#amalgtarball
- prefix queries - fts3.html#termprefix
- prefix query - fts3.html#termprefix
- prepared statement - c3ref/stmt.html
- prepared statements - c3ref/stmt.html
- preupdate method - tclsqlite.html#preupdate
- PRIMARY KEY - lang_createtable.html#primkeyconst
- PRIMARY KEY constraint - lang_createtable.html#primkeyconst
- primary versus extended result codes - rescode.html#pve
- printf - lang_corefunc.html#printf
- printf SQL function - lang_corefunc.html#printf
- prior releases - chronology.html
- private branches - privatebranch.html
- professional support - prosupport.html
- profile method - tclsqlite.html#profile
- Programming Loadable Extensions - loadext.html#write
- progress method - tclsqlite.html#progress
- protected sqlite3_value - c3ref/value.html
- PSOW - psow.html
- psow query parameter - uri.html#uripsow
- public-domain - copyright.html
- push-down optimization - optoverview.html#pushdown
- Q - printf.html#percentq
- q - printf.html#percentq
- qbox - cli.html#qbox
- qbox output mode - cli.html#qbox
- QPSG - queryplanner-ng.html#qpstab
- qualified-table-name - syntax/qualified-table-name.html
- qualified-table-name syntax diagram - syntax/qualified-table-name.html
- queries against graphs - lang_with.html#rcex3
- query flattener - optoverview.html#flattening
- query parameters with special meaning to SQLite - uri.html#coreqp
- query planner - optoverview.html
- query planner checklist - queryplanner-ng.html#howtofix
- query planner stability guarantee - queryplanner-ng.html#qpstab
- query-time index - optoverview.html#autoindex
- Query-time indexes - optoverview.html#autoindex
- Query-time indexing - optoverview.html#autoindex
- query-time indexing - optoverview.html#autoindex
- query_only - pragma.html#pragma_query_only
- query_only pragma - pragma.html#pragma_query_only
- Quick Start Guide - quickstart.html
- quick_check - pragma.html#pragma_quick_check
- quick_check pragma - pragma.html#pragma_quick_check
- quickstart - quickstart.html
- Quirks - quirks.html
- quote - lang_corefunc.html#quote
- quote SQL function - lang_corefunc.html#quote
- R-Tree extension - rtree.html
- R-Trees - rtree.html
- radians - lang_mathfunc.html#radians
- radians SQL function - lang_mathfunc.html#radians
- RAISE function - lang_createtrigger.html#raise
- raise-function - syntax/raise-function.html
- raise-function syntax diagram - syntax/raise-function.html
- random - lang_corefunc.html#random
- random SQL function - lang_corefunc.html#random
- randomblob - lang_corefunc.html#randomblob
- randomblob SQL function - lang_corefunc.html#randomblob
- RANGE frames - windowfunctions.html#rangetype
- RANGE n FOLLOWING - windowfunctions.html#exprrange
- RANGE n PRECEDING - windowfunctions.html#exprrange
- range query optimization - optoverview.html#rangequery
- RBU - rbu.html
- RBU Database Contents - rbu.html#database_contents
- RBU Database Tables - rbu.html#database_tables
- RBU extension - rbu.html
- RBU FTS3/4 Tables - rbu.html#fts4_tables
- RBU Update - rbu.html#rbu_updates
- RBU Vacuum - rbu.html#rbu_vacuum
- read-only WAL databases - wal.html#readonly
- read_uncommitted - pragma.html#pragma_read_uncommitted
- read_uncommitted pragma - pragma.html#pragma_read_uncommitted
- reading and writing an rtree at the same time - rtree.html#readwrite
- rebuild command - fts3.html#*fts4rebuidcmd
- recent CVEs - cves.html#cvetab
- recommended by the US Library of Congress - locrsf.html
- recommended compile-time option - compile.html#rcmd
- recommended compile-time options - compile.html#rcmd
- recommended storage format - locrsf.html
- Recommended usage patterns for ANALYZE - lang_analyze.html#req
- record format - fileformat2.html#record_format
- recovery - walformat.html#recovery
- recovery extension - recovery.html
- recursive common table expression - lang_with.html#recursivecte
- recursive common table expressions - lang_with.html#recursivecte
- recursive query - lang_with.html#recursivecte
- recursive-cte - syntax/recursive-cte.html
- recursive-cte syntax diagram - syntax/recursive-cte.html
- recursive_triggers - pragma.html#pragma_recursive_triggers
- recursive_triggers pragma - pragma.html#pragma_recursive_triggers
- REGEXP - lang_expr.html#regexp
- REINDEX - lang_reindex.html
- reindex - lang_reindex.html
- reindex-stmt - syntax/reindex-stmt.html
- reindex-stmt syntax diagram - syntax/reindex-stmt.html
- RELEASE - lang_savepoint.html
- release history - changes.html
- release testing checklists - testing.html#cklist
- release-stmt - syntax/release-stmt.html
- release-stmt syntax diagram - syntax/release-stmt.html
- relfootprint - footprint.html
- rename column - lang_altertable.html#altertabmvcol
- rename table - lang_altertable.html#altertabrename
- REPLACE - lang_replace.html
- replace - lang_corefunc.html#replace
- replace SQL function - lang_corefunc.html#replace
- reported vulnerabilities - cves.html
- requirements - requirements.html
- reserve bytes - fileformat2.html#resbyte
- RESERVED - lockingv3.html#reserved_lock
- RESERVED lock - lockingv3.html#reserved_lock
- reserved lock - lockingv3.html#reserved_lock
- reset the WAL - fileformat2.html#walreset
- restore method - tclsqlite.html#restore
- result code - rescode.html
- result code definitions - c3ref/c_abort.html
- result codes - rescode.html
- result-column - syntax/result-column.html
- result-column syntax diagram - syntax/result-column.html
- result-set expressions - lang_select.html#resultset
- RETURNING - lang_returning.html
- returning - lang_returning.html
- RETURNING clause - lang_returning.html
- returning-clause - syntax/returning-clause.html
- returning-clause syntax diagram - syntax/returning-clause.html
- reverse_unordered_selects - pragma.html#pragma_reverse_unordered_selects
- reverse_unordered_selects pragma - pragma.html#pragma_reverse_unordered_selects
- RIGHT and FULL OUTER JOIN - lang_select.html#rjoin
- RIGHT JOIN - lang_select.html#rjoin
- Robson proof - malloc.html#nofrag
- ROLLBACK - lang_transaction.html
- rollback journal - lockingv3.html#rollback
- rollback journal format - fileformat2.html#rollbackjournal
- rollback-stmt - syntax/rollback-stmt.html
- rollback-stmt syntax diagram - syntax/rollback-stmt.html
- rollback_hook method - tclsqlite.html#rollback_hook
- round - lang_corefunc.html#round
- round SQL function - lang_corefunc.html#round
- row value - rowvalue.html
- row value IN operator - rowvalue.html#rvinop
- row values - rowvalue.html
- ROWID - lang_createtable.html#rowid
- rowid - lang_createtable.html#rowid
- rowid table - rowidtable.html
- rowid tables - rowidtable.html
- rowvalue - rowvalue.html
- RTREE - rtree.html
- rtree - rtree.html
- rtree shadow tables - rtree.html#xshadow
- rtreecheck - rtree.html#rtreecheck
- RTRIM - datatype3.html#collation
- rtrim - lang_corefunc.html#rtrim
- RTRIM collating function - datatype3.html#collation
- rtrim SQL function - lang_corefunc.html#rtrim
- rules for determining column affinity - datatype3.html#affname
- rules for determining column affinity in VIEWs - datatype3.html#affview
- Run-Time Loadable Extensions - loadext.html
- running ANALYZE via PRAGMA optimize - lang_analyze.html#pragopt
- safe command-line option - cli.html#safemode
- SAVEPOINT - lang_savepoint.html
- savepoint - lang_savepoint.html
- SAVEPOINT bug - howtocorrupt.html#svptbug
- savepoint-stmt - syntax/savepoint-stmt.html
- savepoint-stmt syntax diagram - syntax/savepoint-stmt.html
- Scalar Functions - lang_corefunc.html
- scalar functions - lang_corefunc.html
- scan status flags - c3ref/c_scanstat_complex.html
- scanstatus options - c3ref/c_scanstat_est.html
- schema format - fileformat2.html#schemaformat
- schema format number - fileformat2.html#schemaformat
- schema storage - fileformat2.html#ffschema
- schema_version - pragma.html#pragma_schema_version
- schema_version pragma - pragma.html#pragma_schema_version
- search application tips - fts3.html#appendix_a
- second edition file format document - fileformat2.html
- secure_delete - pragma.html#pragma_secure_delete
- secure_delete pragma - pragma.html#pragma_secure_delete
- security - security.html
- segment btree - fts3.html#data_structures
- SELECT - lang_select.html
- select - lang_select.html
- SELECT query - lang_select.html
- SELECT statement - lang_select.html
- select-core - syntax/select-core.html
- select-core syntax diagram - syntax/select-core.html
- select-stmt - syntax/select-stmt.html
- select-stmt syntax diagram - syntax/select-stmt.html
- self-contained - selfcontained.html
- separating a database from its journal - howtocorrupt.html#roguejrnl
- serial type - fileformat2.html#serialtype
- serial types - fileformat2.html#serialtype
- serialize method - tclsqlite.html#serialize
- series - series.html
- server-side database - whentouse.html#serversidedb
- serverless - serverless.html
- session - sessionintro.html
- session extension - sessionintro.html
- Session Extension C-language Interface - session/intro.html
- Session Module C-API function list - session/funclist.html
- session-capi - session/intro.html
- session_funclist - session/funclist.html
- shadow table - vtab.html#xshadowname
- shadow tables - vtab.html#xshadowname
- shadowtabs - fts3.html#shadow_tables
- SHARED - lockingv3.html#shared_lock
- shared cache - sharedcache.html
- shared cache mode - sharedcache.html
- SHARED lock - lockingv3.html#shared_lock
- shared lock - lockingv3.html#shared_lock
- shims - vfs.html#shim
- shm file - walformat.html#shm
- short filenames - shortnames.html
- short_column_names - pragma.html#pragma_short_column_names
- short_column_names pragma - pragma.html#pragma_short_column_names
- shrink_memory - pragma.html#pragma_shrink_memory
- shrink_memory pragma - pragma.html#pragma_shrink_memory
- sign - lang_corefunc.html#sign
- sign SQL function - lang_corefunc.html#sign
- signed-number - syntax/signed-number.html
- signed-number syntax diagram - syntax/signed-number.html
- simple fts queries - fts3.html#simple_fts_queries
- simple SELECT - lang_select.html#simpleselect
- simple-function-invocation - syntax/simple-function-invocation.html
- simple-function-invocation syntax diagram - syntax/simple-function-invocation.html
- simple-select-stmt - syntax/simple-select-stmt.html
- simple-select-stmt syntax diagram - syntax/simple-select-stmt.html
- sin - lang_mathfunc.html#sin
- sin SQL function - lang_mathfunc.html#sin
- single-argument carray - carray.html#onearg
- sinh - lang_mathfunc.html#sinh
- sinh SQL function - lang_mathfunc.html#sinh
- skip-scan - optoverview.html#skipscan
- skip-scan optimization - optoverview.html#skipscan
- SLT - testing.html#slt
- snapshot - c3ref/snapshot.html
- snippet - fts3.html#snippet
- soft_heap_limit - pragma.html#pragma_soft_heap_limit
- soft_heap_limit pragma - pragma.html#pragma_soft_heap_limit
- solve Sudoku puzzles - lang_with.html#sudoku
- sort order - datatype3.html#sortorder
- sorting - queryplanner.html#sorting
- sorting subsets of the result - optoverview.html#partsort
- soundex - lang_corefunc.html#soundex
- soundex SQL function - lang_corefunc.html#soundex
- spellfix1 - spellfix1.html
- split amalgamation - amalgamation.html#amal32k
- SQL Archive - sqlar.html
- SQL fuzzing - testing.html#fuzztesting
- SQL keyword - lang_keywords.html
- SQL keywords - lang_keywords.html
- SQL Logic Tests - testing.html#slt
- SQL parameter - c3ref/bind_blob.html
- SQL parameters - c3ref/bind_blob.html
- sql parameters - swarmvtab.html#sql_parameters
- SQL statement compiler - c3ref/prepare.html
- sql-stmt - syntax/sql-stmt.html
- sql-stmt syntax diagram - syntax/sql-stmt.html
- sql-stmt-list - syntax/sql-stmt-list.html
- sql-stmt-list syntax diagram - syntax/sql-stmt-list.html
- SQLAR - sqlar.html
- sqldiff - sqldiff.html
- sqldiff --rbu - rbu.html#sqldiff
- sqldiff.exe - sqldiff.html
- SQLite amalgamation source file - amalgamation.html
- SQLite Archive - sqlar.html
- SQLite Archive files - sqlar.html
- SQLite Archive format - sqlar.html
- SQLite Archive smaller than ZIP - affcase1.html#smaller
- SQLite Consortium - consortium.html
- SQLite database file format - fileformat2.html
- SQLite extension - loadext.html
- SQLite extensions - loadext.html
- SQLite Keywords - lang_keywords.html
- SQLite query planner - optoverview.html
- SQLite Shared-Cache Mode - sharedcache.html
- SQLite source code repositories - download.html#srctree
- sqlite3 - c3ref/sqlite3.html
- sqlite3.exe - cli.html
- sqlite3.exe command-line shell - cli.html
- sqlite3_aggregate_context - c3ref/aggregate_context.html
- sqlite3_aggregate_count - c3ref/aggregate_count.html
- sqlite3_analyzer - sqlanalyze.html
- sqlite3_analyzer.exe - sqlanalyze.html
- sqlite3_api_routines - c3ref/api_routines.html
- sqlite3_auto_extension - c3ref/auto_extension.html
- sqlite3_autovacuum_pages - c3ref/autovacuum_pages.html
- sqlite3_backup - c3ref/backup.html
- sqlite3_backup_finish - c3ref/backup_finish.html#sqlite3backupfinish
- sqlite3_backup_init - c3ref/backup_finish.html#sqlite3backupinit
- sqlite3_backup_pagecount - c3ref/backup_finish.html#sqlite3backuppagecount
- sqlite3_backup_remaining - c3ref/backup_finish.html#sqlite3backupremaining
- sqlite3_backup_step - c3ref/backup_finish.html#sqlite3backupstep
- sqlite3_bind_blob - c3ref/bind_blob.html
- sqlite3_bind_blob64 - c3ref/bind_blob.html
- sqlite3_bind_double - c3ref/bind_blob.html
- sqlite3_bind_int - c3ref/bind_blob.html
- sqlite3_bind_int64 - c3ref/bind_blob.html
- sqlite3_bind_null - c3ref/bind_blob.html
- sqlite3_bind_parameter_count - c3ref/bind_parameter_count.html
- sqlite3_bind_parameter_index - c3ref/bind_parameter_index.html
- sqlite3_bind_parameter_name - c3ref/bind_parameter_name.html
- sqlite3_bind_pointer - c3ref/bind_blob.html
- sqlite3_bind_text - c3ref/bind_blob.html
- sqlite3_bind_text16 - c3ref/bind_blob.html
- sqlite3_bind_text64 - c3ref/bind_blob.html
- sqlite3_bind_value - c3ref/bind_blob.html
- sqlite3_bind_zeroblob - c3ref/bind_blob.html
- sqlite3_bind_zeroblob64 - c3ref/bind_blob.html
- sqlite3_blob - c3ref/blob.html
- sqlite3_blob_bytes - c3ref/blob_bytes.html
- sqlite3_blob_close - c3ref/blob_close.html
- sqlite3_blob_open - c3ref/blob_open.html
- sqlite3_blob_read - c3ref/blob_read.html
- sqlite3_blob_reopen - c3ref/blob_reopen.html
- sqlite3_blob_write - c3ref/blob_write.html
- sqlite3_busy_handler - c3ref/busy_handler.html
- sqlite3_busy_timeout - c3ref/busy_timeout.html
- sqlite3_cancel_auto_extension - c3ref/cancel_auto_extension.html
- sqlite3_carray_bind - carray.html#onearg
- sqlite3_changegroup - session/changegroup.html
- sqlite3_changes - c3ref/changes.html
- sqlite3_changes64 - c3ref/changes.html
- sqlite3_changeset_iter - session/changeset_iter.html
- sqlite3_clear_bindings - c3ref/clear_bindings.html
- sqlite3_close - c3ref/close.html
- sqlite3_close_v2 - c3ref/close.html
- sqlite3_collation_needed - c3ref/collation_needed.html
- sqlite3_collation_needed16 - c3ref/collation_needed.html
- sqlite3_column_blob - c3ref/column_blob.html
- sqlite3_column_bytes - c3ref/column_blob.html
- sqlite3_column_bytes16 - c3ref/column_blob.html
- sqlite3_column_count - c3ref/column_count.html
- sqlite3_column_database_name - c3ref/column_database_name.html
- sqlite3_column_database_name16 - c3ref/column_database_name.html
- sqlite3_column_decltype - c3ref/column_decltype.html
- sqlite3_column_decltype16 - c3ref/column_decltype.html
- sqlite3_column_double - c3ref/column_blob.html
- sqlite3_column_int - c3ref/column_blob.html
- sqlite3_column_int64 - c3ref/column_blob.html
- sqlite3_column_name - c3ref/column_name.html
- sqlite3_column_name16 - c3ref/column_name.html
- sqlite3_column_origin_name - c3ref/column_database_name.html
- sqlite3_column_origin_name16 - c3ref/column_database_name.html
- sqlite3_column_table_name - c3ref/column_database_name.html
- sqlite3_column_table_name16 - c3ref/column_database_name.html
- sqlite3_column_text - c3ref/column_blob.html
- sqlite3_column_text16 - c3ref/column_blob.html
- sqlite3_column_type - c3ref/column_blob.html
- sqlite3_column_value - c3ref/column_blob.html
- sqlite3_commit_hook - c3ref/commit_hook.html
- sqlite3_compileoption_get - c3ref/compileoption_get.html
- sqlite3_compileoption_used - c3ref/compileoption_get.html
- sqlite3_complete - c3ref/complete.html
- sqlite3_complete16 - c3ref/complete.html
- sqlite3_config - c3ref/config.html
- sqlite3_context - c3ref/context.html
- sqlite3_context_db_handle - c3ref/context_db_handle.html
- sqlite3_create_collation - c3ref/create_collation.html
- sqlite3_create_collation16 - c3ref/create_collation.html
- sqlite3_create_collation_v2 - c3ref/create_collation.html
- sqlite3_create_filename - c3ref/create_filename.html
- sqlite3_create_function - c3ref/create_function.html
- sqlite3_create_function16 - c3ref/create_function.html
- sqlite3_create_function_v2 - c3ref/create_function.html
- sqlite3_create_module - c3ref/create_module.html
- sqlite3_create_module_v2 - c3ref/create_module.html
- sqlite3_create_window_function - c3ref/create_function.html
- sqlite3_data_count - c3ref/data_count.html
- sqlite3_data_directory - c3ref/data_directory.html
- sqlite3_database_file_object - c3ref/database_file_object.html
- sqlite3_db_cacheflush - c3ref/db_cacheflush.html
- sqlite3_db_config - c3ref/db_config.html
- sqlite3_db_filename - c3ref/db_filename.html
- sqlite3_db_handle - c3ref/db_handle.html
- sqlite3_db_mutex - c3ref/db_mutex.html
- sqlite3_db_name - c3ref/db_name.html
- sqlite3_db_readonly - c3ref/db_readonly.html
- sqlite3_db_release_memory - c3ref/db_release_memory.html
- sqlite3_db_status - c3ref/db_status.html
- sqlite3_declare_vtab - c3ref/declare_vtab.html
- sqlite3_deserialize - c3ref/deserialize.html
- sqlite3_drop_modules - c3ref/drop_modules.html
- sqlite3_enable_load_extension - c3ref/enable_load_extension.html
- sqlite3_enable_shared_cache - c3ref/enable_shared_cache.html
- sqlite3_errcode - c3ref/errcode.html
- sqlite3_errmsg - c3ref/errcode.html
- sqlite3_errmsg16 - c3ref/errcode.html
- sqlite3_error_offset - c3ref/errcode.html
- sqlite3_errstr - c3ref/errcode.html
- sqlite3_exec - c3ref/exec.html
- sqlite3_expanded_sql - c3ref/expanded_sql.html
- sqlite3_expired - c3ref/aggregate_count.html
- sqlite3_extended_errcode - c3ref/errcode.html
- sqlite3_extended_result_codes - c3ref/extended_result_codes.html
- sqlite3_file - c3ref/file.html
- sqlite3_file_control - c3ref/file_control.html
- sqlite3_filename - c3ref/filename.html
- sqlite3_filename_database - c3ref/filename_database.html
- sqlite3_filename_journal - c3ref/filename_database.html
- sqlite3_filename_wal - c3ref/filename_database.html
- sqlite3_finalize - c3ref/finalize.html
- sqlite3_free - c3ref/free.html
- sqlite3_free_filename - c3ref/create_filename.html
- sqlite3_free_table - c3ref/free_table.html
- sqlite3_get_autocommit - c3ref/get_autocommit.html
- sqlite3_get_auxdata - c3ref/get_auxdata.html
- sqlite3_get_clientdata - c3ref/get_clientdata.html
- sqlite3_get_table - c3ref/free_table.html
- sqlite3_global_recover - c3ref/aggregate_count.html
- sqlite3_hard_heap_limit64 - c3ref/hard_heap_limit64.html
- sqlite3_index_info - c3ref/index_info.html
- sqlite3_initialize - c3ref/initialize.html
- sqlite3_int64 - c3ref/int64.html
- sqlite3_interrupt - c3ref/interrupt.html
- sqlite3_io_methods - c3ref/io_methods.html
- sqlite3_is_interrupted - c3ref/interrupt.html
- sqlite3_keyword_check - c3ref/keyword_check.html
- sqlite3_keyword_count - c3ref/keyword_check.html
- sqlite3_keyword_name - c3ref/keyword_check.html
- sqlite3_last_insert_rowid - c3ref/last_insert_rowid.html
- sqlite3_libversion - c3ref/libversion.html
- sqlite3_libversion_number - c3ref/libversion.html
- sqlite3_limit - c3ref/limit.html
- sqlite3_load_extension - c3ref/load_extension.html
- sqlite3_log - c3ref/log.html
- sqlite3_malloc - c3ref/free.html
- sqlite3_malloc64 - c3ref/free.html
- sqlite3_mem_methods - c3ref/mem_methods.html
- sqlite3_memory_alarm - c3ref/aggregate_count.html
- sqlite3_memory_highwater - c3ref/memory_highwater.html
- sqlite3_memory_used - c3ref/memory_highwater.html
- sqlite3_module - c3ref/module.html
- sqlite3_module.xBegin - vtab.html#xBegin
- sqlite3_module.xBestIndex - vtab.html#xbestindex
- sqlite3_module.xClose - vtab.html#xclose
- sqlite3_module.xColumn - vtab.html#xcolumn
- sqlite3_module.xCommit - vtab.html#xcommit
- sqlite3_module.xConnect - vtab.html#xconnect
- sqlite3_module.xCreate - vtab.html#xcreate
- sqlite3_module.xDisconnect - vtab.html#xdisconnect
- sqlite3_module.xEof - vtab.html#xeof
- sqlite3_module.xFilter - vtab.html#xfilter
- sqlite3_module.xFindFunction - vtab.html#xfindfunction
- sqlite3_module.xIntegrity - vtab.html#xintegrity
- sqlite3_module.xNext - vtab.html#xnext
- sqlite3_module.xOpen - vtab.html#xopen
- sqlite3_module.xRename - vtab.html#xrename
- sqlite3_module.xRollback - vtab.html#xrollback
- sqlite3_module.xRowid - vtab.html#xrowid
- sqlite3_module.xSavepoint - vtab.html#xsavepoint
- sqlite3_module.xShadowName - vtab.html#xshadowname
- sqlite3_module.xSync - vtab.html#xsync
- sqlite3_module.xUpdate - vtab.html#xupdate
- sqlite3_mprintf - c3ref/mprintf.html
- sqlite3_msize - c3ref/free.html
- sqlite3_mutex - c3ref/mutex.html
- sqlite3_mutex_alloc - c3ref/mutex_alloc.html
- sqlite3_mutex_enter - c3ref/mutex_alloc.html
- sqlite3_mutex_free - c3ref/mutex_alloc.html
- sqlite3_mutex_held - c3ref/mutex_held.html
- sqlite3_mutex_leave - c3ref/mutex_alloc.html
- sqlite3_mutex_methods - c3ref/mutex_methods.html
- sqlite3_mutex_notheld - c3ref/mutex_held.html
- sqlite3_mutex_try - c3ref/mutex_alloc.html
- sqlite3_next_stmt - c3ref/next_stmt.html
- sqlite3_normalized_sql - c3ref/expanded_sql.html
- sqlite3_open - c3ref/open.html
- sqlite3_open16 - c3ref/open.html
- sqlite3_open_v2 - c3ref/open.html
- sqlite3_os_end - c3ref/initialize.html
- sqlite3_os_init - c3ref/initialize.html
- sqlite3_overload_function - c3ref/overload_function.html
- sqlite3_pcache - c3ref/pcache.html
- sqlite3_pcache_methods2 - c3ref/pcache_methods2.html
- sqlite3_pcache_page - c3ref/pcache_page.html
- sqlite3_prepare - c3ref/prepare.html
- sqlite3_prepare16 - c3ref/prepare.html
- sqlite3_prepare16_v2 - c3ref/prepare.html
- sqlite3_prepare16_v3 - c3ref/prepare.html
- sqlite3_prepare_v2 - c3ref/prepare.html
- sqlite3_prepare_v3 - c3ref/prepare.html
- sqlite3_preupdate_blobwrite - c3ref/preupdate_blobwrite.html
- sqlite3_preupdate_count - c3ref/preupdate_blobwrite.html
- sqlite3_preupdate_depth - c3ref/preupdate_blobwrite.html
- sqlite3_preupdate_hook - c3ref/preupdate_blobwrite.html
- sqlite3_preupdate_new - c3ref/preupdate_blobwrite.html
- sqlite3_preupdate_old - c3ref/preupdate_blobwrite.html
- sqlite3_profile - c3ref/profile.html
- sqlite3_progress_handler - c3ref/progress_handler.html
- sqlite3_randomness - c3ref/randomness.html
- sqlite3_realloc - c3ref/free.html
- sqlite3_realloc64 - c3ref/free.html
- sqlite3_rebaser - session/rebaser.html
- sqlite3_release_memory - c3ref/release_memory.html
- sqlite3_reset - c3ref/reset.html
- sqlite3_reset_auto_extension - c3ref/reset_auto_extension.html
- sqlite3_result_blob - c3ref/result_blob.html
- sqlite3_result_blob64 - c3ref/result_blob.html
- sqlite3_result_double - c3ref/result_blob.html
- sqlite3_result_error - c3ref/result_blob.html
- sqlite3_result_error16 - c3ref/result_blob.html
- sqlite3_result_error_code - c3ref/result_blob.html
- sqlite3_result_error_nomem - c3ref/result_blob.html
- sqlite3_result_error_toobig - c3ref/result_blob.html
- sqlite3_result_int - c3ref/result_blob.html
- sqlite3_result_int64 - c3ref/result_blob.html
- sqlite3_result_null - c3ref/result_blob.html
- sqlite3_result_pointer - c3ref/result_blob.html
- sqlite3_result_subtype - c3ref/result_subtype.html
- sqlite3_result_text - c3ref/result_blob.html
- sqlite3_result_text16 - c3ref/result_blob.html
- sqlite3_result_text16be - c3ref/result_blob.html
- sqlite3_result_text16le - c3ref/result_blob.html
- sqlite3_result_text64 - c3ref/result_blob.html
- sqlite3_result_value - c3ref/result_blob.html
- sqlite3_result_zeroblob - c3ref/result_blob.html
- sqlite3_result_zeroblob64 - c3ref/result_blob.html
- sqlite3_rollback_hook - c3ref/commit_hook.html
- sqlite3_rtree_query_callback - rtree.html#xquery
- sqlite3_serialize - c3ref/serialize.html
- sqlite3_session - session/session.html
- sqlite3_set_authorizer - c3ref/set_authorizer.html
- sqlite3_set_auxdata - c3ref/get_auxdata.html
- sqlite3_set_clientdata - c3ref/get_clientdata.html
- sqlite3_set_last_insert_rowid - c3ref/set_last_insert_rowid.html
- sqlite3_shutdown - c3ref/initialize.html
- sqlite3_sleep - c3ref/sleep.html
- sqlite3_snapshot - c3ref/snapshot.html
- sqlite3_snapshot_cmp - c3ref/snapshot_cmp.html
- sqlite3_snapshot_free - c3ref/snapshot_free.html
- sqlite3_snapshot_get - c3ref/snapshot_get.html
- sqlite3_snapshot_open - c3ref/snapshot_open.html
- sqlite3_snapshot_recover - c3ref/snapshot_recover.html
- sqlite3_snprintf - c3ref/mprintf.html
- sqlite3_soft_heap_limit - c3ref/soft_heap_limit.html
- sqlite3_soft_heap_limit64 - c3ref/hard_heap_limit64.html
- sqlite3_sourceid - c3ref/libversion.html
- sqlite3_sql - c3ref/expanded_sql.html
- sqlite3_status - c3ref/status.html
- sqlite3_status64 - c3ref/status.html
- sqlite3_step - c3ref/step.html
- sqlite3_stmt - c3ref/stmt.html
- sqlite3_stmt_busy - c3ref/stmt_busy.html
- sqlite3_stmt_explain - c3ref/stmt_explain.html
- sqlite3_stmt_isexplain - c3ref/stmt_isexplain.html
- sqlite3_stmt_readonly - c3ref/stmt_readonly.html
- sqlite3_stmt_scanstatus - c3ref/stmt_scanstatus.html
- sqlite3_stmt_scanstatus_reset - c3ref/stmt_scanstatus_reset.html
- sqlite3_stmt_scanstatus_v2 - c3ref/stmt_scanstatus.html
- sqlite3_stmt_status - c3ref/stmt_status.html
- sqlite3_str - c3ref/str.html
- sqlite3_str_append - c3ref/str_append.html
- sqlite3_str_appendall - c3ref/str_append.html
- sqlite3_str_appendchar - c3ref/str_append.html
- sqlite3_str_appendf - c3ref/str_append.html
- sqlite3_str_errcode - c3ref/str_errcode.html
- sqlite3_str_finish - c3ref/str_finish.html
- sqlite3_str_length - c3ref/str_errcode.html
- sqlite3_str_new - c3ref/str_new.html
- sqlite3_str_reset - c3ref/str_append.html
- sqlite3_str_value - c3ref/str_errcode.html
- sqlite3_str_vappendf - c3ref/str_append.html
- sqlite3_strglob - c3ref/strglob.html
- sqlite3_stricmp - c3ref/stricmp.html
- sqlite3_strlike - c3ref/strlike.html
- sqlite3_strnicmp - c3ref/stricmp.html
- sqlite3_system_errno - c3ref/system_errno.html
- sqlite3_table_column_metadata - c3ref/table_column_metadata.html
- sqlite3_temp_directory - c3ref/temp_directory.html
- sqlite3_test_control - c3ref/test_control.html
- sqlite3_thread_cleanup - c3ref/aggregate_count.html
- sqlite3_threadsafe - c3ref/threadsafe.html
- sqlite3_total_changes - c3ref/total_changes.html
- sqlite3_total_changes64 - c3ref/total_changes.html
- sqlite3_trace - c3ref/profile.html
- sqlite3_trace_v2 - c3ref/trace_v2.html
- sqlite3_transfer_bindings - c3ref/aggregate_count.html
- sqlite3_txn_state - c3ref/txn_state.html
- sqlite3_uint64 - c3ref/int64.html
- sqlite3_unlock_notify - c3ref/unlock_notify.html
- sqlite3_update_hook - c3ref/update_hook.html
- sqlite3_uri_boolean - c3ref/uri_boolean.html
- sqlite3_uri_int64 - c3ref/uri_boolean.html
- sqlite3_uri_key - c3ref/uri_boolean.html
- sqlite3_uri_parameter - c3ref/uri_boolean.html
- sqlite3_user_data - c3ref/user_data.html
- sqlite3_value - c3ref/value.html
- sqlite3_value_blob - c3ref/value_blob.html
- sqlite3_value_bytes - c3ref/value_blob.html
- sqlite3_value_bytes16 - c3ref/value_blob.html
- sqlite3_value_double - c3ref/value_blob.html
- sqlite3_value_dup - c3ref/value_dup.html
- sqlite3_value_encoding - c3ref/value_encoding.html
- sqlite3_value_free - c3ref/value_dup.html
- sqlite3_value_frombind - c3ref/value_blob.html
- sqlite3_value_int - c3ref/value_blob.html
- sqlite3_value_int64 - c3ref/value_blob.html
- sqlite3_value_nochange - c3ref/value_blob.html
- sqlite3_value_numeric_type - c3ref/value_blob.html
- sqlite3_value_pointer - c3ref/value_blob.html
- sqlite3_value_subtype - c3ref/value_subtype.html
- sqlite3_value_text - c3ref/value_blob.html
- sqlite3_value_text16 - c3ref/value_blob.html
- sqlite3_value_text16be - c3ref/value_blob.html
- sqlite3_value_text16le - c3ref/value_blob.html
- sqlite3_value_type - c3ref/value_blob.html
- sqlite3_version - c3ref/libversion.html
- sqlite3_vfs - c3ref/vfs.html
- sqlite3_vfs.xAccess - c3ref/vfs.html#sqlite3vfsxaccess
- sqlite3_vfs.xOpen - c3ref/vfs.html#sqlite3vfsxopen
- sqlite3_vfs_find - c3ref/vfs_find.html
- sqlite3_vfs_register - c3ref/vfs_find.html
- sqlite3_vfs_unregister - c3ref/vfs_find.html
- sqlite3_vmprintf - c3ref/mprintf.html
- sqlite3_vsnprintf - c3ref/mprintf.html
- sqlite3_vtab - c3ref/vtab.html
- sqlite3_vtab_collation - c3ref/vtab_collation.html
- sqlite3_vtab_config - c3ref/vtab_config.html
- sqlite3_vtab_cursor - c3ref/vtab_cursor.html
- sqlite3_vtab_distinct - c3ref/vtab_distinct.html
- sqlite3_vtab_in - c3ref/vtab_in.html
- sqlite3_vtab_in_first - c3ref/vtab_in_first.html
- sqlite3_vtab_in_next - c3ref/vtab_in_first.html
- sqlite3_vtab_nochange - c3ref/vtab_nochange.html
- sqlite3_vtab_on_conflict - c3ref/vtab_on_conflict.html
- sqlite3_vtab_rhs_value - c3ref/vtab_rhs_value.html
- sqlite3_wal_autocheckpoint - c3ref/wal_autocheckpoint.html
- sqlite3_wal_checkpoint - c3ref/wal_checkpoint.html
- sqlite3_wal_checkpoint_v2 - c3ref/wal_checkpoint_v2.html
- sqlite3_wal_hook - c3ref/wal_hook.html
- sqlite3_win32_set_directory - c3ref/win32_set_directory.html
- sqlite3_win32_set_directory8 - c3ref/win32_set_directory.html
- sqlite3_win32_set_directory16 - c3ref/win32_set_directory.html
- sqlite3changegroup_add - session/sqlite3changegroup_add.html
- sqlite3changegroup_add_change - session/sqlite3changegroup_add_change.html
- sqlite3changegroup_add_strm - session/sqlite3changegroup_add_strm.html
- sqlite3changegroup_delete - session/sqlite3changegroup_delete.html
- sqlite3changegroup_new - session/sqlite3changegroup_new.html
- sqlite3changegroup_output - session/sqlite3changegroup_output.html
- sqlite3changegroup_output_strm - session/sqlite3changegroup_add_strm.html
- sqlite3changegroup_schema - session/sqlite3changegroup_schema.html
- sqlite3changeset_apply - session/sqlite3changeset_apply.html
- sqlite3changeset_apply_strm - session/sqlite3changegroup_add_strm.html
- sqlite3changeset_apply_v2 - session/sqlite3changeset_apply.html
- sqlite3changeset_apply_v2_strm - session/sqlite3changegroup_add_strm.html
- sqlite3changeset_concat - session/sqlite3changeset_concat.html
- sqlite3changeset_concat_strm - session/sqlite3changegroup_add_strm.html
- sqlite3changeset_conflict - session/sqlite3changeset_conflict.html
- sqlite3changeset_finalize - session/sqlite3changeset_finalize.html
- sqlite3changeset_fk_conflicts - session/sqlite3changeset_fk_conflicts.html
- sqlite3changeset_invert - session/sqlite3changeset_invert.html
- sqlite3changeset_invert_strm - session/sqlite3changegroup_add_strm.html
- sqlite3changeset_new - session/sqlite3changeset_new.html
- sqlite3changeset_next - session/sqlite3changeset_next.html
- sqlite3changeset_old - session/sqlite3changeset_old.html
- sqlite3changeset_op - session/sqlite3changeset_op.html
- sqlite3changeset_pk - session/sqlite3changeset_pk.html
- sqlite3changeset_start - session/sqlite3changeset_start.html
- sqlite3changeset_start_strm - session/sqlite3changegroup_add_strm.html
- sqlite3changeset_start_v2 - session/sqlite3changeset_start.html
- sqlite3changeset_start_v2_strm - session/sqlite3changegroup_add_strm.html
- sqlite3changeset_upgrade - session/sqlite3changeset_upgrade.html
- sqlite3rebaser_configure - session/sqlite3rebaser_configure.html
- sqlite3rebaser_create - session/sqlite3rebaser_create.html
- sqlite3rebaser_delete - session/sqlite3rebaser_delete.html
- sqlite3rebaser_rebase - session/sqlite3rebaser_rebase.html
- sqlite3rebaser_rebase_strm - session/sqlite3changegroup_add_strm.html
- sqlite3session_attach - session/sqlite3session_attach.html
- sqlite3session_changeset - session/sqlite3session_changeset.html
- sqlite3session_changeset_size - session/sqlite3session_changeset_size.html
- sqlite3session_changeset_strm - session/sqlite3changegroup_add_strm.html
- sqlite3session_config - session/sqlite3session_config.html
- sqlite3session_create - session/sqlite3session_create.html
- sqlite3session_delete - session/sqlite3session_delete.html
- sqlite3session_diff - session/sqlite3session_diff.html
- sqlite3session_enable - session/sqlite3session_enable.html
- sqlite3session_indirect - session/sqlite3session_indirect.html
- sqlite3session_isempty - session/sqlite3session_isempty.html
- sqlite3session_memory_used - session/sqlite3session_memory_used.html
- sqlite3session_object_config - session/sqlite3session_object_config.html
- sqlite3session_patchset - session/sqlite3session_patchset.html
- sqlite3session_patchset_strm - session/sqlite3changegroup_add_strm.html
- sqlite3session_table_filter - session/sqlite3session_table_filter.html
- SQLITE_4_BYTE_ALIGNED_MALLOC - compile.html#4_byte_aligned_malloc
- SQLITE_ABORT - rescode.html#abort
- SQLITE_ABORT_ROLLBACK - rescode.html#abort_rollback
- SQLITE_ACCESS_EXISTS - c3ref/c_access_exists.html
- SQLITE_ACCESS_READ - c3ref/c_access_exists.html
- SQLITE_ACCESS_READWRITE - c3ref/c_access_exists.html
- SQLITE_ALLOW_COVERING_INDEX_SCAN - compile.html#allow_covering_index_scan
- SQLITE_ALLOW_URI_AUTHORITY - compile.html#allow_uri_authority
- SQLITE_ALTER_TABLE - c3ref/c_alter_table.html
- SQLITE_ANALYZE - c3ref/c_alter_table.html
- SQLITE_ANY - c3ref/c_any.html
- SQLITE_API - compile.html#api
- SQLITE_APICALL - compile.html#apicall
- SQLITE_ATTACH - c3ref/c_alter_table.html
- SQLITE_AUTH - rescode.html#auth
- SQLITE_AUTH_USER - rescode.html#auth_user
- SQLITE_BLOB - c3ref/c_blob.html
- SQLITE_BUSY - rescode.html#busy
- SQLITE_BUSY_RECOVERY - rescode.html#busy_recovery
- SQLITE_BUSY_SNAPSHOT - rescode.html#busy_snapshot
- SQLITE_BUSY_TIMEOUT - rescode.html#busy_timeout
- SQLITE_BYTEORDER - compile.html#byteorder
- SQLITE_CALLBACK - compile.html#callback
- SQLITE_CANTOPEN - rescode.html#cantopen
- SQLITE_CANTOPEN_CONVPATH - rescode.html#cantopen_convpath
- SQLITE_CANTOPEN_DIRTYWAL - rescode.html#cantopen_dirtywal
- SQLITE_CANTOPEN_FULLPATH - rescode.html#cantopen_fullpath
- SQLITE_CANTOPEN_ISDIR - rescode.html#cantopen_isdir
- SQLITE_CANTOPEN_NOTEMPDIR - rescode.html#cantopen_notempdir
- SQLITE_CANTOPEN_SYMLINK - rescode.html#cantopen_symlink
- SQLITE_CASE_SENSITIVE_LIKE - compile.html#case_sensitive_like
- SQLITE_CDECL - compile.html#cdecl
- SQLITE_CHANGESET_ABORT - session/c_changeset_abort.html
- SQLITE_CHANGESET_CONFLICT - session/c_changeset_conflict.html
- SQLITE_CHANGESET_CONSTRAINT - session/c_changeset_conflict.html
- SQLITE_CHANGESET_DATA - session/c_changeset_conflict.html
- SQLITE_CHANGESET_FOREIGN_KEY - session/c_changeset_conflict.html
- SQLITE_CHANGESET_NOTFOUND - session/c_changeset_conflict.html
- SQLITE_CHANGESET_OMIT - session/c_changeset_abort.html
- SQLITE_CHANGESET_REPLACE - session/c_changeset_abort.html
- SQLITE_CHANGESETAPPLY_FKNOACTION - session/c_changesetapply_fknoaction.html
- SQLITE_CHANGESETAPPLY_IGNORENOOP - session/c_changesetapply_fknoaction.html
- SQLITE_CHANGESETAPPLY_INVERT - session/c_changesetapply_fknoaction.html
- SQLITE_CHANGESETAPPLY_NOSAVEPOINT - session/c_changesetapply_fknoaction.html
- SQLITE_CHANGESETSTART_INVERT - session/c_changesetstart_invert.html
- SQLITE_CHECKPOINT_FULL - c3ref/c_checkpoint_full.html
- SQLITE_CHECKPOINT_PASSIVE - c3ref/c_checkpoint_full.html
- SQLITE_CHECKPOINT_RESTART - c3ref/c_checkpoint_full.html
- SQLITE_CHECKPOINT_TRUNCATE - c3ref/c_checkpoint_full.html
- sqlite_compileoption_get - lang_corefunc.html#sqlite_compileoption_get
- sqlite_compileoption_get SQL function - lang_corefunc.html#sqlite_compileoption_get
- sqlite_compileoption_used - lang_corefunc.html#sqlite_compileoption_used
- sqlite_compileoption_used SQL function - lang_corefunc.html#sqlite_compileoption_used
- SQLITE_CONFIG_COVERING_INDEX_SCAN - c3ref/c_config_covering_index_scan.html#sqliteconfigcoveringindexscan
- SQLITE_CONFIG_GETMALLOC - c3ref/c_config_covering_index_scan.html#sqliteconfiggetmalloc
- SQLITE_CONFIG_GETMUTEX - c3ref/c_config_covering_index_scan.html#sqliteconfiggetmutex
- SQLITE_CONFIG_GETPCACHE - c3ref/c_config_covering_index_scan.html#sqliteconfiggetpcache
- SQLITE_CONFIG_GETPCACHE2 - c3ref/c_config_covering_index_scan.html#sqliteconfiggetpcache2
- SQLITE_CONFIG_HEAP - c3ref/c_config_covering_index_scan.html#sqliteconfigheap
- SQLITE_CONFIG_LOG - c3ref/c_config_covering_index_scan.html#sqliteconfiglog
- SQLITE_CONFIG_LOOKASIDE - c3ref/c_config_covering_index_scan.html#sqliteconfiglookaside
- SQLITE_CONFIG_MALLOC - c3ref/c_config_covering_index_scan.html#sqliteconfigmalloc
- SQLITE_CONFIG_MEMDB_MAXSIZE - c3ref/c_config_covering_index_scan.html#sqliteconfigmemdbmaxsize
- SQLITE_CONFIG_MEMSTATUS - c3ref/c_config_covering_index_scan.html#sqliteconfigmemstatus
- SQLITE_CONFIG_MMAP_SIZE - c3ref/c_config_covering_index_scan.html#sqliteconfigmmapsize
- SQLITE_CONFIG_MULTITHREAD - c3ref/c_config_covering_index_scan.html#sqliteconfigmultithread
- SQLITE_CONFIG_MUTEX - c3ref/c_config_covering_index_scan.html#sqliteconfigmutex
- SQLITE_CONFIG_PAGECACHE - c3ref/c_config_covering_index_scan.html#sqliteconfigpagecache
- SQLITE_CONFIG_PCACHE - c3ref/c_config_covering_index_scan.html#sqliteconfigpcache
- SQLITE_CONFIG_PCACHE2 - c3ref/c_config_covering_index_scan.html#sqliteconfigpcache2
- SQLITE_CONFIG_PCACHE_HDRSZ - c3ref/c_config_covering_index_scan.html#sqliteconfigpcachehdrsz
- SQLITE_CONFIG_PMASZ - c3ref/c_config_covering_index_scan.html#sqliteconfigpmasz
- SQLITE_CONFIG_ROWID_IN_VIEW - c3ref/c_config_covering_index_scan.html#sqliteconfigrowidinview
- SQLITE_CONFIG_SCRATCH - c3ref/c_config_covering_index_scan.html#sqliteconfigscratch
- SQLITE_CONFIG_SERIALIZED - c3ref/c_config_covering_index_scan.html#sqliteconfigserialized
- SQLITE_CONFIG_SINGLETHREAD - c3ref/c_config_covering_index_scan.html#sqliteconfigsinglethread
- SQLITE_CONFIG_SMALL_MALLOC - c3ref/c_config_covering_index_scan.html#sqliteconfigsmallmalloc
- SQLITE_CONFIG_SORTERREF_SIZE - c3ref/c_config_covering_index_scan.html#sqliteconfigsorterrefsize
- SQLITE_CONFIG_SQLLOG - c3ref/c_config_covering_index_scan.html#sqliteconfigsqllog
- SQLITE_CONFIG_STMTJRNL_SPILL - c3ref/c_config_covering_index_scan.html#sqliteconfigstmtjrnlspill
- SQLITE_CONFIG_URI - c3ref/c_config_covering_index_scan.html#sqliteconfiguri
- SQLITE_CONFIG_WIN32_HEAPSIZE - c3ref/c_config_covering_index_scan.html#sqliteconfigwin32heapsize
- SQLITE_CONSTRAINT - rescode.html#constraint
- SQLITE_CONSTRAINT_CHECK - rescode.html#constraint_check
- SQLITE_CONSTRAINT_COMMITHOOK - rescode.html#constraint_commithook
- SQLITE_CONSTRAINT_DATATYPE - rescode.html#constraint_datatype
- SQLITE_CONSTRAINT_FOREIGNKEY - rescode.html#constraint_foreignkey
- SQLITE_CONSTRAINT_FUNCTION - rescode.html#constraint_function
- SQLITE_CONSTRAINT_NOTNULL - rescode.html#constraint_notnull
- SQLITE_CONSTRAINT_PINNED - rescode.html#constraint_pinned
- SQLITE_CONSTRAINT_PRIMARYKEY - rescode.html#constraint_primarykey
- SQLITE_CONSTRAINT_ROWID - rescode.html#constraint_rowid
- SQLITE_CONSTRAINT_TRIGGER - rescode.html#constraint_trigger
- SQLITE_CONSTRAINT_UNIQUE - rescode.html#constraint_unique
- SQLITE_CONSTRAINT_VTAB - rescode.html#constraint_vtab
- SQLITE_COPY - c3ref/c_alter_table.html
- SQLITE_CORRUPT - rescode.html#corrupt
- SQLITE_CORRUPT_INDEX - rescode.html#corrupt_index
- SQLITE_CORRUPT_SEQUENCE - rescode.html#corrupt_sequence
- SQLITE_CORRUPT_VTAB - rescode.html#corrupt_vtab
- SQLITE_CREATE_INDEX - c3ref/c_alter_table.html
- SQLITE_CREATE_TABLE - c3ref/c_alter_table.html
- SQLITE_CREATE_TEMP_INDEX - c3ref/c_alter_table.html
- SQLITE_CREATE_TEMP_TABLE - c3ref/c_alter_table.html
- SQLITE_CREATE_TEMP_TRIGGER - c3ref/c_alter_table.html
- SQLITE_CREATE_TEMP_VIEW - c3ref/c_alter_table.html
- SQLITE_CREATE_TRIGGER - c3ref/c_alter_table.html
- SQLITE_CREATE_VIEW - c3ref/c_alter_table.html
- SQLITE_CREATE_VTABLE - c3ref/c_alter_table.html
- SQLITE_DBCONFIG_DEFENSIVE - c3ref/c_dbconfig_defensive.html#sqlitedbconfigdefensive
- SQLITE_DBCONFIG_DQS_DDL - c3ref/c_dbconfig_defensive.html#sqlitedbconfigdqsddl
- SQLITE_DBCONFIG_DQS_DML - c3ref/c_dbconfig_defensive.html#sqlitedbconfigdqsdml
- SQLITE_DBCONFIG_ENABLE_FKEY - c3ref/c_dbconfig_defensive.html#sqlitedbconfigenablefkey
- SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER - c3ref/c_dbconfig_defensive.html#sqlitedbconfigenablefts3tokenizer
- SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION - c3ref/c_dbconfig_defensive.html#sqlitedbconfigenableloadextension
- SQLITE_DBCONFIG_ENABLE_QPSG - c3ref/c_dbconfig_defensive.html#sqlitedbconfigenableqpsg
- SQLITE_DBCONFIG_ENABLE_TRIGGER - c3ref/c_dbconfig_defensive.html#sqlitedbconfigenabletrigger
- SQLITE_DBCONFIG_ENABLE_VIEW - c3ref/c_dbconfig_defensive.html#sqlitedbconfigenableview
- SQLITE_DBCONFIG_LEGACY_ALTER_TABLE - c3ref/c_dbconfig_defensive.html#sqlitedbconfiglegacyaltertable
- SQLITE_DBCONFIG_LEGACY_FILE_FORMAT - c3ref/c_dbconfig_defensive.html#sqlitedbconfiglegacyfileformat
- SQLITE_DBCONFIG_LOOKASIDE - c3ref/c_dbconfig_defensive.html#sqlitedbconfiglookaside
- SQLITE_DBCONFIG_MAINDBNAME - c3ref/c_dbconfig_defensive.html#sqlitedbconfigmaindbname
- SQLITE_DBCONFIG_MAX - c3ref/c_dbconfig_defensive.html
- SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE - c3ref/c_dbconfig_defensive.html#sqlitedbconfignockptonclose
- SQLITE_DBCONFIG_RESET_DATABASE - c3ref/c_dbconfig_defensive.html#sqlitedbconfigresetdatabase
- SQLITE_DBCONFIG_REVERSE_SCANORDER - c3ref/c_dbconfig_defensive.html#sqlitedbconfigreversescanorder
- SQLITE_DBCONFIG_STMT_SCANSTATUS - c3ref/c_dbconfig_defensive.html#sqlitedbconfigstmtscanstatus
- SQLITE_DBCONFIG_TRIGGER_EQP - c3ref/c_dbconfig_defensive.html#sqlitedbconfigtriggereqp
- SQLITE_DBCONFIG_TRUSTED_SCHEMA - c3ref/c_dbconfig_defensive.html#sqlitedbconfigtrustedschema
- SQLITE_DBCONFIG_WRITABLE_SCHEMA - c3ref/c_dbconfig_defensive.html#sqlitedbconfigwritableschema
- sqlite_dbpage - dbpage.html
- SQLITE_DBPAGE virtual table - dbpage.html
- SQLITE_DBSTATUS options - c3ref/c_dbstatus_options.html
- SQLITE_DBSTATUS_CACHE_HIT - c3ref/c_dbstatus_options.html#sqlitedbstatuscachehit
- SQLITE_DBSTATUS_CACHE_MISS - c3ref/c_dbstatus_options.html#sqlitedbstatuscachemiss
- SQLITE_DBSTATUS_CACHE_SPILL - c3ref/c_dbstatus_options.html#sqlitedbstatuscachespill
- SQLITE_DBSTATUS_CACHE_USED - c3ref/c_dbstatus_options.html#sqlitedbstatuscacheused
- SQLITE_DBSTATUS_CACHE_USED_SHARED - c3ref/c_dbstatus_options.html#sqlitedbstatuscacheusedshared
- SQLITE_DBSTATUS_CACHE_WRITE - c3ref/c_dbstatus_options.html#sqlitedbstatuscachewrite
- SQLITE_DBSTATUS_DEFERRED_FKS - c3ref/c_dbstatus_options.html#sqlitedbstatusdeferredfks
- SQLITE_DBSTATUS_LOOKASIDE_HIT - c3ref/c_dbstatus_options.html#sqlitedbstatuslookasidehit
- SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL - c3ref/c_dbstatus_options.html#sqlitedbstatuslookasidemissfull
- SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE - c3ref/c_dbstatus_options.html#sqlitedbstatuslookasidemisssize
- SQLITE_DBSTATUS_LOOKASIDE_USED - c3ref/c_dbstatus_options.html#sqlitedbstatuslookasideused
- SQLITE_DBSTATUS_MAX - c3ref/c_dbstatus_options.html
- SQLITE_DBSTATUS_SCHEMA_USED - c3ref/c_dbstatus_options.html#sqlitedbstatusschemaused
- SQLITE_DBSTATUS_STMT_USED - c3ref/c_dbstatus_options.html#sqlitedbstatusstmtused
- SQLITE_DEBUG - compile.html#debug
- SQLITE_DEFAULT_AUTOMATIC_INDEX - compile.html#default_automatic_index
- SQLITE_DEFAULT_AUTOVACUUM - compile.html#default_autovacuum
- SQLITE_DEFAULT_CACHE_SIZE - compile.html#default_cache_size
- SQLITE_DEFAULT_FILE_FORMAT - compile.html#default_file_format
- SQLITE_DEFAULT_FILE_PERMISSIONS - compile.html#default_file_permissions
- SQLITE_DEFAULT_FOREIGN_KEYS - compile.html#default_foreign_keys
- SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT - compile.html#default_journal_size_limit
- SQLITE_DEFAULT_LOCKING_MODE - compile.html#default_locking_mode
- SQLITE_DEFAULT_LOOKASIDE - compile.html#default_lookaside
- SQLITE_DEFAULT_MEMSTATUS - compile.html#default_memstatus
- SQLITE_DEFAULT_MMAP_SIZE - compile.html#default_mmap_size
- SQLITE_DEFAULT_PAGE_SIZE - compile.html#default_page_size
- SQLITE_DEFAULT_PCACHE_INITSZ - compile.html#default_pcache_initsz
- SQLITE_DEFAULT_SYNCHRONOUS - compile.html#default_synchronous
- SQLITE_DEFAULT_WAL_AUTOCHECKPOINT - compile.html#default_wal_autocheckpoint
- SQLITE_DEFAULT_WAL_SYNCHRONOUS - compile.html#default_wal_synchronous
- SQLITE_DEFAULT_WORKER_THREADS - compile.html#default_worker_threads
- SQLITE_DELETE - c3ref/c_alter_table.html
- SQLITE_DENY - c3ref/c_deny.html
- SQLITE_DESERIALIZE_FREEONCLOSE - c3ref/c_deserialize_freeonclose.html
- SQLITE_DESERIALIZE_READONLY - c3ref/c_deserialize_freeonclose.html
- SQLITE_DESERIALIZE_RESIZEABLE - c3ref/c_deserialize_freeonclose.html
- SQLITE_DETACH - c3ref/c_alter_table.html
- SQLITE_DETERMINISTIC - c3ref/c_deterministic.html#sqlitedeterministic
- SQLITE_DIRECT_OVERFLOW_READ - compile.html#direct_overflow_read
- SQLITE_DIRECTONLY - c3ref/c_deterministic.html#sqlitedirectonly
- SQLITE_DISABLE_DIRSYNC - compile.html#disable_dirsync
- SQLITE_DISABLE_FTS3_UNICODE - compile.html#disable_fts3_unicode
- SQLITE_DISABLE_FTS4_DEFERRED - compile.html#disable_fts4_deferred
- SQLITE_DISABLE_INTRINSIC - compile.html#disable_intrinsic
- SQLITE_DISABLE_LFS - compile.html#disable_lfs
- SQLITE_DISABLE_PAGECACHE_OVERFLOW_STATS - compile.html#disable_pagecache_overflow_stats
- SQLITE_DONE - rescode.html#done
- SQLITE_DQS - compile.html#dqs
- SQLITE_DROP_INDEX - c3ref/c_alter_table.html
- SQLITE_DROP_TABLE - c3ref/c_alter_table.html
- SQLITE_DROP_TEMP_INDEX - c3ref/c_alter_table.html
- SQLITE_DROP_TEMP_TABLE - c3ref/c_alter_table.html
- SQLITE_DROP_TEMP_TRIGGER - c3ref/c_alter_table.html
- SQLITE_DROP_TEMP_VIEW - c3ref/c_alter_table.html
- SQLITE_DROP_TRIGGER - c3ref/c_alter_table.html
- SQLITE_DROP_VIEW - c3ref/c_alter_table.html
- SQLITE_DROP_VTABLE - c3ref/c_alter_table.html
- SQLITE_EMPTY - rescode.html#empty
- SQLITE_ENABLE_8_3_NAMES - compile.html#enable_8_3_names
- SQLITE_ENABLE_API_ARMOR - compile.html#enable_api_armor
- SQLITE_ENABLE_ATOMIC_WRITE - compile.html#enable_atomic_write
- SQLITE_ENABLE_BATCH_ATOMIC_WRITE - compile.html#enable_batch_atomic_write
- SQLITE_ENABLE_BYTECODE_VTAB - compile.html#enable_bytecode_vtab
- SQLITE_ENABLE_COLUMN_METADATA - compile.html#enable_column_metadata
- SQLITE_ENABLE_DBPAGE_VTAB - compile.html#enable_dbpage_vtab
- SQLITE_ENABLE_DBSTAT_VTAB - compile.html#enable_dbstat_vtab
- SQLITE_ENABLE_DESERIALIZE - compile.html#enable_deserialize
- SQLITE_ENABLE_EXPLAIN_COMMENTS - compile.html#enable_explain_comments
- SQLITE_ENABLE_FTS3 - compile.html#enable_fts3
- SQLITE_ENABLE_FTS3_PARENTHESIS - compile.html#enable_fts3_parenthesis
- SQLITE_ENABLE_FTS3_TOKENIZER - compile.html#enable_fts3_tokenizer
- SQLITE_ENABLE_FTS4 - compile.html#enable_fts4
- SQLITE_ENABLE_FTS5 - compile.html#enable_fts5
- SQLITE_ENABLE_GEOPOLY - compile.html#enable_geopoly
- SQLITE_ENABLE_HIDDEN_COLUMNS - compile.html#enable_hidden_columns
- SQLITE_ENABLE_ICU - compile.html#enable_icu
- SQLITE_ENABLE_IOTRACE - compile.html#enable_iotrace
- SQLITE_ENABLE_JSON1 - compile.html#enable_json1
- SQLITE_ENABLE_LOCKING_STYLE - compile.html#enable_locking_style
- SQLITE_ENABLE_MATH_FUNCTIONS - compile.html#enable_math_functions
- SQLITE_ENABLE_MEMORY_MANAGEMENT - compile.html#enable_memory_management
- SQLITE_ENABLE_MEMSYS3 - compile.html#enable_memsys3
- SQLITE_ENABLE_MEMSYS5 - compile.html#enable_memsys5
- SQLITE_ENABLE_NORMALIZE - compile.html#enable_normalize
- SQLITE_ENABLE_NULL_TRIM - compile.html#enable_null_trim
- SQLITE_ENABLE_OFFSET_SQL_FUNC - compile.html#enable_offset_sql_func
- SQLITE_ENABLE_PREUPDATE_HOOK - compile.html#enable_preupdate_hook
- SQLITE_ENABLE_QPSG - compile.html#enable_qpsg
- SQLITE_ENABLE_RBU - compile.html#enable_rbu
- SQLITE_ENABLE_RTREE - compile.html#enable_rtree
- SQLITE_ENABLE_SESSION - compile.html#enable_session
- SQLITE_ENABLE_SNAPSHOT - compile.html#enable_snapshot
- SQLITE_ENABLE_SORTER_REFERENCES - compile.html#enable_sorter_references
- SQLITE_ENABLE_SQLLOG - compile.html#enable_sqllog
- SQLITE_ENABLE_STAT2 - compile.html#enable_stat2
- SQLITE_ENABLE_STAT3 - compile.html#enable_stat3
- SQLITE_ENABLE_STAT4 - compile.html#enable_stat4
- SQLITE_ENABLE_STMT_SCANSTATUS - compile.html#enable_stmt_scanstatus
- SQLITE_ENABLE_STMTVTAB - compile.html#enable_stmtvtab
- SQLITE_ENABLE_TREE_EXPLAIN - compile.html#enable_tree_explain
- SQLITE_ENABLE_UNKNOWN_SQL_FUNCTION - compile.html#enable_unknown_sql_function
- SQLITE_ENABLE_UNLOCK_NOTIFY - compile.html#enable_unlock_notify
- SQLITE_ENABLE_UPDATE_DELETE_LIMIT - compile.html#enable_update_delete_limit
- SQLITE_ERROR - rescode.html#error
- SQLITE_ERROR_MISSING_COLLSEQ - rescode.html#error_missing_collseq
- SQLITE_ERROR_RETRY - rescode.html#error_retry
- SQLITE_ERROR_SNAPSHOT - rescode.html#error_snapshot
- SQLITE_EXTERN - compile.html#extern
- SQLITE_EXTRA_DURABLE - compile.html#extra_durable
- SQLITE_FAIL - c3ref/c_fail.html
- SQLITE_FCNTL_BEGIN_ATOMIC_WRITE - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlbeginatomicwrite
- SQLITE_FCNTL_BUSYHANDLER - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlbusyhandler
- SQLITE_FCNTL_CHUNK_SIZE - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlchunksize
- SQLITE_FCNTL_CKPT_DONE - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlckptdone
- SQLITE_FCNTL_CKPT_START - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlckptstart
- SQLITE_FCNTL_CKSM_FILE - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlcksmfile
- SQLITE_FCNTL_COMMIT_ATOMIC_WRITE - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlcommitatomicwrite
- SQLITE_FCNTL_COMMIT_PHASETWO - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlcommitphasetwo
- SQLITE_FCNTL_DATA_VERSION - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntldataversion
- SQLITE_FCNTL_EXTERNAL_READER - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlexternalreader
- SQLITE_FCNTL_FILE_POINTER - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlfilepointer
- SQLITE_FCNTL_GET_LOCKPROXYFILE - c3ref/c_fcntl_begin_atomic_write.html
- SQLITE_FCNTL_HAS_MOVED - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlhasmoved
- SQLITE_FCNTL_JOURNAL_POINTER - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntljournalpointer
- SQLITE_FCNTL_LAST_ERRNO - c3ref/c_fcntl_begin_atomic_write.html
- SQLITE_FCNTL_LOCK_TIMEOUT - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntllocktimeout
- SQLITE_FCNTL_LOCKSTATE - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntllockstate
- SQLITE_FCNTL_MMAP_SIZE - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlmmapsize
- SQLITE_FCNTL_OVERWRITE - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntloverwrite
- SQLITE_FCNTL_PDB - c3ref/c_fcntl_begin_atomic_write.html
- SQLITE_FCNTL_PERSIST_WAL - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpersistwal
- SQLITE_FCNTL_POWERSAFE_OVERWRITE - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpowersafeoverwrite
- SQLITE_FCNTL_PRAGMA - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlpragma
- SQLITE_FCNTL_RBU - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlrbu
- SQLITE_FCNTL_RESERVE_BYTES - c3ref/c_fcntl_begin_atomic_write.html
- SQLITE_FCNTL_RESET_CACHE - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlresetcache
- SQLITE_FCNTL_ROLLBACK_ATOMIC_WRITE - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlrollbackatomicwrite
- SQLITE_FCNTL_SET_LOCKPROXYFILE - c3ref/c_fcntl_begin_atomic_write.html
- SQLITE_FCNTL_SIZE_HINT - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlsizehint
- SQLITE_FCNTL_SIZE_LIMIT - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlsizelimit
- SQLITE_FCNTL_SYNC - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlsync
- SQLITE_FCNTL_SYNC_OMITTED - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlsyncomitted
- SQLITE_FCNTL_TEMPFILENAME - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntltempfilename
- SQLITE_FCNTL_TRACE - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntltrace
- SQLITE_FCNTL_VFS_POINTER - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlvfspointer
- SQLITE_FCNTL_VFSNAME - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlvfsname
- SQLITE_FCNTL_WAL_BLOCK - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlwalblock
- SQLITE_FCNTL_WIN32_AV_RETRY - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlwin32avretry
- SQLITE_FCNTL_WIN32_GET_HANDLE - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlwin32gethandle
- SQLITE_FCNTL_WIN32_SET_HANDLE - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlwin32sethandle
- SQLITE_FCNTL_ZIPVFS - c3ref/c_fcntl_begin_atomic_write.html#sqlitefcntlzipvfs
- SQLITE_FLOAT - c3ref/c_blob.html
- SQLITE_FORMAT - rescode.html#format
- SQLITE_FTS3_MAX_EXPR_DEPTH - compile.html#fts3_max_expr_depth
- SQLITE_FULL - rescode.html#full
- SQLITE_FUNCTION - c3ref/c_alter_table.html
- SQLITE_HAVE_ISNAN - compile.html#have_isnan
- SQLITE_HAVE_ZLIB - compile.html#have_zlib
- SQLITE_IGNORE - c3ref/c_deny.html
- SQLITE_INDEX_CONSTRAINT_EQ - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_FUNCTION - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_GE - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_GLOB - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_GT - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_IS - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_ISNOT - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_ISNOTNULL - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_ISNULL - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_LE - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_LIKE - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_LIMIT - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_LT - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_MATCH - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_NE - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_OFFSET - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_CONSTRAINT_REGEXP - c3ref/c_index_constraint_eq.html
- SQLITE_INDEX_SCAN_UNIQUE - c3ref/c_index_scan_unique.html
- SQLITE_INNOCUOUS - c3ref/c_deterministic.html#sqliteinnocuous
- SQLITE_INSERT - c3ref/c_alter_table.html
- sqlite_int64 - c3ref/int64.html
- SQLITE_INTEGER - c3ref/c_blob.html
- SQLITE_INTERNAL - rescode.html#internal
- SQLITE_INTERRUPT - rescode.html#interrupt
- SQLITE_INTROSPECTION_PRAGMAS - compile.html#introspection_pragmas
- SQLITE_IOCAP_ATOMIC - c3ref/c_iocap_atomic.html
- SQLITE_IOCAP_ATOMIC1K - c3ref/c_iocap_atomic.html
- SQLITE_IOCAP_ATOMIC2K - c3ref/c_iocap_atomic.html
- SQLITE_IOCAP_ATOMIC4K - c3ref/c_iocap_atomic.html
- SQLITE_IOCAP_ATOMIC8K - c3ref/c_iocap_atomic.html
- SQLITE_IOCAP_ATOMIC16K - c3ref/c_iocap_atomic.html
- SQLITE_IOCAP_ATOMIC32K - c3ref/c_iocap_atomic.html
- SQLITE_IOCAP_ATOMIC64K - c3ref/c_iocap_atomic.html
- SQLITE_IOCAP_ATOMIC512 - c3ref/c_iocap_atomic.html
- SQLITE_IOCAP_BATCH_ATOMIC - c3ref/c_iocap_atomic.html
- SQLITE_IOCAP_IMMUTABLE - c3ref/c_iocap_atomic.html
- SQLITE_IOCAP_POWERSAFE_OVERWRITE - c3ref/c_iocap_atomic.html
- SQLITE_IOCAP_SAFE_APPEND - c3ref/c_iocap_atomic.html
- SQLITE_IOCAP_SEQUENTIAL - c3ref/c_iocap_atomic.html
- SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN - c3ref/c_iocap_atomic.html
- SQLITE_IOERR - rescode.html#ioerr
- SQLITE_IOERR_ACCESS - rescode.html#ioerr_access
- SQLITE_IOERR_AUTH - rescode.html#ioerr_auth
- SQLITE_IOERR_BEGIN_ATOMIC - rescode.html#ioerr_begin_atomic
- SQLITE_IOERR_BLOCKED - rescode.html#ioerr_blocked
- SQLITE_IOERR_CHECKRESERVEDLOCK - rescode.html#ioerr_checkreservedlock
- SQLITE_IOERR_CLOSE - rescode.html#ioerr_close
- SQLITE_IOERR_COMMIT_ATOMIC - rescode.html#ioerr_commit_atomic
- SQLITE_IOERR_CONVPATH - rescode.html#ioerr_convpath
- SQLITE_IOERR_CORRUPTFS - rescode.html#ioerr_corruptfs
- SQLITE_IOERR_DATA - rescode.html#ioerr_data
- SQLITE_IOERR_DELETE - rescode.html#ioerr_delete
- SQLITE_IOERR_DELETE_NOENT - rescode.html#ioerr_delete_noent
- SQLITE_IOERR_DIR_CLOSE - rescode.html#ioerr_dir_close
- SQLITE_IOERR_DIR_FSYNC - rescode.html#ioerr_dir_fsync
- SQLITE_IOERR_FSTAT - rescode.html#ioerr_fstat
- SQLITE_IOERR_FSYNC - rescode.html#ioerr_fsync
- SQLITE_IOERR_GETTEMPPATH - rescode.html#ioerr_gettemppath
- SQLITE_IOERR_IN_PAGE - c3ref/c_abort_rollback.html
- SQLITE_IOERR_LOCK - rescode.html#ioerr_lock
- SQLITE_IOERR_MMAP - rescode.html#ioerr_mmap
- SQLITE_IOERR_NOMEM - rescode.html#ioerr_nomem
- SQLITE_IOERR_RDLOCK - rescode.html#ioerr_rdlock
- SQLITE_IOERR_READ - rescode.html#ioerr_read
- SQLITE_IOERR_ROLLBACK_ATOMIC - rescode.html#ioerr_rollback_atomic
- SQLITE_IOERR_SEEK - rescode.html#ioerr_seek
- SQLITE_IOERR_SHMLOCK - rescode.html#ioerr_shmlock
- SQLITE_IOERR_SHMMAP - rescode.html#ioerr_shmmap
- SQLITE_IOERR_SHMOPEN - rescode.html#ioerr_shmopen
- SQLITE_IOERR_SHMSIZE - rescode.html#ioerr_shmsize
- SQLITE_IOERR_SHORT_READ - rescode.html#ioerr_short_read
- SQLITE_IOERR_TRUNCATE - rescode.html#ioerr_truncate
- SQLITE_IOERR_UNLOCK - rescode.html#ioerr_unlock
- SQLITE_IOERR_VNODE - rescode.html#ioerr_vnode
- SQLITE_IOERR_WRITE - rescode.html#ioerr_write
- SQLITE_JSON_MAX_DEPTH - compile.html#json_max_depth
- SQLITE_LIKE_DOESNT_MATCH_BLOBS - compile.html#like_doesnt_match_blobs
- SQLITE_LIMIT_ATTACHED - c3ref/c_limit_attached.html#sqlitelimitattached
- SQLITE_LIMIT_COLUMN - c3ref/c_limit_attached.html#sqlitelimitcolumn
- SQLITE_LIMIT_COMPOUND_SELECT - c3ref/c_limit_attached.html#sqlitelimitcompoundselect
- SQLITE_LIMIT_EXPR_DEPTH - c3ref/c_limit_attached.html#sqlitelimitexprdepth
- SQLITE_LIMIT_FUNCTION_ARG - c3ref/c_limit_attached.html#sqlitelimitfunctionarg
- SQLITE_LIMIT_LENGTH - c3ref/c_limit_attached.html#sqlitelimitlength
- SQLITE_LIMIT_LIKE_PATTERN_LENGTH - c3ref/c_limit_attached.html#sqlitelimitlikepatternlength
- SQLITE_LIMIT_SQL_LENGTH - c3ref/c_limit_attached.html#sqlitelimitsqllength
- SQLITE_LIMIT_TRIGGER_DEPTH - c3ref/c_limit_attached.html#sqlitelimittriggerdepth
- SQLITE_LIMIT_VARIABLE_NUMBER - c3ref/c_limit_attached.html#sqlitelimitvariablenumber
- SQLITE_LIMIT_VDBE_OP - c3ref/c_limit_attached.html#sqlitelimitvdbeop
- SQLITE_LIMIT_WORKER_THREADS - c3ref/c_limit_attached.html#sqlitelimitworkerthreads
- SQLITE_LOCK_EXCLUSIVE - c3ref/c_lock_exclusive.html
- SQLITE_LOCK_NONE - c3ref/c_lock_exclusive.html
- SQLITE_LOCK_PENDING - c3ref/c_lock_exclusive.html
- SQLITE_LOCK_RESERVED - c3ref/c_lock_exclusive.html
- SQLITE_LOCK_SHARED - c3ref/c_lock_exclusive.html
- SQLITE_LOCKED - rescode.html#locked
- SQLITE_LOCKED_SHAREDCACHE - rescode.html#locked_sharedcache
- SQLITE_LOCKED_VTAB - rescode.html#locked_vtab
- sqlite_master table - schematab.html
- SQLITE_MAX_ALLOCATION_SIZE - compile.html#max_allocation_size
- SQLITE_MAX_ATTACHED - limits.html#max_attached
- SQLITE_MAX_COLUMN - limits.html#max_column
- SQLITE_MAX_COMPOUND_SELECT - limits.html#max_compound_select
- SQLITE_MAX_EXPR_DEPTH - limits.html#max_expr_depth
- SQLITE_MAX_FUNCTION_ARG - limits.html#max_function_arg
- SQLITE_MAX_LENGTH - limits.html#max_length
- SQLITE_MAX_LIKE_PATTERN_LENGTH - limits.html#max_like_pattern_length
- SQLITE_MAX_MEMORY - compile.html#max_memory
- SQLITE_MAX_MMAP_SIZE - compile.html#max_mmap_size
- SQLITE_MAX_PAGE_COUNT - limits.html#max_page_count
- SQLITE_MAX_SCHEMA_RETRY - compile.html#max_schema_retry
- SQLITE_MAX_SQL_LENGTH - limits.html#max_sql_length
- SQLITE_MAX_TRIGGER_DEPTH - limits.html#max_trigger_depth
- SQLITE_MAX_VARIABLE_NUMBER - limits.html#max_variable_number
- SQLITE_MAX_WORKER_THREADS - compile.html#max_worker_threads
- SQLITE_MEMDB_DEFAULT_MAXSIZE - compile.html#memdb_default_maxsize
- SQLITE_MEMDEBUG - compile.html#memdebug
- sqlite_memstat - memstat.html
- SQLITE_MEMSTAT virtual table - memstat.html
- SQLITE_MINIMUM_FILE_DESCRIPTOR - compile.html#minimum_file_descriptor
- SQLITE_MISMATCH - rescode.html#mismatch
- SQLITE_MISUSE - rescode.html#misuse
- SQLITE_MUTEX_FAST - c3ref/c_mutex_fast.html
- SQLITE_MUTEX_RECURSIVE - c3ref/c_mutex_fast.html
- SQLITE_MUTEX_STATIC_APP1 - c3ref/c_mutex_fast.html
- SQLITE_MUTEX_STATIC_APP2 - c3ref/c_mutex_fast.html
- SQLITE_MUTEX_STATIC_APP3 - c3ref/c_mutex_fast.html
- SQLITE_MUTEX_STATIC_LRU - c3ref/c_mutex_fast.html
- SQLITE_MUTEX_STATIC_LRU2 - c3ref/c_mutex_fast.html
- SQLITE_MUTEX_STATIC_MAIN - c3ref/c_mutex_fast.html
- SQLITE_MUTEX_STATIC_MEM - c3ref/c_mutex_fast.html
- SQLITE_MUTEX_STATIC_MEM2 - c3ref/c_mutex_fast.html
- SQLITE_MUTEX_STATIC_OPEN - c3ref/c_mutex_fast.html
- SQLITE_MUTEX_STATIC_PMEM - c3ref/c_mutex_fast.html
- SQLITE_MUTEX_STATIC_PRNG - c3ref/c_mutex_fast.html
- SQLITE_MUTEX_STATIC_VFS1 - c3ref/c_mutex_fast.html
- SQLITE_MUTEX_STATIC_VFS2 - c3ref/c_mutex_fast.html
- SQLITE_MUTEX_STATIC_VFS3 - c3ref/c_mutex_fast.html
- SQLITE_NOLFS - rescode.html#nolfs
- SQLITE_NOMEM - rescode.html#nomem
- SQLITE_NOTADB - rescode.html#notadb
- SQLITE_NOTFOUND - rescode.html#notfound
- SQLITE_NOTICE - rescode.html#notice
- SQLITE_NOTICE_RBU - c3ref/c_abort_rollback.html
- SQLITE_NOTICE_RECOVER_ROLLBACK - rescode.html#notice_recover_rollback
- SQLITE_NOTICE_RECOVER_WAL - rescode.html#notice_recover_wal
- SQLITE_NULL - c3ref/c_blob.html
- sqlite_offset - lang_corefunc.html#sqlite_offset
- sqlite_offset SQL function - lang_corefunc.html#sqlite_offset
- SQLITE_OK - rescode.html#ok
- SQLITE_OK_LOAD_PERMANENTLY - rescode.html#ok_load_permanently
- SQLITE_OK_SYMLINK - c3ref/c_abort_rollback.html
- SQLITE_OMIT_ALTERTABLE - compile.html#omit_altertable
- SQLITE_OMIT_ANALYZE - compile.html#omit_analyze
- SQLITE_OMIT_ATTACH - compile.html#omit_attach
- SQLITE_OMIT_AUTHORIZATION - compile.html#omit_authorization
- SQLITE_OMIT_AUTOINCREMENT - compile.html#omit_autoincrement
- SQLITE_OMIT_AUTOINIT - compile.html#omit_autoinit
- SQLITE_OMIT_AUTOMATIC_INDEX - compile.html#omit_automatic_index
- SQLITE_OMIT_AUTORESET - compile.html#omit_autoreset
- SQLITE_OMIT_AUTOVACUUM - compile.html#omit_autovacuum
- SQLITE_OMIT_BETWEEN_OPTIMIZATION - compile.html#omit_between_optimization
- SQLITE_OMIT_BLOB_LITERAL - compile.html#omit_blob_literal
- SQLITE_OMIT_BTREECOUNT - compile.html#omit_btreecount
- SQLITE_OMIT_BUILTIN_TEST - compile.html#omit_builtin_test
- SQLITE_OMIT_CASE_SENSITIVE_LIKE_PRAGMA - compile.html#omit_case_sensitive_like_pragma
- SQLITE_OMIT_CAST - compile.html#omit_cast
- SQLITE_OMIT_CHECK - compile.html#omit_check
- SQLITE_OMIT_COMPILEOPTION_DIAGS - compile.html#omit_compileoption_diags
- SQLITE_OMIT_COMPLETE - compile.html#omit_complete
- SQLITE_OMIT_COMPOUND_SELECT - compile.html#omit_compound_select
- SQLITE_OMIT_CTE - compile.html#omit_cte
- SQLITE_OMIT_DATETIME_FUNCS - compile.html#omit_datetime_funcs
- SQLITE_OMIT_DECLTYPE - compile.html#omit_decltype
- SQLITE_OMIT_DEPRECATED - compile.html#omit_deprecated
- SQLITE_OMIT_DESERIALIZE - compile.html#omit_deserialize
- SQLITE_OMIT_DISKIO - compile.html#omit_diskio
- SQLITE_OMIT_EXPLAIN - compile.html#omit_explain
- SQLITE_OMIT_FLAG_PRAGMAS - compile.html#omit_flag_pragmas
- SQLITE_OMIT_FLOATING_POINT - compile.html#omit_floating_point
- SQLITE_OMIT_FOREIGN_KEY - compile.html#omit_foreign_key
- SQLITE_OMIT_GENERATED_COLUMNS - compile.html#omit_generated_columns
- SQLITE_OMIT_GET_TABLE - compile.html#omit_get_table
- SQLITE_OMIT_HEX_INTEGER - compile.html#omit_hex_integer
- SQLITE_OMIT_INCRBLOB - compile.html#omit_incrblob
- SQLITE_OMIT_INTEGRITY_CHECK - compile.html#omit_integrity_check
- SQLITE_OMIT_INTROSPECTION_PRAGMAS - compile.html#omit_introspection_pragmas
- SQLITE_OMIT_JSON - compile.html#omit_json
- SQLITE_OMIT_LIKE_OPTIMIZATION - compile.html#omit_like_optimization
- SQLITE_OMIT_LOAD_EXTENSION - compile.html#omit_load_extension
- SQLITE_OMIT_LOCALTIME - compile.html#omit_localtime
- SQLITE_OMIT_LOOKASIDE - compile.html#omit_lookaside
- SQLITE_OMIT_MEMORYDB - compile.html#omit_memorydb
- SQLITE_OMIT_OR_OPTIMIZATION - compile.html#omit_or_optimization
- SQLITE_OMIT_PAGER_PRAGMAS - compile.html#omit_pager_pragmas
- SQLITE_OMIT_PRAGMA - compile.html#omit_pragma
- SQLITE_OMIT_PROGRESS_CALLBACK - compile.html#omit_progress_callback
- SQLITE_OMIT_QUICKBALANCE - compile.html#omit_quickbalance
- SQLITE_OMIT_REINDEX - compile.html#omit_reindex
- SQLITE_OMIT_SCHEMA_PRAGMAS - compile.html#omit_schema_pragmas
- SQLITE_OMIT_SCHEMA_VERSION_PRAGMAS - compile.html#omit_schema_version_pragmas
- SQLITE_OMIT_SHARED_CACHE - compile.html#omit_shared_cache
- SQLITE_OMIT_SUBQUERY - compile.html#omit_subquery
- SQLITE_OMIT_TCL_VARIABLE - compile.html#omit_tcl_variable
- SQLITE_OMIT_TEMPDB - compile.html#omit_tempdb
- SQLITE_OMIT_TRACE - compile.html#omit_trace
- SQLITE_OMIT_TRIGGER - compile.html#omit_trigger
- SQLITE_OMIT_TRUNCATE_OPTIMIZATION - compile.html#omit_truncate_optimization
- SQLITE_OMIT_UTF16 - compile.html#omit_utf16
- SQLITE_OMIT_VACUUM - compile.html#omit_vacuum
- SQLITE_OMIT_VIEW - compile.html#omit_view
- SQLITE_OMIT_VIRTUALTABLE - compile.html#omit_virtualtable
- SQLITE_OMIT_WAL - compile.html#omit_wal
- SQLITE_OMIT_WINDOWFUNC - compile.html#omit_windowfunc
- SQLITE_OMIT_WSD - compile.html#omit_wsd
- SQLITE_OMIT_XFER_OPT - compile.html#omit_xfer_opt
- SQLITE_OPEN_AUTOPROXY - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_CREATE - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_DELETEONCLOSE - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_EXCLUSIVE - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_EXRESCODE - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_FULLMUTEX - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_MAIN_DB - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_MAIN_JOURNAL - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_MEMORY - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_NOFOLLOW - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_NOMUTEX - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_PRIVATECACHE - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_READONLY - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_READWRITE - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_SHAREDCACHE - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_SUBJOURNAL - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_SUPER_JOURNAL - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_TEMP_DB - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_TEMP_JOURNAL - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_TRANSIENT_DB - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_URI - c3ref/c_open_autoproxy.html
- SQLITE_OPEN_WAL - c3ref/c_open_autoproxy.html
- SQLITE_OS_OTHER - compile.html#os_other
- SQLITE_PERM - rescode.html#perm
- SQLITE_POWERSAFE_OVERWRITE - compile.html#powersafe_overwrite
- SQLITE_PRAGMA - c3ref/c_alter_table.html
- SQLITE_PREPARE_NO_VTAB - c3ref/c_prepare_normalize.html#sqlitepreparenovtab
- SQLITE_PREPARE_NORMALIZE - c3ref/c_prepare_normalize.html#sqlitepreparenormalize
- SQLITE_PREPARE_PERSISTENT - c3ref/c_prepare_normalize.html#sqlitepreparepersistent
- SQLITE_PRINTF_PRECISION_LIMIT - compile.html#printf_precision_limit
- SQLITE_PROTOCOL - rescode.html#protocol
- SQLITE_QUERY_PLANNER_LIMIT - compile.html#query_planner_limit
- SQLITE_QUERY_PLANNER_LIMIT_INCR - compile.html#query_planner_limit_incr
- SQLITE_RANGE - rescode.html#range
- SQLITE_READ - c3ref/c_alter_table.html
- SQLITE_READONLY - rescode.html#readonly
- SQLITE_READONLY_CANTINIT - rescode.html#readonly_cantinit
- SQLITE_READONLY_CANTLOCK - rescode.html#readonly_cantlock
- SQLITE_READONLY_DBMOVED - rescode.html#readonly_dbmoved
- SQLITE_READONLY_DIRECTORY - rescode.html#readonly_directory
- SQLITE_READONLY_RECOVERY - rescode.html#readonly_recovery
- SQLITE_READONLY_ROLLBACK - rescode.html#readonly_rollback
- SQLITE_RECURSIVE - c3ref/c_alter_table.html
- SQLITE_REINDEX - c3ref/c_alter_table.html
- SQLITE_REPLACE - c3ref/c_fail.html
- SQLITE_RESULT_SUBTYPE - c3ref/c_deterministic.html#sqliteresultsubtype
- SQLITE_REVERSE_UNORDERED_SELECTS - compile.html#reverse_unordered_selects
- SQLITE_ROLLBACK - c3ref/c_fail.html
- SQLITE_ROW - rescode.html#row
- SQLITE_RTREE_INT_ONLY - compile.html#rtree_int_only
- SQLITE_SAVEPOINT - c3ref/c_alter_table.html
- SQLITE_SCANSTAT_COMPLEX - c3ref/c_scanstat_complex.html
- SQLITE_SCANSTAT_EST - c3ref/c_scanstat_est.html#sqlitescanstatest
- SQLITE_SCANSTAT_EXPLAIN - c3ref/c_scanstat_est.html#sqlitescanstatexplain
- SQLITE_SCANSTAT_NAME - c3ref/c_scanstat_est.html#sqlitescanstatname
- SQLITE_SCANSTAT_NCYCLE - c3ref/c_scanstat_est.html#sqlitescanstatncycle
- SQLITE_SCANSTAT_NLOOP - c3ref/c_scanstat_est.html#sqlitescanstatnloop
- SQLITE_SCANSTAT_NVISIT - c3ref/c_scanstat_est.html#sqlitescanstatnvisit
- SQLITE_SCANSTAT_PARENTID - c3ref/c_scanstat_est.html#sqlitescanstatparentid
- SQLITE_SCANSTAT_SELECTID - c3ref/c_scanstat_est.html#sqlitescanstatselectid
- SQLITE_SCHEMA - rescode.html#schema
- sqlite_schema - schematab.html
- sqlite_schema table - schematab.html
- SQLITE_SECURE_DELETE - compile.html#secure_delete
- SQLITE_SELECT - c3ref/c_alter_table.html
- sqlite_sequence - fileformat2.html#seqtab
- SQLITE_SERIALIZE_NOCOPY - c3ref/c_serialize_nocopy.html
- SQLITE_SESSION_CONFIG_STRMSIZE - session/c_session_config_strmsize.html
- SQLITE_SESSION_OBJCONFIG_ROWID - session/c_session_objconfig_rowid.html
- SQLITE_SESSION_OBJCONFIG_SIZE - session/c_session_objconfig_rowid.html
- SQLITE_SHM_EXCLUSIVE - c3ref/c_shm_exclusive.html
- SQLITE_SHM_LOCK - c3ref/c_shm_exclusive.html
- SQLITE_SHM_NLOCK - c3ref/c_shm_nlock.html
- SQLITE_SHM_SHARED - c3ref/c_shm_exclusive.html
- SQLITE_SHM_UNLOCK - c3ref/c_shm_exclusive.html
- SQLITE_SORTER_PMASZ - compile.html#sorter_pmasz
- SQLITE_SOUNDEX - compile.html#soundex
- SQLITE_SOURCE_ID - c3ref/c_source_id.html
- sqlite_source_id - lang_corefunc.html#sqlite_source_id
- sqlite_source_id SQL function - lang_corefunc.html#sqlite_source_id
- SQLITE_STAT1 - fileformat2.html#stat1tab
- sqlite_stat1 - fileformat2.html#stat1tab
- sqlite_stat2 - fileformat2.html#stat2tab
- SQLITE_STAT3 - fileformat2.html#stat3tab
- sqlite_stat3 - fileformat2.html#stat3tab
- SQLITE_STAT4 - fileformat2.html#stat4tab
- sqlite_stat4 - fileformat2.html#stat4tab
- SQLITE_STATIC - c3ref/c_static.html
- SQLITE_STATUS_MALLOC_COUNT - c3ref/c_status_malloc_count.html#sqlitestatusmalloccount
- SQLITE_STATUS_MALLOC_SIZE - c3ref/c_status_malloc_count.html#sqlitestatusmallocsize
- SQLITE_STATUS_MEMORY_USED - c3ref/c_status_malloc_count.html#sqlitestatusmemoryused
- SQLITE_STATUS_PAGECACHE_OVERFLOW - c3ref/c_status_malloc_count.html#sqlitestatuspagecacheoverflow
- SQLITE_STATUS_PAGECACHE_SIZE - c3ref/c_status_malloc_count.html#sqlitestatuspagecachesize
- SQLITE_STATUS_PAGECACHE_USED - c3ref/c_status_malloc_count.html#sqlitestatuspagecacheused
- SQLITE_STATUS_PARSER_STACK - c3ref/c_status_malloc_count.html#sqlitestatusparserstack
- SQLITE_STATUS_SCRATCH_OVERFLOW - c3ref/c_status_malloc_count.html#sqlitestatusscratchoverflow
- SQLITE_STATUS_SCRATCH_SIZE - c3ref/c_status_malloc_count.html#sqlitestatusscratchsize
- SQLITE_STATUS_SCRATCH_USED - c3ref/c_status_malloc_count.html#sqlitestatusscratchused
- SQLITE_STDCALL - compile.html#stdcall
- sqlite_stmt - stmt.html
- SQLITE_STMT virtual table - stmt.html
- SQLITE_STMTJRNL_SPILL - compile.html#stmtjrnl_spill
- SQLITE_STMTSTATUS counter - c3ref/c_stmtstatus_counter.html
- SQLITE_STMTSTATUS counters - c3ref/c_stmtstatus_counter.html
- SQLITE_STMTSTATUS_AUTOINDEX - c3ref/c_stmtstatus_counter.html#sqlitestmtstatusautoindex
- SQLITE_STMTSTATUS_FILTER HIT - c3ref/c_stmtstatus_counter.html#sqlitestmtstatusfilterhit
- SQLITE_STMTSTATUS_FILTER_HIT - c3ref/c_stmtstatus_counter.html
- SQLITE_STMTSTATUS_FILTER_MISS - c3ref/c_stmtstatus_counter.html#sqlitestmtstatusfiltermiss
- SQLITE_STMTSTATUS_FULLSCAN_STEP - c3ref/c_stmtstatus_counter.html#sqlitestmtstatusfullscanstep
- SQLITE_STMTSTATUS_MEMUSED - c3ref/c_stmtstatus_counter.html#sqlitestmtstatusmemused
- SQLITE_STMTSTATUS_REPREPARE - c3ref/c_stmtstatus_counter.html#sqlitestmtstatusreprepare
- SQLITE_STMTSTATUS_RUN - c3ref/c_stmtstatus_counter.html#sqlitestmtstatusrun
- SQLITE_STMTSTATUS_SORT - c3ref/c_stmtstatus_counter.html#sqlitestmtstatussort
- SQLITE_STMTSTATUS_VM_STEP - c3ref/c_stmtstatus_counter.html#sqlitestmtstatusvmstep
- SQLITE_STRICT_SUBTYPE - compile.html#strict_subtype
- SQLITE_SUBTYPE - c3ref/c_deterministic.html#sqlitesubtype
- SQLITE_SYNC_DATAONLY - c3ref/c_sync_dataonly.html
- SQLITE_SYNC_FULL - c3ref/c_sync_dataonly.html
- SQLITE_SYNC_NORMAL - c3ref/c_sync_dataonly.html
- SQLITE_SYSAPI - compile.html#sysapi
- SQLITE_TCLAPI - compile.html#tclapi
- sqlite_temp_schema - schematab.html
- SQLITE_TEMP_STORE - compile.html#temp_store
- SQLITE_TESTCTRL_ALWAYS - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_ASSERT - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_BENIGN_MALLOC_HOOKS - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_BITVEC_TEST - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_BYTEORDER - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_EXPLAIN_STMT - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_EXTRA_SCHEMA_CHECKS - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_FAULT_INSTALL - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_FIRST - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_FK_NO_ACTION - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_IMPOSTER - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_INTERNAL_FUNCTIONS - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_ISINIT - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_ISKEYWORD - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_JSON_SELFCHECK - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_LAST - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_LOCALTIME_FAULT - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_LOGEST - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_NEVER_CORRUPT - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_ONCE_RESET_THRESHOLD - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_OPTIMIZATIONS - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_PARSER_COVERAGE - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_PENDING_BYTE - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_PRNG_RESET - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_PRNG_RESTORE - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_PRNG_SAVE - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_PRNG_SEED - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_RESERVE - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_RESULT_INTREAL - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_SCRATCHMALLOC - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_SEEK_COUNT - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_SORTER_MMAP - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_TRACEFLAGS - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_TUNE - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_USELONGDOUBLE - c3ref/c_testctrl_always.html
- SQLITE_TESTCTRL_VDBE_COVERAGE - c3ref/c_testctrl_always.html
- SQLITE_TEXT - c3ref/c_blob.html
- SQLITE_THREADSAFE - compile.html#threadsafe
- SQLITE_TOOBIG - rescode.html#toobig
- SQLITE_TRACE - c3ref/c_trace.html
- SQLITE_TRACE_CLOSE - c3ref/c_trace.html#sqlitetraceclose
- SQLITE_TRACE_PROFILE - c3ref/c_trace.html#sqlitetraceprofile
- SQLITE_TRACE_ROW - c3ref/c_trace.html#sqlitetracerow
- SQLITE_TRACE_SIZE_LIMIT - compile.html#trace_size_limit
- SQLITE_TRACE_STMT - c3ref/c_trace.html#sqlitetracestmt
- SQLITE_TRANSACTION - c3ref/c_alter_table.html
- SQLITE_TRANSIENT - c3ref/c_static.html
- SQLITE_TRUSTED_SCHEMA - compile.html#trusted_schema
- SQLITE_TXN_NONE - c3ref/c_txn_none.html#sqlitetxnnone
- SQLITE_TXN_READ - c3ref/c_txn_none.html#sqlitetxnread
- SQLITE_TXN_WRITE - c3ref/c_txn_none.html#sqlitetxnwrite
- sqlite_uint64 - c3ref/int64.html
- SQLITE_UNTESTABLE - compile.html#untestable
- SQLITE_UPDATE - c3ref/c_alter_table.html
- SQLITE_USE_ALLOCA - compile.html#use_alloca
- SQLITE_USE_FCNTL_TRACE - compile.html#use_fcntl_trace
- SQLITE_USE_SEH - compile.html#use_seh
- SQLITE_USE_URI - compile.html#use_uri
- SQLITE_UTF8 - c3ref/c_any.html
- SQLITE_UTF16 - c3ref/c_any.html
- SQLITE_UTF16_ALIGNED - c3ref/c_any.html
- SQLITE_UTF16BE - c3ref/c_any.html
- SQLITE_UTF16LE - c3ref/c_any.html
- SQLITE_VERSION - c3ref/c_source_id.html
- sqlite_version - lang_corefunc.html#sqlite_version
- sqlite_version SQL function - lang_corefunc.html#sqlite_version
- SQLITE_VERSION_NUMBER - c3ref/c_source_id.html
- SQLITE_VTAB_CONSTRAINT_SUPPORT - c3ref/c_vtab_constraint_support.html#sqlitevtabconstraintsupport
- SQLITE_VTAB_DIRECTONLY - c3ref/c_vtab_constraint_support.html#sqlitevtabdirectonly
- SQLITE_VTAB_INNOCUOUS - c3ref/c_vtab_constraint_support.html#sqlitevtabinnocuous
- SQLITE_VTAB_USES_ALL_SCHEMAS - c3ref/c_vtab_constraint_support.html#sqlitevtabusesallschemas
- SQLITE_WARNING - rescode.html#warning
- SQLITE_WARNING_AUTOINDEX - rescode.html#warning_autoindex
- SQLITE_WIN32_DATA_DIRECTORY_TYPE - c3ref/c_win32_data_directory_type.html
- SQLITE_WIN32_HEAP_CREATE - compile.html#win32_heap_create
- SQLITE_WIN32_MALLOC - compile.html#win32_malloc
- SQLITE_WIN32_MALLOC_VALIDATE - compile.html#win32_malloc_validate
- SQLITE_WIN32_TEMP_DIRECTORY_TYPE - c3ref/c_win32_data_directory_type.html
- SQLITE_ZERO_MALLOC - compile.html#zero_malloc
- sqrt - lang_mathfunc.html#sqrt
- sqrt SQL function - lang_mathfunc.html#sqrt
- stale file descriptor - howtocorrupt.html#stalefd
- standard query parameters - uri.html#coreqp
- statement journal - tempfiles.html#stmtjrnl
- Statement journals - tempfiles.html#stmtjrnl
- statement journals - tempfiles.html#stmtjrnl
- static ANALYZE results - lang_analyze.html#statanal
- statically linked extensions - loadext.html#statext
- stats - pragma.html#pragma_stats
- stats pragma - pragma.html#pragma_stats
- status method - tclsqlite.html#status
- status parameters - c3ref/c_status_malloc_count.html
- storage class - datatype3.html#storageclasses
- strategies - queryplanner.html#searching
- strftime - lang_datefunc.html#strftm
- strftime SQL function - lang_datefunc.html#strftm
- STRICT - stricttables.html
- STRICT table - stricttables.html
- STRICT tables - stricttables.html
- strict type checking - stricttables.html
- string_agg - lang_aggfunc.html#group_concat
- string_agg aggregate function - lang_aggfunc.html#group_concat
- subprograms - opcode.html#subprog
- Subqueries - lang_expr.html#subq
- subquery co-routines - optoverview.html#coroutines
- subsec modifier - lang_datefunc.html#subsec
- subsecond modifier - lang_datefunc.html#subsec
- substr - lang_corefunc.html#substr
- substr SQL function - lang_corefunc.html#substr
- sum - lang_aggfunc.html#sumunc
- sum aggregate function - lang_aggfunc.html#sumunc
- sumFunc - lang_aggfunc.html#sumunc
- super-journal - tempfiles.html#superjrnl
- swarmvtab - swarmvtab.html#overview
- swarmvtab context - swarmvtab.html#component_table_context_values
- synchronous - pragma.html#pragma_synchronous
- synchronous pragma - pragma.html#pragma_synchronous
- syntax diagrams - syntaxdiagrams.html
- table b-tree - fileformat2.html#btypes
- table data format - fileformat2.html##sqltab
- table-constraint - syntax/table-constraint.html
- table-constraint syntax diagram - syntax/table-constraint.html
- table-options - syntax/table-options.html
- table-options syntax diagram - syntax/table-options.html
- table-or-subquery - syntax/table-or-subquery.html
- table-or-subquery syntax diagram - syntax/table-or-subquery.html
- table-valued function - vtab.html#tabfunc2
- table-valued functions - vtab.html#tabfunc2
- table-valued functions in the FROM clause - lang_select.html#tabfunc1
- table_info - pragma.html#pragma_table_info
- table_info pragma - pragma.html#pragma_table_info
- table_list - pragma.html#pragma_table_list
- table_list pragma - pragma.html#pragma_table_list
- table_xinfo - pragma.html#pragma_table_xinfo
- table_xinfo pragma - pragma.html#pragma_table_xinfo
- tables_used virtual table - bytecodevtab.html
- tan - lang_mathfunc.html#tan
- tan SQL function - lang_mathfunc.html#tan
- tanh - lang_mathfunc.html#tanh
- tanh SQL function - lang_mathfunc.html#tanh
- Tcl extension - tclsqlite.html
- TCL Interface - tclsqlite.html
- TCL interface authorizer method - tclsqlite.html#authorizer
- TCL interface backup method - tclsqlite.html#backup
- TCL interface bind_fallback method - tclsqlite.html#bind_fallback
- TCL interface busy method - tclsqlite.html#busy
- TCL interface cache method - tclsqlite.html#cache
- TCL interface changes method - tclsqlite.html#changes
- TCL interface close method - tclsqlite.html#close
- TCL interface collate method - tclsqlite.html#collate
- TCL interface collation_needed method - tclsqlite.html#collation_needed
- TCL interface commit_hook method - tclsqlite.html#commit_hook
- TCL interface complete method - tclsqlite.html#complete
- TCL interface config method - tclsqlite.html#config
- TCL interface copy method - tclsqlite.html#copy
- TCL interface deserialize method - tclsqlite.html#deserialize
- TCL interface enable_load_extension method - tclsqlite.html#enable_load_extension
- TCL interface errorcode method - tclsqlite.html#errorcode
- TCL interface eval method - tclsqlite.html#eval
- TCL interface exists method - tclsqlite.html#exists
- TCL interface function method - tclsqlite.html#function
- TCL interface incrblob method - tclsqlite.html#incrblob
- TCL interface interrupt method - tclsqlite.html#interrupt
- TCL interface last_insert_rowid method - tclsqlite.html#last_insert_rowid
- TCL interface nullvalue method - tclsqlite.html#nullvalue
- TCL interface onecolumn method - tclsqlite.html#onecolumn
- TCL interface preupdate method - tclsqlite.html#preupdate
- TCL interface profile method - tclsqlite.html#profile
- TCL interface progress method - tclsqlite.html#progress
- TCL interface restore method - tclsqlite.html#restore
- TCL interface rollback_hook method - tclsqlite.html#rollback_hook
- TCL interface serialize method - tclsqlite.html#serialize
- TCL interface status method - tclsqlite.html#status
- TCL interface timeout method - tclsqlite.html#timeout
- TCL interface total_changes method - tclsqlite.html#total_changes
- TCL interface trace method - tclsqlite.html#trace
- TCL interface trace_v2 method - tclsqlite.html#trace_v2
- TCL interface transaction method - tclsqlite.html#transaction
- TCL interface unlock_notify method - tclsqlite.html#unlock_notify
- TCL interface update_hook method - tclsqlite.html#update_hook
- TCL interface version method - tclsqlite.html#version
- TCL interface wal_hook method - tclsqlite.html#wal_hook
- TCL test suite - testing.html#tcl
- TCL variable substitution - tclsqlite.html#varsubst
- TEA tarball - download.html
- TEMP triggers on non-TEMP tables - lang_createtrigger.html#temptrig
- temp_store - pragma.html#pragma_temp_store
- temp_store pragma - pragma.html#pragma_temp_store
- temp_store_directory - pragma.html#pragma_temp_store_directory
- temp_store_directory pragma - pragma.html#pragma_temp_store_directory
- temporary databases - inmemorydb.html#temp_db
- temporary directory search algorithm - tempfiles.html#tempdir
- temporary disk files - tempfiles.html
- temporary tables - inmemorydb.html#temp_db
- tempstore - tempfiles.html#tempstore
- test coverage - testing.html#coverage
- test harness - testing.html#harnesses
- test suite - testing.html
- testcase macros - testing.html#testcase
- tested - testing.html
- testing - testing.html
- text encoding - fileformat2.html#enc
- TH3 - th3.html
- the - and - operators - json1.html#jptr
- the - operator - json1.html#jptr
- the .fullschema dot-command - cli.html#fullschema
- the amalgamation - amalgamation.html
- the ext3 barrier problem - lockingv3.html#ext3-barrier-problem
- The Fossil NGQP Upgrade Case Study - queryplanner-ng.html#fossilcasestudy
- the json1 extension - json1.html
- the SQLITE_DBPAGE extension - dbpage.html
- the SQLITE_MEMSTAT extension - memstat.html
- the SQLITE_STMT extension - stmt.html
- The Use Of assert In SQLite - assert.html
- the xCachesize page cache method - c3ref/pcache_methods2.html#thexcachesizepagecachemethod
- the xCreate page cache methods - c3ref/pcache_methods2.html#thexcreatepagecachemethods
- the xDestroy page cache method - c3ref/pcache_methods2.html#thexdestroypagecachemethod
- the xFetch page cache methods - c3ref/pcache_methods2.html#thexfetchpagecachemethods
- the xInit page cache method - c3ref/pcache_methods2.html#thexinitpagecachemethod
- the xPagecount page cache methods - c3ref/pcache_methods2.html#thexpagecountpagecachemethods
- the xRekey page cache methods - c3ref/pcache_methods2.html#thexrekeypagecachemethods
- the xShrink page cache method - c3ref/pcache_methods2.html#thexshrinkpagecachemethod
- the xShutdown page cache method - c3ref/pcache_methods2.html#thexshutdownpagecachemethod
- the xUnpin page cache method - c3ref/pcache_methods2.html#thexunpinpagecachemethod
- Things That Can Go Wrong - atomiccommit.html#sect_9_0
- threading mode - threadsafe.html
- threads - pragma.html#pragma_threads
- threads pragma - pragma.html#pragma_threads
- three test harnesses - testing.html#harnesses
- time - lang_datefunc.html#dttm
- time shift modifiers - lang_datefunc.html#tmshf
- time SQL function - lang_datefunc.html#dttm
- time value - lang_datefunc.html#tmval
- time values - lang_datefunc.html#tmval
- time-value - lang_datefunc.html#tmval
- time-values - lang_datefunc.html#tmval
- timediff - lang_datefunc.html#tmdif
- timediff SQL function - lang_datefunc.html#tmdif
- timeout method - tclsqlite.html#timeout
- tokenizer - fts3.html#tokenizer
- torn page - psow.html#tornpage
- total - lang_aggfunc.html#sumunc
- total aggregate function - lang_aggfunc.html#sumunc
- total_changes - lang_corefunc.html#total_changes
- total_changes method - tclsqlite.html#total_changes
- total_changes SQL function - lang_corefunc.html#total_changes
- trace method - tclsqlite.html#trace
- trace_v2 method - tclsqlite.html#trace_v2
- transaction - lang_transaction.html
- transaction method - tclsqlite.html#transaction
- transaction state - c3ref/c_txn_none.html
- transactional - transactional.html
- treats the CROSS JOIN operator specially - lang_select.html#crossjoin
- trigger - lang_createtrigger.html
- triggers - lang_createtrigger.html
- trigram indexes - fts5.html#trigramidx
- trigram tokenizer - fts5.html#trigramidx
- trim - lang_corefunc.html#trim
- trim SQL function - lang_corefunc.html#trim
- trunc - lang_mathfunc.html#trunc
- trunc SQL function - lang_mathfunc.html#trunc
- truncate optimization - lang_delete.html#truncateopt
- trusted_schema - pragma.html#pragma_trusted_schema
- trusted_schema pragma - pragma.html#pragma_trusted_schema
- type affinity - datatype3.html#affinity
- type-name - syntax/type-name.html
- type-name syntax diagram - syntax/type-name.html
- typeof - lang_corefunc.html#typeof
- typeof SQL function - lang_corefunc.html#typeof
- UINT - uintcseq.html
- UINT collating sequence - uintcseq.html
- undefined BEFORE trigger behavior - lang_createtrigger.html#undef_before
- undo/redo - undoredo.html
- undoredo - undoredo.html
- unhex - lang_corefunc.html#unhex
- unhex SQL function - lang_corefunc.html#unhex
- unicode - lang_corefunc.html#unicode
- unicode SQL function - lang_corefunc.html#unicode
- unicode61 - fts3.html#unicode61
- Uniform Resource Identifier - uri.html
- unindexed - fts5.html#the_unindexed_column_option
- UNION virtual table - unionvtab.html
- union-vtab - unionvtab.html
- unionvtab - unionvtab.html
- UNIQUE - lang_createtable.html#uniqueconst
- UNIQUE constraint - lang_createtable.html#uniqueconst
- unique constraint - lang_createtable.html#uniqueconst
- UNIQUE constraints - lang_createtable.html#uniqueconst
- unique index - lang_createindex.html#uniqueidx
- unixepoch - lang_datefunc.html#uepch
- unixepoch function - lang_datefunc.html#uepch
- unixepoch modifier - lang_datefunc.html#jdmod
- unixepoch SQL function - lang_datefunc.html#uepch
- unlikely - lang_corefunc.html#unlikely
- unlikely SQL function - lang_corefunc.html#unlikely
- unlink corruption - howtocorrupt.html#unlink
- unlinked database files - howtocorrupt.html#unlink
- unlock_notify method - tclsqlite.html#unlock_notify
- unprotected sqlite3_value - c3ref/value.html
- unsafe-testing command-line option - cli.html#testing_mode
- untrusted database files - security.html#baddb
- UPDATE - lang_update.html
- UPDATE FROM - lang_update.html#upfrom
- UPDATE trigger - lang_createtrigger.html
- update-stmt - syntax/update-stmt.html
- update-stmt syntax diagram - syntax/update-stmt.html
- update-stmt-limited - syntax/update-stmt-limited.html
- update-stmt-limited syntax diagram - syntax/update-stmt-limited.html
- update_hook method - tclsqlite.html#update_hook
- UPDATEs - lang_update.html
- upluscontrol - optoverview.html#uplus
- upper - lang_corefunc.html#upper
- upper SQL function - lang_corefunc.html#upper
- UPSERT - lang_upsert.html
- upsert - lang_upsert.html
- upsert clause - lang_upsert.html
- UPSERT parsing ambiguity - lang_upsert.html#parseambig
- upsert-clause - syntax/upsert-clause.html
- upsert-clause syntax diagram - syntax/upsert-clause.html
- URI - uri.html
- URI filename - uri.html
- URI filename examples - c3ref/open.html#urifilenameexamples
- URI filenames - uri.html
- URI filenames in sqlite3_open - c3ref/open.html#urifilenamesinsqlite3open
- URI query parameters - uri.html#coreqp
- usable size - fileformat2.html#usable_size
- use of shared cache mode is discouraged - sharedcache.html#dontuse
- user-defined window functions - windowfunctions.html#udfwinfunc
- user_version - pragma.html#pragma_user_version
- user_version pragma - pragma.html#pragma_user_version
- using SQLite for websites - whentouse.html#website
- Using the SQLite Online Backup API - backup.html
- Using the SQLite Unlock Notification Feature - unlock_notify.html
- utc and localtime modifiers - lang_datefunc.html#localtime
- utc modifier - lang_datefunc.html#localtime
- VACUUM - lang_vacuum.html
- vacuum - lang_vacuum.html
- VACUUM INTO - lang_vacuum.html#vacuuminto
- vacuum-stmt - syntax/vacuum-stmt.html
- vacuum-stmt syntax diagram - syntax/vacuum-stmt.html
- value argument - json1.html#varg
- VALUES - lang_select.html#values
- VALUES clause - lang_select.html#values
- variable-length integer - fileformat2.html#varint
- varint - fileformat2.html#varint
- VDBE - opcode.html
- vdbe_addoptrace - pragma.html#pragma_vdbe_addoptrace
- vdbe_addoptrace pragma - pragma.html#pragma_vdbe_addoptrace
- vdbe_debug - pragma.html#pragma_vdbe_debug
- vdbe_debug pragma - pragma.html#pragma_vdbe_debug
- vdbe_listing - pragma.html#pragma_vdbe_listing
- vdbe_listing pragma - pragma.html#pragma_vdbe_listing
- vdbe_trace - pragma.html#pragma_vdbe_trace
- vdbe_trace pragma - pragma.html#pragma_vdbe_trace
- vectors - rowvalue.html
- Version 3.0.0 - releaselog/3_0_0.html
- version 3.0.0 - releaselog/3_0_0.html
- Version 3.0.1 - releaselog/3_0_1.html
- version 3.0.1 - releaselog/3_0_1.html
- Version 3.0.2 - releaselog/3_0_2.html
- version 3.0.2 - releaselog/3_0_2.html
- Version 3.0.3 - releaselog/3_0_3.html
- version 3.0.3 - releaselog/3_0_3.html
- Version 3.0.4 - releaselog/3_0_4.html
- version 3.0.4 - releaselog/3_0_4.html
- Version 3.0.5 - releaselog/3_0_5.html
- version 3.0.5 - releaselog/3_0_5.html
- Version 3.0.6 - releaselog/3_0_6.html
- version 3.0.6 - releaselog/3_0_6.html
- Version 3.0.7 - releaselog/3_0_7.html
- version 3.0.7 - releaselog/3_0_7.html
- Version 3.0.8 - releaselog/3_0_8.html
- version 3.0.8 - releaselog/3_0_8.html
- Version 3.1.0 - releaselog/3_1_0.html
- version 3.1.0 - releaselog/3_1_0.html
- Version 3.1.1 - releaselog/3_1_1.html
- version 3.1.1 - releaselog/3_1_1.html
- Version 3.1.2 - releaselog/3_1_2.html
- version 3.1.2 - releaselog/3_1_2.html
- Version 3.1.3 - releaselog/3_1_3.html
- version 3.1.3 - releaselog/3_1_3.html
- Version 3.1.4 - releaselog/3_1_4.html
- version 3.1.4 - releaselog/3_1_4.html
- Version 3.1.5 - releaselog/3_1_5.html
- version 3.1.5 - releaselog/3_1_5.html
- Version 3.1.6 - releaselog/3_1_6.html
- version 3.1.6 - releaselog/3_1_6.html
- Version 3.2.0 - releaselog/3_2_0.html
- version 3.2.0 - releaselog/3_2_0.html
- Version 3.2.1 - releaselog/3_2_1.html
- version 3.2.1 - releaselog/3_2_1.html
- Version 3.2.2 - releaselog/3_2_2.html
- version 3.2.2 - releaselog/3_2_2.html
- Version 3.2.3 - releaselog/3_2_3.html
- version 3.2.3 - releaselog/3_2_3.html
- Version 3.2.4 - releaselog/3_2_4.html
- version 3.2.4 - releaselog/3_2_4.html
- Version 3.2.5 - releaselog/3_2_5.html
- version 3.2.5 - releaselog/3_2_5.html
- Version 3.2.6 - releaselog/3_2_6.html
- version 3.2.6 - releaselog/3_2_6.html
- Version 3.2.7 - releaselog/3_2_7.html
- version 3.2.7 - releaselog/3_2_7.html
- Version 3.2.8 - releaselog/3_2_8.html
- version 3.2.8 - releaselog/3_2_8.html
- Version 3.3.0 - releaselog/3_3_0.html
- version 3.3.0 - releaselog/3_3_0.html
- Version 3.3.0.0 - releaselog/3_3_0.html
- version 3.3.0.0 - releaselog/3_3_0.html
- Version 3.3.1 - releaselog/3_3_1.html
- version 3.3.1 - releaselog/3_3_1.html
- Version 3.3.1.0 - releaselog/3_3_1.html
- version 3.3.1.0 - releaselog/3_3_1.html
- Version 3.3.2 - releaselog/3_3_2.html
- version 3.3.2 - releaselog/3_3_2.html
- Version 3.3.2.0 - releaselog/3_3_2.html
- version 3.3.2.0 - releaselog/3_3_2.html
- Version 3.3.3 - releaselog/3_3_3.html
- version 3.3.3 - releaselog/3_3_3.html
- Version 3.3.3.0 - releaselog/3_3_3.html
- version 3.3.3.0 - releaselog/3_3_3.html
- Version 3.3.4 - releaselog/3_3_4.html
- version 3.3.4 - releaselog/3_3_4.html
- Version 3.3.4.0 - releaselog/3_3_4.html
- version 3.3.4.0 - releaselog/3_3_4.html
- Version 3.3.5 - releaselog/3_3_5.html
- version 3.3.5 - releaselog/3_3_5.html
- Version 3.3.5.0 - releaselog/3_3_5.html
- version 3.3.5.0 - releaselog/3_3_5.html
- Version 3.3.6 - releaselog/3_3_6.html
- version 3.3.6 - releaselog/3_3_6.html
- Version 3.3.6.0 - releaselog/3_3_6.html
- version 3.3.6.0 - releaselog/3_3_6.html
- Version 3.3.7 - releaselog/3_3_7.html
- version 3.3.7 - releaselog/3_3_7.html
- Version 3.3.7.0 - releaselog/3_3_7.html
- version 3.3.7.0 - releaselog/3_3_7.html
- Version 3.3.8 - releaselog/3_3_8.html
- version 3.3.8 - releaselog/3_3_8.html
- Version 3.3.8.0 - releaselog/3_3_8.html
- version 3.3.8.0 - releaselog/3_3_8.html
- Version 3.3.9 - releaselog/3_3_9.html
- version 3.3.9 - releaselog/3_3_9.html
- Version 3.3.9.0 - releaselog/3_3_9.html
- version 3.3.9.0 - releaselog/3_3_9.html
- Version 3.3.10 - releaselog/3_3_10.html
- version 3.3.10 - releaselog/3_3_10.html
- Version 3.3.10.0 - releaselog/3_3_10.html
- version 3.3.10.0 - releaselog/3_3_10.html
- Version 3.3.11 - releaselog/3_3_11.html
- version 3.3.11 - releaselog/3_3_11.html
- Version 3.3.11.0 - releaselog/3_3_11.html
- version 3.3.11.0 - releaselog/3_3_11.html
- Version 3.3.12 - releaselog/3_3_12.html
- version 3.3.12 - releaselog/3_3_12.html
- Version 3.3.12.0 - releaselog/3_3_12.html
- version 3.3.12.0 - releaselog/3_3_12.html
- Version 3.3.13 - releaselog/3_3_13.html
- version 3.3.13 - releaselog/3_3_13.html
- Version 3.3.13.0 - releaselog/3_3_13.html
- version 3.3.13.0 - releaselog/3_3_13.html
- Version 3.3.14 - releaselog/3_3_14.html
- version 3.3.14 - releaselog/3_3_14.html
- Version 3.3.14.0 - releaselog/3_3_14.html
- version 3.3.14.0 - releaselog/3_3_14.html
- Version 3.3.15 - releaselog/3_3_15.html
- version 3.3.15 - releaselog/3_3_15.html
- Version 3.3.15.0 - releaselog/3_3_15.html
- version 3.3.15.0 - releaselog/3_3_15.html
- Version 3.3.16 - releaselog/3_3_16.html
- version 3.3.16 - releaselog/3_3_16.html
- Version 3.3.16.0 - releaselog/3_3_16.html
- version 3.3.16.0 - releaselog/3_3_16.html
- Version 3.3.17 - releaselog/3_3_17.html
- version 3.3.17 - releaselog/3_3_17.html
- Version 3.3.17.0 - releaselog/3_3_17.html
- version 3.3.17.0 - releaselog/3_3_17.html
- Version 3.4.0 - releaselog/3_4_0.html
- version 3.4.0 - releaselog/3_4_0.html
- Version 3.4.1 - releaselog/3_4_1.html
- version 3.4.1 - releaselog/3_4_1.html
- Version 3.4.2 - releaselog/3_4_2.html
- version 3.4.2 - releaselog/3_4_2.html
- Version 3.5.0 - releaselog/3_5_0.html
- version 3.5.0 - releaselog/3_5_0.html
- Version 3.5.1 - releaselog/3_5_1.html
- version 3.5.1 - releaselog/3_5_1.html
- Version 3.5.2 - releaselog/3_5_2.html
- version 3.5.2 - releaselog/3_5_2.html
- Version 3.5.3 - releaselog/3_5_3.html
- version 3.5.3 - releaselog/3_5_3.html
- Version 3.5.4 - releaselog/3_5_4.html
- version 3.5.4 - releaselog/3_5_4.html
- Version 3.5.5 - releaselog/3_5_5.html
- version 3.5.5 - releaselog/3_5_5.html
- Version 3.5.6 - releaselog/3_5_6.html
- version 3.5.6 - releaselog/3_5_6.html
- Version 3.5.7 - releaselog/3_5_7.html
- version 3.5.7 - releaselog/3_5_7.html
- Version 3.5.8 - releaselog/3_5_8.html
- version 3.5.8 - releaselog/3_5_8.html
- Version 3.5.9 - releaselog/3_5_9.html
- version 3.5.9 - releaselog/3_5_9.html
- Version 3.6.0 - releaselog/3_6_0.html
- version 3.6.0 - releaselog/3_6_0.html
- Version 3.6.1 - releaselog/3_6_1.html
- version 3.6.1 - releaselog/3_6_1.html
- Version 3.6.2 - releaselog/3_6_2.html
- version 3.6.2 - releaselog/3_6_2.html
- Version 3.6.3 - releaselog/3_6_3.html
- version 3.6.3 - releaselog/3_6_3.html
- Version 3.6.4 - releaselog/3_6_4.html
- version 3.6.4 - releaselog/3_6_4.html
- Version 3.6.5 - releaselog/3_6_5.html
- version 3.6.5 - releaselog/3_6_5.html
- Version 3.6.6 - releaselog/3_6_6.html
- version 3.6.6 - releaselog/3_6_6.html
- Version 3.6.6.1 - releaselog/3_6_6_1.html
- version 3.6.6.1 - releaselog/3_6_6_1.html
- Version 3.6.6.2 - releaselog/3_6_6_2.html
- version 3.6.6.2 - releaselog/3_6_6_2.html
- Version 3.6.7 - releaselog/3_6_7.html
- version 3.6.7 - releaselog/3_6_7.html
- Version 3.6.8 - releaselog/3_6_8.html
- version 3.6.8 - releaselog/3_6_8.html
- Version 3.6.9 - releaselog/3_6_9.html
- version 3.6.9 - releaselog/3_6_9.html
- Version 3.6.10 - releaselog/3_6_10.html
- version 3.6.10 - releaselog/3_6_10.html
- Version 3.6.11 - releaselog/3_6_11.html
- version 3.6.11 - releaselog/3_6_11.html
- Version 3.6.12 - releaselog/3_6_12.html
- version 3.6.12 - releaselog/3_6_12.html
- Version 3.6.13 - releaselog/3_6_13.html
- version 3.6.13 - releaselog/3_6_13.html
- Version 3.6.14 - releaselog/3_6_14.html
- version 3.6.14 - releaselog/3_6_14.html
- Version 3.6.14.1 - releaselog/3_6_14_1.html
- version 3.6.14.1 - releaselog/3_6_14_1.html
- Version 3.6.14.2 - releaselog/3_6_14_2.html
- version 3.6.14.2 - releaselog/3_6_14_2.html
- Version 3.6.15 - releaselog/3_6_15.html
- version 3.6.15 - releaselog/3_6_15.html
- Version 3.6.16 - releaselog/3_6_16.html
- version 3.6.16 - releaselog/3_6_16.html
- Version 3.6.16.1 - releaselog/3_6_16_1.html
- version 3.6.16.1 - releaselog/3_6_16_1.html
- Version 3.6.17 - releaselog/3_6_17.html
- version 3.6.17 - releaselog/3_6_17.html
- Version 3.6.18 - releaselog/3_6_18.html
- version 3.6.18 - releaselog/3_6_18.html
- Version 3.6.19 - releaselog/3_6_19.html
- version 3.6.19 - releaselog/3_6_19.html
- Version 3.6.20 - releaselog/3_6_20.html
- version 3.6.20 - releaselog/3_6_20.html
- Version 3.6.21 - releaselog/3_6_21.html
- version 3.6.21 - releaselog/3_6_21.html
- Version 3.6.22 - releaselog/3_6_22.html
- version 3.6.22 - releaselog/3_6_22.html
- Version 3.6.23 - releaselog/3_6_23.html
- version 3.6.23 - releaselog/3_6_23.html
- Version 3.6.23.1 - releaselog/3_6_23_1.html
- version 3.6.23.1 - releaselog/3_6_23_1.html
- Version 3.6.23.1.0 - releaselog/3_6_23_1.html
- version 3.6.23.1.0 - releaselog/3_6_23_1.html
- Version 3.7.0 - releaselog/3_7_0.html
- version 3.7.0 - releaselog/3_7_0.html
- Version 3.7.0.1 - releaselog/3_7_0_1.html
- version 3.7.0.1 - releaselog/3_7_0_1.html
- Version 3.7.1 - releaselog/3_7_1.html
- version 3.7.1 - releaselog/3_7_1.html
- Version 3.7.2 - releaselog/3_7_2.html
- version 3.7.2 - releaselog/3_7_2.html
- Version 3.7.3 - releaselog/3_7_3.html
- version 3.7.3 - releaselog/3_7_3.html
- Version 3.7.4 - releaselog/3_7_4.html
- version 3.7.4 - releaselog/3_7_4.html
- Version 3.7.5 - releaselog/3_7_5.html
- version 3.7.5 - releaselog/3_7_5.html
- Version 3.7.6 - releaselog/3_7_6.html
- version 3.7.6 - releaselog/3_7_6.html
- Version 3.7.6.1 - releaselog/3_7_6_1.html
- version 3.7.6.1 - releaselog/3_7_6_1.html
- Version 3.7.6.2 - releaselog/3_7_6_2.html
- version 3.7.6.2 - releaselog/3_7_6_2.html
- Version 3.7.6.3 - releaselog/3_7_6_3.html
- version 3.7.6.3 - releaselog/3_7_6_3.html
- Version 3.7.7 - releaselog/3_7_7.html
- version 3.7.7 - releaselog/3_7_7.html
- Version 3.7.7.1 - releaselog/3_7_7_1.html
- version 3.7.7.1 - releaselog/3_7_7_1.html
- Version 3.7.8 - releaselog/3_7_8.html
- version 3.7.8 - releaselog/3_7_8.html
- Version 3.7.9 - releaselog/3_7_9.html
- version 3.7.9 - releaselog/3_7_9.html
- Version 3.7.10 - releaselog/3_7_10.html
- version 3.7.10 - releaselog/3_7_10.html
- Version 3.7.11 - releaselog/3_7_11.html
- version 3.7.11 - releaselog/3_7_11.html
- Version 3.7.12 - releaselog/3_7_12.html
- version 3.7.12 - releaselog/3_7_12.html
- Version 3.7.12.1 - releaselog/3_7_12_1.html
- version 3.7.12.1 - releaselog/3_7_12_1.html
- Version 3.7.13 - releaselog/3_7_13.html
- version 3.7.13 - releaselog/3_7_13.html
- Version 3.7.14 - releaselog/3_7_14.html
- version 3.7.14 - releaselog/3_7_14.html
- Version 3.7.14.1 - releaselog/3_7_14_1.html
- version 3.7.14.1 - releaselog/3_7_14_1.html
- Version 3.7.15 - releaselog/3_7_15.html
- version 3.7.15 - releaselog/3_7_15.html
- Version 3.7.15.1 - releaselog/3_7_15_1.html
- version 3.7.15.1 - releaselog/3_7_15_1.html
- Version 3.7.15.2 - releaselog/3_7_15_2.html
- version 3.7.15.2 - releaselog/3_7_15_2.html
- Version 3.7.16 - releaselog/3_7_16.html
- version 3.7.16 - releaselog/3_7_16.html
- Version 3.7.16.1 - releaselog/3_7_16_1.html
- version 3.7.16.1 - releaselog/3_7_16_1.html
- Version 3.7.16.2 - releaselog/3_7_16_2.html
- version 3.7.16.2 - releaselog/3_7_16_2.html
- Version 3.7.17 - releaselog/3_7_17.html
- version 3.7.17 - releaselog/3_7_17.html
- Version 3.8.0 - releaselog/3_8_0.html
- version 3.8.0 - releaselog/3_8_0.html
- Version 3.8.0.1 - releaselog/3_8_0_1.html
- version 3.8.0.1 - releaselog/3_8_0_1.html
- Version 3.8.0.2 - releaselog/3_8_0_2.html
- version 3.8.0.2 - releaselog/3_8_0_2.html
- Version 3.8.1 - releaselog/3_8_1.html
- version 3.8.1 - releaselog/3_8_1.html
- Version 3.8.2 - releaselog/3_8_2.html
- version 3.8.2 - releaselog/3_8_2.html
- Version 3.8.3 - releaselog/3_8_3.html
- version 3.8.3 - releaselog/3_8_3.html
- Version 3.8.3.1 - releaselog/3_8_3_1.html
- version 3.8.3.1 - releaselog/3_8_3_1.html
- Version 3.8.3.1.0 - releaselog/3_8_3_1.html
- version 3.8.3.1.0 - releaselog/3_8_3_1.html
- Version 3.8.4 - releaselog/3_8_4.html
- version 3.8.4 - releaselog/3_8_4.html
- Version 3.8.4.1 - releaselog/3_8_4_1.html
- version 3.8.4.1 - releaselog/3_8_4_1.html
- Version 3.8.4.2 - releaselog/3_8_4_2.html
- version 3.8.4.2 - releaselog/3_8_4_2.html
- Version 3.8.4.3 - releaselog/3_8_4_3.html
- version 3.8.4.3 - releaselog/3_8_4_3.html
- Version 3.8.5 - releaselog/3_8_5.html
- version 3.8.5 - releaselog/3_8_5.html
- Version 3.8.6 - releaselog/3_8_6.html
- version 3.8.6 - releaselog/3_8_6.html
- Version 3.8.7 - releaselog/3_8_7.html
- version 3.8.7 - releaselog/3_8_7.html
- Version 3.8.7.1 - releaselog/3_8_7_1.html
- version 3.8.7.1 - releaselog/3_8_7_1.html
- Version 3.8.7.2 - releaselog/3_8_7_2.html
- version 3.8.7.2 - releaselog/3_8_7_2.html
- Version 3.8.7.3 - releaselog/3_8_7_3.html
- version 3.8.7.3 - releaselog/3_8_7_3.html
- Version 3.8.7.4 - releaselog/3_8_7_4.html
- version 3.8.7.4 - releaselog/3_8_7_4.html
- Version 3.8.8 - releaselog/3_8_8.html
- version 3.8.8 - releaselog/3_8_8.html
- Version 3.8.8.1 - releaselog/3_8_8_1.html
- version 3.8.8.1 - releaselog/3_8_8_1.html
- Version 3.8.8.2 - releaselog/3_8_8_2.html
- version 3.8.8.2 - releaselog/3_8_8_2.html
- Version 3.8.8.3 - releaselog/3_8_8_3.html
- version 3.8.8.3 - releaselog/3_8_8_3.html
- Version 3.8.9 - releaselog/3_8_9.html
- version 3.8.9 - releaselog/3_8_9.html
- Version 3.8.10 - releaselog/3_8_10.html
- version 3.8.10 - releaselog/3_8_10.html
- Version 3.8.10.1 - releaselog/3_8_10_1.html
- version 3.8.10.1 - releaselog/3_8_10_1.html
- Version 3.8.10.2 - releaselog/3_8_10_2.html
- version 3.8.10.2 - releaselog/3_8_10_2.html
- Version 3.8.11 - releaselog/3_8_11.html
- version 3.8.11 - releaselog/3_8_11.html
- Version 3.8.11.1 - releaselog/3_8_11_1.html
- version 3.8.11.1 - releaselog/3_8_11_1.html
- Version 3.9.0 - releaselog/3_9_0.html
- version 3.9.0 - releaselog/3_9_0.html
- Version 3.9.1 - releaselog/3_9_1.html
- version 3.9.1 - releaselog/3_9_1.html
- Version 3.9.2 - releaselog/3_9_2.html
- version 3.9.2 - releaselog/3_9_2.html
- Version 3.9.3 - releaselog/3_9_3.html
- version 3.9.3 - releaselog/3_9_3.html
- Version 3.10.0 - releaselog/3_10_0.html
- version 3.10.0 - releaselog/3_10_0.html
- Version 3.10.1 - releaselog/3_10_1.html
- version 3.10.1 - releaselog/3_10_1.html
- Version 3.10.2 - releaselog/3_10_2.html
- version 3.10.2 - releaselog/3_10_2.html
- Version 3.11.0 - releaselog/3_11_0.html
- version 3.11.0 - releaselog/3_11_0.html
- Version 3.11.1 - releaselog/3_11_1.html
- version 3.11.1 - releaselog/3_11_1.html
- Version 3.12.0 - releaselog/3_12_0.html
- version 3.12.0 - releaselog/3_12_0.html
- version 3.12.0 page size change - pgszchng2016.html
- Version 3.12.1 - releaselog/3_12_1.html
- version 3.12.1 - releaselog/3_12_1.html
- Version 3.12.2 - releaselog/3_12_2.html
- version 3.12.2 - releaselog/3_12_2.html
- Version 3.13.0 - releaselog/3_13_0.html
- version 3.13.0 - releaselog/3_13_0.html
- Version 3.13.0.0 - releaselog/3_13_0.html
- version 3.13.0.0 - releaselog/3_13_0.html
- Version 3.14 - releaselog/3_14.html
- version 3.14 - releaselog/3_14.html
- Version 3.14.0 - releaselog/3_14.html
- version 3.14.0 - releaselog/3_14.html
- Version 3.14.1 - releaselog/3_14_1.html
- version 3.14.1 - releaselog/3_14_1.html
- Version 3.14.2 - releaselog/3_14_2.html
- version 3.14.2 - releaselog/3_14_2.html
- Version 3.15.0 - releaselog/3_15_0.html
- version 3.15.0 - releaselog/3_15_0.html
- Version 3.15.1 - releaselog/3_15_1.html
- version 3.15.1 - releaselog/3_15_1.html
- Version 3.15.2 - releaselog/3_15_2.html
- version 3.15.2 - releaselog/3_15_2.html
- Version 3.16.0 - releaselog/3_16_0.html
- version 3.16.0 - releaselog/3_16_0.html
- Version 3.16.1 - releaselog/3_16_1.html
- version 3.16.1 - releaselog/3_16_1.html
- Version 3.16.2 - releaselog/3_16_2.html
- version 3.16.2 - releaselog/3_16_2.html
- Version 3.17.0 - releaselog/3_17_0.html
- version 3.17.0 - releaselog/3_17_0.html
- Version 3.18.0 - releaselog/3_18_0.html
- version 3.18.0 - releaselog/3_18_0.html
- Version 3.18.1 - releaselog/3_18_1.html
- version 3.18.1 - releaselog/3_18_1.html
- Version 3.18.2 - releaselog/3_18_2.html
- version 3.18.2 - releaselog/3_18_2.html
- Version 3.19.0 - releaselog/3_19_0.html
- version 3.19.0 - releaselog/3_19_0.html
- Version 3.19.1 - releaselog/3_19_1.html
- version 3.19.1 - releaselog/3_19_1.html
- Version 3.19.2 - releaselog/3_19_2.html
- version 3.19.2 - releaselog/3_19_2.html
- Version 3.19.3 - releaselog/3_19_3.html
- version 3.19.3 - releaselog/3_19_3.html
- Version 3.20.0 - releaselog/3_20_0.html
- version 3.20.0 - releaselog/3_20_0.html
- Version 3.20.1 - releaselog/3_20_1.html
- version 3.20.1 - releaselog/3_20_1.html
- Version 3.21.0 - releaselog/3_21_0.html
- version 3.21.0 - releaselog/3_21_0.html
- Version 3.22.0 - releaselog/3_22_0.html
- version 3.22.0 - releaselog/3_22_0.html
- Version 3.23.0 - releaselog/3_23_0.html
- version 3.23.0 - releaselog/3_23_0.html
- Version 3.23.0.0 - releaselog/3_23_0.html
- version 3.23.0.0 - releaselog/3_23_0.html
- Version 3.23.1 - releaselog/3_23_1.html
- version 3.23.1 - releaselog/3_23_1.html
- Version 3.23.1.0 - releaselog/3_23_1.html
- version 3.23.1.0 - releaselog/3_23_1.html
- Version 3.24.0 - releaselog/3_24_0.html
- version 3.24.0 - releaselog/3_24_0.html
- Version 3.25.0 - releaselog/3_25_0.html
- version 3.25.0 - releaselog/3_25_0.html
- Version 3.25.1 - releaselog/3_25_1.html
- version 3.25.1 - releaselog/3_25_1.html
- Version 3.25.2 - releaselog/3_25_2.html
- version 3.25.2 - releaselog/3_25_2.html
- Version 3.25.3 - releaselog/3_25_3.html
- version 3.25.3 - releaselog/3_25_3.html
- Version 3.26.0 - releaselog/3_26_0.html
- version 3.26.0 - releaselog/3_26_0.html
- Version 3.27.0 - releaselog/3_27_0.html
- version 3.27.0 - releaselog/3_27_0.html
- Version 3.27.1 - releaselog/3_27_1.html
- version 3.27.1 - releaselog/3_27_1.html
- Version 3.27.2 - releaselog/3_27_2.html
- version 3.27.2 - releaselog/3_27_2.html
- Version 3.28.0 - releaselog/3_28_0.html
- version 3.28.0 - releaselog/3_28_0.html
- Version 3.29.0 - releaselog/3_29_0.html
- version 3.29.0 - releaselog/3_29_0.html
- Version 3.30.0 - releaselog/3_30_0.html
- version 3.30.0 - releaselog/3_30_0.html
- Version 3.30.1 - releaselog/3_30_1.html
- version 3.30.1 - releaselog/3_30_1.html
- Version 3.31.0 - releaselog/3_31_0.html
- version 3.31.0 - releaselog/3_31_0.html
- Version 3.31.1 - releaselog/3_31_1.html
- version 3.31.1 - releaselog/3_31_1.html
- Version 3.32.0 - releaselog/3_32_0.html
- version 3.32.0 - releaselog/3_32_0.html
- Version 3.32.1 - releaselog/3_32_1.html
- version 3.32.1 - releaselog/3_32_1.html
- Version 3.32.2 - releaselog/3_32_2.html
- version 3.32.2 - releaselog/3_32_2.html
- Version 3.32.3 - releaselog/3_32_3.html
- version 3.32.3 - releaselog/3_32_3.html
- Version 3.33.0 - releaselog/3_33_0.html
- version 3.33.0 - releaselog/3_33_0.html
- Version 3.33.0.0 - releaselog/3_33_0.html
- version 3.33.0.0 - releaselog/3_33_0.html
- Version 3.34.0 - releaselog/3_34_0.html
- version 3.34.0 - releaselog/3_34_0.html
- Version 3.34.1 - releaselog/3_34_1.html
- version 3.34.1 - releaselog/3_34_1.html
- Version 3.35.0 - releaselog/3_35_0.html
- version 3.35.0 - releaselog/3_35_0.html
- Version 3.35.1 - releaselog/3_35_1.html
- version 3.35.1 - releaselog/3_35_1.html
- Version 3.35.2 - releaselog/3_35_2.html
- version 3.35.2 - releaselog/3_35_2.html
- Version 3.35.3 - releaselog/3_35_3.html
- version 3.35.3 - releaselog/3_35_3.html
- Version 3.35.4 - releaselog/3_35_4.html
- version 3.35.4 - releaselog/3_35_4.html
- Version 3.35.5 - releaselog/3_35_5.html
- version 3.35.5 - releaselog/3_35_5.html
- Version 3.36.0 - releaselog/3_36_0.html
- version 3.36.0 - releaselog/3_36_0.html
- Version 3.37.0 - releaselog/3_37_0.html
- version 3.37.0 - releaselog/3_37_0.html
- Version 3.37.1 - releaselog/3_37_1.html
- version 3.37.1 - releaselog/3_37_1.html
- Version 3.37.2 - releaselog/3_37_2.html
- version 3.37.2 - releaselog/3_37_2.html
- Version 3.38.0 - releaselog/3_38_0.html
- version 3.38.0 - releaselog/3_38_0.html
- Version 3.38.1 - releaselog/3_38_1.html
- version 3.38.1 - releaselog/3_38_1.html
- Version 3.38.2 - releaselog/3_38_2.html
- version 3.38.2 - releaselog/3_38_2.html
- Version 3.38.3 - releaselog/3_38_3.html
- version 3.38.3 - releaselog/3_38_3.html
- Version 3.38.4 - releaselog/3_38_4.html
- version 3.38.4 - releaselog/3_38_4.html
- Version 3.38.5 - releaselog/3_38_5.html
- version 3.38.5 - releaselog/3_38_5.html
- Version 3.39.0 - releaselog/3_39_0.html
- version 3.39.0 - releaselog/3_39_0.html
- Version 3.39.1 - releaselog/3_39_1.html
- version 3.39.1 - releaselog/3_39_1.html
- Version 3.39.2 - releaselog/3_39_2.html
- version 3.39.2 - releaselog/3_39_2.html
- Version 3.39.3 - releaselog/3_39_3.html
- version 3.39.3 - releaselog/3_39_3.html
- Version 3.39.4 - releaselog/3_39_4.html
- version 3.39.4 - releaselog/3_39_4.html
- Version 3.40.0 - releaselog/3_40_0.html
- version 3.40.0 - releaselog/3_40_0.html
- Version 3.40.1 - releaselog/3_40_1.html
- version 3.40.1 - releaselog/3_40_1.html
- Version 3.41.0 - releaselog/3_41_0.html
- version 3.41.0 - releaselog/3_41_0.html
- Version 3.41.1 - releaselog/3_41_1.html
- version 3.41.1 - releaselog/3_41_1.html
- Version 3.41.2 - releaselog/3_41_2.html
- version 3.41.2 - releaselog/3_41_2.html
- Version 3.42.0 - releaselog/3_42_0.html
- version 3.42.0 - releaselog/3_42_0.html
- Version 3.43.0 - releaselog/3_43_0.html
- version 3.43.0 - releaselog/3_43_0.html
- Version 3.43.0.0 - releaselog/3_43_0.html
- version 3.43.0.0 - releaselog/3_43_0.html
- Version 3.43.1 - releaselog/3_43_1.html
- version 3.43.1 - releaselog/3_43_1.html
- Version 3.43.1.0 - releaselog/3_43_1.html
- version 3.43.1.0 - releaselog/3_43_1.html
- Version 3.43.2 - releaselog/3_43_2.html
- version 3.43.2 - releaselog/3_43_2.html
- Version 3.43.2.0 - releaselog/3_43_2.html
- version 3.43.2.0 - releaselog/3_43_2.html
- Version 3.44.0 - releaselog/3_44_0.html
- version 3.44.0 - releaselog/3_44_0.html
- Version 3.44.1 - releaselog/3_44_1.html
- version 3.44.1 - releaselog/3_44_1.html
- Version 3.44.2 - releaselog/3_44_2.html
- version 3.44.2 - releaselog/3_44_2.html
- Version 3.45.0 - releaselog/3_45_0.html
- version 3.45.0 - releaselog/3_45_0.html
- Version 3.45.1 - releaselog/3_45_1.html
- version 3.45.1 - releaselog/3_45_1.html
- Version 3.45.2 - releaselog/3_45_2.html
- version 3.45.2 - releaselog/3_45_2.html
- Version 3.45.3 - releaselog/3_45_3.html
- version 3.45.3 - releaselog/3_45_3.html
- Version 3.46.0 - releaselog/3_46_0.html
- version 3.46.0 - releaselog/3_46_0.html
- version method - tclsqlite.html#version
- version numbering conventions - versionnumbers.html
- version-valid-for number - fileformat2.html#validfor
- VFS - vfs.html
- vfs query parameter - uri.html#urivfs
- VFS shim - vfs.html#shim
- VFS shims - vfs.html#shim
- VFSes - vfs.html
- VIEW - lang_createview.html
- view - lang_createview.html
- views - lang_createview.html
- virtual machine - opcode.html
- virtual machine instructions - opcode.html
- virtual table - vtab.html
- virtual table configuration option - c3ref/c_vtab_constraint_support.html
- virtual table configuration options - c3ref/c_vtab_constraint_support.html
- virtual table cursor - c3ref/vtab_cursor.html
- virtual table list - vtablist.html
- virtual table module - c3ref/module.html
- virtual tables - vtab.html
- vulnerabilities - cves.html
- w - printf.html#percentw
- WAL - wal.html
- WAL backwards compatibility - wal.html#bkwrds
- WAL checksum algorithm - fileformat2.html#walcksm
- WAL concurrency - wal.html#concurrency
- WAL file - wal.html#walfile
- WAL file format - fileformat2.html#walformat
- WAL format - fileformat2.html#walformat
- WAL mode - wal.html
- WAL read algorithm - fileformat2.html#walread
- WAL reset - fileformat2.html#walreset
- WAL without shared memory - wal.html#noshm
- wal-index - walformat.html#shm
- WAL-index File Format - walformat.html#walidxfmt
- WAL-index format - walformat.html#walidxfmt
- WAL-mode crash recovery - walformat.html#recovery
- WAL-mode File Format - walformat.html
- WAL-mode locks - walformat.html#locks
- WAL-mode read blocking - wal.html#busy
- wal_autocheckpoint - pragma.html#pragma_wal_autocheckpoint
- wal_autocheckpoint pragma - pragma.html#pragma_wal_autocheckpoint
- wal_checkpoint - pragma.html#pragma_wal_checkpoint
- wal_checkpoint pragma - pragma.html#pragma_wal_checkpoint
- wal_hook method - tclsqlite.html#wal_hook
- Warranty of Title - copyright.html#warrantyoftitle
- What If OpenOffice Used SQLite - affcase1.html
- when to use WITHOUT ROWID - withoutrowid.html#wtu
- WHERE clause - lang_select.html#whereclause
- WHERE-clause push-down optimization - optoverview.html#pushdown
- why ALTER TABLE is so difficult - lang_altertable.html#altertableishard
- Why SQLite Uses Bytecode - whybytecode.html
- Win32 native memory allocator - malloc.html#win32heap
- window chaining - windowfunctions.html#wchaining
- window function - windowfunctions.html
- Window functions - windowfunctions.html
- window functions - windowfunctions.html
- window-defn - syntax/window-defn.html
- window-defn syntax diagram - syntax/window-defn.html
- window-function-invocation - syntax/window-function-invocation.html
- window-function-invocation syntax diagram - syntax/window-function-invocation.html
- winfunc - windowfunctions.html
- WITH - lang_with.html
- with - lang_with.html
- WITH clause - lang_with.html
- with-clause - syntax/with-clause.html
- with-clause syntax diagram - syntax/with-clause.html
- WITHOUT ROWID - withoutrowid.html
- WITHOUT rowid - withoutrowid.html
- WITHOUT ROWID virtual table - vtab.html#worid
- WITHOUT ROWID virtual tables - vtab.html#worid
- wrapping text - cli.html#wrap1
- writable_schema - pragma.html#pragma_writable_schema
- writable_schema pragma - pragma.html#pragma_writable_schema
- write-ahead log - wal.html
- writer starvation - lockingv3.html#writer_starvation
- xBegin - vtab.html#xBegin
- xBestIndex - vtab.html#xbestindex
- xColumn - vtab.html#xcolumn
- xCommit - vtab.html#xcommit
- xConnect - vtab.html#xconnect
- xCreate - vtab.html#xcreate
- xDestroy - vtab.html#sqlite3_module.xDestroy
- xDisconnect - vtab.html#xdisconnect
- xEof - vtab.html#xeof
- xFilter - vtab.html#xfilter
- xFindFunction - vtab.html#xfindfunction
- xIntegrity - vtab.html#xintegrity
- xIntegrity method - vtab.html#xintegrity
- xNext - vtab.html#xnext
- xQueryFunc RTree callback - rtree.html#xquery
- xRelease - vtab.html#xsavepoint
- xRename - vtab.html#xrename
- xRollback - vtab.html#xrollback
- xRollbackTo - vtab.html#xsavepoint
- xRowid - vtab.html#xrowid
- xSavepoint - vtab.html#xsavepoint
- xShadowName - vtab.html#xshadowname
- xUpdate - vtab.html#xupdate
- YYSTACKDEPTH - compile.html#yystackdepth
- YYTRACKMAXSTACKDEPTH - compile.html#yytrackmaxstackdepth
- z - printf.html#percentz
- zero-configuration - zeroconf.html
- zero-malloc memory allocator - malloc.html#memsys5
- zeroblob - lang_corefunc.html#zeroblob
- zeroblob SQL function - lang_corefunc.html#zeroblob
- ZIP file as database - cli.html#zipdb
- zipfile - zipfile.html
- Zipfile virtual table - zipfile.html
This page last modified on 2023-03-31 19:57:15 UTC
diff --git a/www/doc_pagelink_crossref.html b/www/doc_pagelink_crossref.html index cb003a0..3208c37 100644 --- a/www/doc_pagelink_crossref.html +++ b/www/doc_pagelink_crossref.html @@ -376,7 +376,7 @@ antiRobotDefense();- c3ref/int64.html → c3ref/c_config_covering_index_scan.html c3ref/c_fcntl_begin_atomic_write.html c3ref/c_scanstat_est.html c3ref/objlist.html capi3ref.html keyword_index.html windowfunctions.html
- c3ref/interrupt.html → -arch.html c3ref/funclist.html c3ref/sqlite3.html capi3ref.html keyword_index.html pragma.html rescode.html security.html tclsqlite.html
+arch.html c3ref/funclist.html c3ref/sqlite3.html capi3ref.html keyword_index.html rescode.html security.html tclsqlite.html- c3ref/intro.html → about.html arch.html c3ref/aggregate_context.html c3ref/aggregate_count.html c3ref/api_routines.html c3ref/auto_extension.html c3ref/autovacuum_pages.html c3ref/backup.html c3ref/backup_finish.html c3ref/bind_blob.html c3ref/bind_parameter_count.html c3ref/bind_parameter_index.html c3ref/bind_parameter_name.html c3ref/blob.html c3ref/blob_bytes.html c3ref/blob_close.html c3ref/blob_open.html c3ref/blob_read.html c3ref/blob_reopen.html c3ref/blob_write.html c3ref/busy_handler.html c3ref/busy_timeout.html c3ref/c_abort.html c3ref/c_abort_rollback.html c3ref/c_access_exists.html c3ref/c_alter_table.html c3ref/c_any.html c3ref/c_blob.html c3ref/c_checkpoint_full.html c3ref/c_config_covering_index_scan.html c3ref/c_dbconfig_defensive.html c3ref/c_dbstatus_options.html c3ref/c_deny.html c3ref/c_deserialize_freeonclose.html c3ref/c_deterministic.html c3ref/c_fail.html c3ref/c_fcntl_begin_atomic_write.html c3ref/c_index_constraint_eq.html c3ref/c_index_scan_unique.html c3ref/c_iocap_atomic.html c3ref/c_limit_attached.html c3ref/c_lock_exclusive.html c3ref/c_mutex_fast.html c3ref/c_open_autoproxy.html c3ref/c_prepare_normalize.html c3ref/c_scanstat_complex.html c3ref/c_scanstat_est.html c3ref/c_serialize_nocopy.html c3ref/c_shm_exclusive.html c3ref/c_shm_nlock.html c3ref/c_source_id.html c3ref/c_static.html c3ref/c_status_malloc_count.html c3ref/c_stmtstatus_counter.html c3ref/c_sync_dataonly.html c3ref/c_testctrl_always.html c3ref/c_trace.html c3ref/c_txn_none.html c3ref/c_vtab_constraint_support.html c3ref/c_win32_data_directory_type.html c3ref/cancel_auto_extension.html c3ref/clear_bindings.html c3ref/close.html c3ref/collation_needed.html c3ref/column_blob.html c3ref/column_count.html c3ref/column_database_name.html c3ref/column_decltype.html c3ref/column_name.html c3ref/commit_hook.html c3ref/compileoption_get.html c3ref/complete.html c3ref/config.html c3ref/constlist.html c3ref/context.html c3ref/context_db_handle.html c3ref/create_collation.html c3ref/create_filename.html c3ref/create_function.html c3ref/create_module.html c3ref/data_count.html c3ref/data_directory.html c3ref/database_file_object.html c3ref/db_cacheflush.html c3ref/db_config.html c3ref/db_filename.html c3ref/db_handle.html c3ref/db_mutex.html c3ref/db_name.html c3ref/db_readonly.html c3ref/db_release_memory.html c3ref/db_status.html c3ref/declare_vtab.html c3ref/deserialize.html c3ref/drop_modules.html c3ref/enable_load_extension.html c3ref/enable_shared_cache.html c3ref/errcode.html c3ref/exec.html c3ref/expanded_sql.html c3ref/experimental.html c3ref/extended_result_codes.html c3ref/file.html c3ref/file_control.html c3ref/filename.html c3ref/filename_database.html c3ref/finalize.html c3ref/free.html c3ref/free_table.html c3ref/funclist.html c3ref/get_autocommit.html c3ref/get_auxdata.html c3ref/get_clientdata.html c3ref/hard_heap_limit64.html c3ref/index_info.html c3ref/initialize.html c3ref/int64.html c3ref/interrupt.html c3ref/io_methods.html c3ref/keyword_check.html c3ref/last_insert_rowid.html c3ref/libversion.html c3ref/limit.html c3ref/load_extension.html c3ref/log.html c3ref/mem_methods.html c3ref/memory_highwater.html c3ref/module.html c3ref/mprintf.html c3ref/mutex.html c3ref/mutex_alloc.html c3ref/mutex_held.html c3ref/mutex_methods.html c3ref/next_stmt.html c3ref/objlist.html c3ref/open.html c3ref/overload_function.html c3ref/pcache.html c3ref/pcache_methods2.html c3ref/pcache_page.html c3ref/prepare.html c3ref/preupdate_blobwrite.html c3ref/profile.html c3ref/progress_handler.html c3ref/randomness.html c3ref/release_memory.html c3ref/reset.html c3ref/reset_auto_extension.html c3ref/result_blob.html c3ref/result_subtype.html c3ref/serialize.html c3ref/set_authorizer.html c3ref/set_last_insert_rowid.html c3ref/sleep.html c3ref/snapshot.html c3ref/snapshot_cmp.html c3ref/snapshot_free.html c3ref/snapshot_get.html c3ref/snapshot_open.html c3ref/snapshot_recover.html c3ref/soft_heap_limit.html c3ref/sqlite3.html c3ref/status.html c3ref/step.html c3ref/stmt.html c3ref/stmt_busy.html c3ref/stmt_explain.html c3ref/stmt_isexplain.html c3ref/stmt_readonly.html c3ref/stmt_scanstatus.html c3ref/stmt_scanstatus_reset.html c3ref/stmt_status.html c3ref/str.html c3ref/str_append.html c3ref/str_errcode.html c3ref/str_finish.html c3ref/str_new.html c3ref/strglob.html c3ref/stricmp.html c3ref/strlike.html c3ref/system_errno.html c3ref/table_column_metadata.html c3ref/temp_directory.html c3ref/test_control.html c3ref/threadsafe.html c3ref/trace_v2.html c3ref/txn_state.html c3ref/unlock_notify.html c3ref/update_hook.html c3ref/uri_boolean.html c3ref/user_data.html c3ref/value.html c3ref/value_blob.html c3ref/value_dup.html c3ref/value_encoding.html c3ref/value_subtype.html c3ref/vfs.html c3ref/vfs_find.html c3ref/vtab.html c3ref/vtab_collation.html c3ref/vtab_config.html c3ref/vtab_cursor.html c3ref/vtab_distinct.html c3ref/vtab_in.html c3ref/vtab_in_first.html c3ref/vtab_nochange.html c3ref/vtab_on_conflict.html c3ref/vtab_rhs_value.html c3ref/wal_autocheckpoint.html c3ref/wal_checkpoint.html c3ref/wal_checkpoint_v2.html c3ref/wal_hook.html c3ref/win32_set_directory.html capi3.html capi3ref.html cintro.html docs.html index.html keyword_index.html quickstart.html rescode.html
- c3ref/io_methods.html → @@ -424,11 +424,11 @@ antiRobotDefense();
- c3ref/pcache_page.html → c3ref/objlist.html capi3ref.html keyword_index.html
- c3ref/prepare.html → -arch.html c3ref/bind_blob.html c3ref/bind_parameter_index.html c3ref/bind_parameter_name.html c3ref/c_limit_attached.html c3ref/c_prepare_normalize.html c3ref/column_blob.html c3ref/commit_hook.html c3ref/db_handle.html c3ref/exec.html c3ref/expanded_sql.html c3ref/funclist.html c3ref/progress_handler.html c3ref/set_authorizer.html c3ref/sqlite3.html c3ref/step.html c3ref/stmt.html c3ref/stmt_explain.html c3ref/update_hook.html capi3.html capi3ref.html cintro.html cli.html compile.html errlog.html faq.html keyword_index.html lang.html lang_comment.html lang_explain.html limits.html malloc.html opcode.html optoverview.html pragma.html queryplanner-ng.html rescode.html stmt.html tclsqlite.html unlock_notify.html vfs.html vtab.html
+arch.html c3ref/bind_blob.html c3ref/bind_parameter_index.html c3ref/bind_parameter_name.html c3ref/c_limit_attached.html c3ref/c_prepare_normalize.html c3ref/column_blob.html c3ref/commit_hook.html c3ref/db_handle.html c3ref/exec.html c3ref/expanded_sql.html c3ref/funclist.html c3ref/progress_handler.html c3ref/set_authorizer.html c3ref/sqlite3.html c3ref/step.html c3ref/stmt.html c3ref/stmt_explain.html c3ref/update_hook.html capi3.html capi3ref.html cintro.html cli.html compile.html errlog.html faq.html keyword_index.html lang.html lang_comment.html lang_explain.html limits.html malloc.html opcode.html optoverview.html pragma.html queryplanner-ng.html rescode.html stmt.html tclsqlite.html unlock_notify.html vfs.html vtab.html whybytecode.html- c3ref/preupdate_blobwrite.html → c3ref/funclist.html c3ref/sqlite3.html c3ref/update_hook.html capi3ref.html compile.html keyword_index.html session.html session/sqlite3session_create.html
- c3ref/profile.html → -c3ref/c_trace.html c3ref/funclist.html c3ref/sqlite3.html c3ref/trace_v2.html capi3ref.html compile.html keyword_index.html
+c3ref/c_trace.html c3ref/trace_v2.html capi3ref.html compile.html keyword_index.html- c3ref/progress_handler.html → c3ref/funclist.html c3ref/sqlite3.html capi3ref.html compile.html keyword_index.html security.html
- c3ref/randomness.html → @@ -472,7 +472,7 @@ antiRobotDefense();
- c3ref/step.html → arch.html backup.html c3ref/bind_blob.html c3ref/busy_timeout.html c3ref/c_stmtstatus_counter.html c3ref/column_blob.html c3ref/column_database_name.html c3ref/column_name.html c3ref/commit_hook.html c3ref/data_count.html c3ref/exec.html c3ref/finalize.html c3ref/funclist.html c3ref/prepare.html c3ref/profile.html c3ref/progress_handler.html c3ref/reset.html c3ref/set_authorizer.html c3ref/stmt.html c3ref/stmt_busy.html c3ref/unlock_notify.html c3ref/update_hook.html capi3.html capi3ref.html cintro.html compile.html eqp.html errlog.html faq.html isolation.html keyword_index.html lang_corefunc.html lang_datefunc.html lang_explain.html lang_returning.html malloc.html opcode.html optoverview.html pragma.html rescode.html stmt.html unlock_notify.html vfs.html
- c3ref/stmt.html → -arch.html bytecodevtab.html c3ref/bind_blob.html c3ref/bind_parameter_count.html c3ref/bind_parameter_name.html c3ref/busy_handler.html c3ref/c_config_covering_index_scan.html c3ref/c_limit_attached.html c3ref/c_trace.html c3ref/clear_bindings.html c3ref/close.html c3ref/column_blob.html c3ref/column_count.html c3ref/column_database_name.html c3ref/column_decltype.html c3ref/column_name.html c3ref/data_count.html c3ref/db_handle.html c3ref/expanded_sql.html c3ref/finalize.html c3ref/intro.html c3ref/next_stmt.html c3ref/objlist.html c3ref/prepare.html c3ref/reset.html c3ref/set_authorizer.html c3ref/step.html c3ref/stmt_busy.html c3ref/stmt_explain.html c3ref/stmt_readonly.html c3ref/stmt_status.html c3ref/value_blob.html capi3ref.html cintro.html compile.html custombuild.html datatype3.html faq.html howitworks.html keyword_index.html lang_explain.html malloc.html opcode.html optoverview.html pragma.html rescode.html stmt.html tclsqlite.html threadsafe.html unlock_notify.html vfs.html vtablist.html
+arch.html bytecodevtab.html c3ref/bind_blob.html c3ref/bind_parameter_count.html c3ref/bind_parameter_name.html c3ref/busy_handler.html c3ref/c_config_covering_index_scan.html c3ref/c_limit_attached.html c3ref/c_trace.html c3ref/clear_bindings.html c3ref/close.html c3ref/column_blob.html c3ref/column_count.html c3ref/column_database_name.html c3ref/column_decltype.html c3ref/column_name.html c3ref/data_count.html c3ref/db_handle.html c3ref/expanded_sql.html c3ref/finalize.html c3ref/intro.html c3ref/next_stmt.html c3ref/objlist.html c3ref/prepare.html c3ref/reset.html c3ref/set_authorizer.html c3ref/step.html c3ref/stmt_busy.html c3ref/stmt_explain.html c3ref/stmt_readonly.html c3ref/stmt_status.html c3ref/value_blob.html capi3ref.html cintro.html compile.html custombuild.html datatype3.html faq.html howitworks.html keyword_index.html lang_explain.html malloc.html opcode.html optoverview.html pragma.html rescode.html stmt.html tclsqlite.html threadsafe.html unlock_notify.html vfs.html vtablist.html whybytecode.html- c3ref/stmt_busy.html → c3ref/funclist.html c3ref/stmt.html capi3ref.html keyword_index.html
- c3ref/stmt_explain.html → @@ -584,7 +584,7 @@ antiRobotDefense();
- cksumvfs.html → c3ref/c_fcntl_begin_atomic_write.html capi3ref.html doclist.html keyword_index.html rescode.html sitemap.html
- cli.html → -bytecodevtab.html c3ref/c_deterministic.html c_interface.html capi3ref.html compile.html completion.html csv.html cves.html dbpage.html debugging.html doclist.html eqp.html features.html floatingpoint.html howtocompile.html imposter.html json1.html keyword_index.html lang_with.html loadext.html nulinstr.html opcode.html profile.html qmplan.html quickstart.html quirks.html recovery.html series.html sitemap.html sqlanalyze.html sqlar.html stmt.html stricttables.html uintcseq.html vfs.html vtab.html vtablist.html wal.html whentouse.html zipfile.html
+bytecodevtab.html c3ref/c_deterministic.html c_interface.html capi3ref.html compile.html completion.html csv.html cves.html dbpage.html debugging.html doclist.html eqp.html features.html floatingpoint.html howtocompile.html imposter.html json1.html keyword_index.html lang_analyze.html lang_with.html loadext.html nulinstr.html opcode.html profile.html qmplan.html quickstart.html quirks.html recovery.html series.html sitemap.html sqlanalyze.html sqlar.html stmt.html stricttables.html uintcseq.html vfs.html vtab.html vtablist.html wal.html whentouse.html zipfile.html- codeofconduct.html → keyword_index.html
- codeofethics.html → @@ -642,7 +642,7 @@ antiRobotDefense();
- faq.html → doclist.html docs.html index.html sitemap.html
- fasterthanfs.html → -about.html aff_short.html appfileformat.html doclist.html features.html howitworks.html index.html intern-v-extern-blob.html keyword_index.html sitemap.html whentouse.html whyc.html
+about.html aff_short.html appfileformat.html doclist.html features.html howitworks.html index.html intern-v-extern-blob.html keyword_index.html sitemap.html whentouse.html whybytecode.html whyc.html- features.html → doclist.html docs.html index.html sitemap.html
- fileformat.html → @@ -694,7 +694,7 @@ antiRobotDefense();
- isolation.html → doclist.html keyword_index.html sitemap.html useovernet.html
- json1.html → -amalgamation.html compile.html doclist.html docs.html features.html flextypegood.html fullsql.html index.html keyword_index.html lang_aggfunc.html lang_corefunc.html lang_expr.html loadext.html sitemap.html testing.html vtab.html vtablist.html
+amalgamation.html compile.html doclist.html docs.html features.html flextypegood.html fullsql.html index.html keyword_index.html lang.html lang_aggfunc.html lang_corefunc.html lang_expr.html loadext.html sitemap.html testing.html vtab.html vtablist.html- keyword_index.html → doclist.html sitemap.html
- lang.html → @@ -714,7 +714,7 @@ antiRobotDefense();
- lang_corefunc.html → arch.html bindptr.html c3ref/blob_open.html c3ref/c_dbconfig_defensive.html c3ref/c_deterministic.html c3ref/c_source_id.html c3ref/compileoption_get.html c3ref/create_function.html c3ref/enable_load_extension.html c3ref/last_insert_rowid.html c3ref/libversion.html c3ref/load_extension.html c3ref/mprintf.html capi3ref.html cli.html compile.html deterministic.html doclist.html docs.html expridx.html faq.html fts3.html fts5.html fullsql.html howtocompile.html index.html invalidutf.html keyword_index.html lang.html lang_aggfunc.html lang_createindex.html lang_datefunc.html lang_expr.html lang_mathfunc.html loadext.html nulinstr.html optoverview.html pragma.html printf.html queryplanner-ng.html security.html sitemap.html syntaxdiagrams.html tclsqlite.html undoredo.html windowfunctions.html withoutrowid.html
- lang_createindex.html → -aff_short.html appfileformat.html compile.html doclist.html expridx.html fileformat2.html foreignkeys.html fullsql.html keyword_index.html lang.html lang_altertable.html lang_dropindex.html lang_upsert.html limits.html optoverview.html partialindex.html pragma.html schematab.html sitemap.html stricttables.html syntaxdiagrams.html vtab.html withoutrowid.html
+aff_short.html appfileformat.html compile.html doclist.html expridx.html fileformat2.html foreignkeys.html fullsql.html keyword_index.html lang.html lang_altertable.html lang_analyze.html lang_dropindex.html lang_upsert.html limits.html optoverview.html partialindex.html pragma.html schematab.html sitemap.html stricttables.html syntaxdiagrams.html vtab.html withoutrowid.html- lang_createtable.html → autoinc.html c3ref/blob_open.html c3ref/c_deterministic.html c3ref/last_insert_rowid.html c3ref/preupdate_blobwrite.html c3ref/randomness.html c3ref/table_column_metadata.html c3ref/update_hook.html c3ref/vtab_collation.html capi3ref.html compile.html conflict.html csv.html datatype3.html deterministic.html doclist.html eqp.html expridx.html faq.html fileformat2.html foreignkeys.html fts3.html fts5.html fullsql.html gencol.html imposter.html keyword_index.html lang.html lang_altertable.html lang_conflict.html lang_corefunc.html lang_createindex.html lang_createvtab.html lang_droptable.html lang_expr.html lang_indexedby.html lang_insert.html lang_vacuum.html optoverview.html pragma.html queryplanner.html quirks.html rbu.html rescode.html rowidtable.html schematab.html sitemap.html sqldiff.html stricttables.html syntaxdiagrams.html vtab.html withoutrowid.html
- lang_createtrigger.html → @@ -748,7 +748,7 @@ antiRobotDefense();
- lang_keywords.html → doclist.html keyword_index.html lang.html sitemap.html
- lang_mathfunc.html → -compile.html doclist.html docs.html index.html keyword_index.html lang_corefunc.html lang_expr.html sitemap.html
+compile.html doclist.html docs.html index.html keyword_index.html lang.html lang_corefunc.html lang_expr.html sitemap.html- lang_naming.html → doclist.html keyword_index.html lang_dropview.html sitemap.html
- lang_reindex.html → @@ -802,7 +802,7 @@ antiRobotDefense();
- onefile.html → doclist.html features.html sitemap.html
- opcode.html → -arch.html bytecodevtab.html c3ref/progress_handler.html c3ref/vtab_distinct.html c3ref/vtab_in.html capi3ref.html compile.html debugging.html different.html doclist.html howitworks.html keyword_index.html lang_corefunc.html lang_explain.html lts.html rowvalue.html sitemap.html stmt.html vdbe.html vtab.html
+arch.html bytecodevtab.html c3ref/progress_handler.html c3ref/vtab_distinct.html c3ref/vtab_in.html capi3ref.html compile.html debugging.html different.html doclist.html howitworks.html keyword_index.html lang_corefunc.html lang_explain.html lts.html rowvalue.html sitemap.html stmt.html vdbe.html vtab.html whybytecode.html- optoverview.html → arch.html cli.html compile.html doclist.html eqp.html fileformat2.html fts3.html fullsql.html howitworks.html keyword_index.html lang_analyze.html lang_indexedby.html lang_select.html lang_with.html pragma.html profile.html queryplanner-ng.html queryplanner.html rescode.html sitemap.html stmt.html
- partialindex.html → @@ -810,7 +810,7 @@ antiRobotDefense();
- pgszchng2016.html → doclist.html keyword_index.html sitemap.html
- pragma.html → -aff_short.html appfunc.html arch.html asyncvfs.html atomiccommit.html c3ref/busy_handler.html c3ref/busy_timeout.html c3ref/c_access_exists.html c3ref/c_config_covering_index_scan.html c3ref/c_dbconfig_defensive.html c3ref/c_deterministic.html c3ref/c_fcntl_begin_atomic_write.html c3ref/c_sync_dataonly.html c3ref/compileoption_get.html c3ref/data_count.html c3ref/data_directory.html c3ref/hard_heap_limit64.html c3ref/limit.html c3ref/pcache_methods2.html c3ref/set_authorizer.html c3ref/snapshot_open.html c3ref/temp_directory.html c3ref/wal_autocheckpoint.html c3ref/wal_checkpoint_v2.html c3ref/wal_hook.html c_interface.html capi3ref.html cli.html compile.html cves.html dbhash.html debugging.html doclist.html docs.html faq.html fasterthanfs.html fileformat2.html foreignkeys.html fts3.html fts5.html gencol.html howtocorrupt.html imposter.html index.html inmemorydb.html invalidutf.html isolation.html keyword_index.html lang.html lang_altertable.html lang_analyze.html lang_attach.html lang_conflict.html lang_corefunc.html lang_createindex.html lang_createtable.html lang_createtrigger.html lang_delete.html lang_explain.html lang_expr.html lang_transaction.html lang_vacuum.html limits.html lockingv3.html malloc.html mmap.html opcode.html optoverview.html pgszchng2016.html psow.html queryplanner-ng.html quirks.html rescode.html rtree.html security.html sharedcache.html sitemap.html stricttables.html syntaxdiagrams.html tclsqlite.html tempfiles.html testing.html vdbe.html vtab.html vtablist.html wal.html walformat.html withoutrowid.html
+aff_short.html appfunc.html arch.html asyncvfs.html atomiccommit.html c3ref/busy_handler.html c3ref/busy_timeout.html c3ref/c_access_exists.html c3ref/c_config_covering_index_scan.html c3ref/c_dbconfig_defensive.html c3ref/c_deterministic.html c3ref/c_fcntl_begin_atomic_write.html c3ref/c_sync_dataonly.html c3ref/compileoption_get.html c3ref/data_count.html c3ref/data_directory.html c3ref/hard_heap_limit64.html c3ref/limit.html c3ref/pcache_methods2.html c3ref/set_authorizer.html c3ref/snapshot_open.html c3ref/temp_directory.html c3ref/wal_autocheckpoint.html c3ref/wal_checkpoint_v2.html c3ref/wal_hook.html c_interface.html capi3ref.html cli.html compile.html cves.html dbhash.html debugging.html doclist.html docs.html faq.html fasterthanfs.html fileformat2.html foreignkeys.html fts3.html fts5.html gencol.html howtocorrupt.html imposter.html index.html inmemorydb.html invalidutf.html isolation.html keyword_index.html lang.html lang_altertable.html lang_analyze.html lang_attach.html lang_conflict.html lang_corefunc.html lang_createindex.html lang_createtable.html lang_createtrigger.html lang_delete.html lang_explain.html lang_expr.html lang_transaction.html lang_vacuum.html limits.html lockingv3.html malloc.html mmap.html opcode.html optoverview.html pgszchng2016.html psow.html queryplanner-ng.html quirks.html rescode.html rtree.html security.html sharedcache.html sitemap.html stricttables.html syntaxdiagrams.html tclsqlite.html tempfiles.html testing.html vdbe.html vtab.html vtablist.html wal.html walformat.html whybytecode.html withoutrowid.html- printf.html → arch.html c3ref/mprintf.html c3ref/str_append.html capi3ref.html compile.html doclist.html keyword_index.html lang_corefunc.html sitemap.html
- privatebranch.html → @@ -824,7 +824,7 @@ antiRobotDefense();
- qmplan.html → doclist.html sitemap.html
- queryplanner-ng.html → -c3ref/c_dbconfig_defensive.html capi3ref.html compile.html doclist.html eqp.html howitworks.html keyword_index.html lang_indexedby.html limits.html optoverview.html queryplanner.html sitemap.html versionnumbers.html
+c3ref/c_dbconfig_defensive.html capi3ref.html compile.html doclist.html eqp.html howitworks.html keyword_index.html lang_analyze.html lang_indexedby.html limits.html optoverview.html queryplanner.html sitemap.html versionnumbers.html- queryplanner.html → doclist.html eqp.html fullsql.html imposter.html keyword_index.html lts.html optoverview.html queryplanner-ng.html sitemap.html
- quickstart.html → @@ -846,7 +846,7 @@ antiRobotDefense();
- rtree.html → aff_short.html amalgamation.html compile.html doclist.html floatingpoint.html fts5.html fullsql.html geopoly.html howtocompile.html keyword_index.html rescode.html sitemap.html sqldiff.html th3.html vtab.html vtablist.html
- schematab.html → -atomiccommit.html cli.html compile.html doclist.html fileformat2.html foreignkeys.html imposter.html keyword_index.html lang_altertable.html lang_droptrigger.html lemon.html pragma.html security.html sharedcache.html sitemap.html unlock_notify.html
+atomiccommit.html cli.html compile.html doclist.html fileformat2.html foreignkeys.html imposter.html keyword_index.html lang_altertable.html lang_droptrigger.html lemon.html pragma.html security.html sharedcache.html sitemap.html unlock_notify.html whybytecode.html- security.html → cves.html doclist.html hirely.html keyword_index.html sitemap.html
- selfcontained.html → @@ -864,18 +864,20 @@ antiRobotDefense();
- session/changegroup.html → keyword_index.html session.html session/objlist.html sessionintro.html
- session/constlist.html → -session/c_session_config_strmsize.html session/c_session_objconfig_rowid.html session/changegroup.html session/funclist.html session/intro.html session/objlist.html session/rebaser.html session/session.html session/sqlite3changegroup_add.html session/sqlite3changegroup_add_strm.html session/sqlite3changegroup_delete.html session/sqlite3changegroup_new.html session/sqlite3changegroup_output.html session/sqlite3changegroup_schema.html session/sqlite3rebaser_configure.html session/sqlite3rebaser_create.html session/sqlite3rebaser_delete.html session/sqlite3rebaser_rebase.html session/sqlite3session_attach.html session/sqlite3session_config.html session/sqlite3session_create.html session/sqlite3session_delete.html session/sqlite3session_diff.html session/sqlite3session_enable.html session/sqlite3session_indirect.html session/sqlite3session_isempty.html session/sqlite3session_memory_used.html session/sqlite3session_object_config.html session/sqlite3session_patchset.html session/sqlite3session_table_filter.html
+session/c_session_config_strmsize.html session/c_session_objconfig_rowid.html session/changegroup.html session/funclist.html session/intro.html session/objlist.html session/rebaser.html session/session.html session/sqlite3changegroup_add.html session/sqlite3changegroup_add_change.html session/sqlite3changegroup_add_strm.html session/sqlite3changegroup_delete.html session/sqlite3changegroup_new.html session/sqlite3changegroup_output.html session/sqlite3changegroup_schema.html session/sqlite3rebaser_configure.html session/sqlite3rebaser_create.html session/sqlite3rebaser_delete.html session/sqlite3rebaser_rebase.html session/sqlite3session_attach.html session/sqlite3session_config.html session/sqlite3session_create.html session/sqlite3session_delete.html session/sqlite3session_diff.html session/sqlite3session_enable.html session/sqlite3session_indirect.html session/sqlite3session_isempty.html session/sqlite3session_memory_used.html session/sqlite3session_object_config.html session/sqlite3session_patchset.html session/sqlite3session_table_filter.html- session/funclist.html → -keyword_index.html session/c_session_config_strmsize.html session/c_session_objconfig_rowid.html session/changegroup.html session/constlist.html session/intro.html session/objlist.html session/rebaser.html session/session.html session/sqlite3changegroup_add.html session/sqlite3changegroup_add_strm.html session/sqlite3changegroup_delete.html session/sqlite3changegroup_new.html session/sqlite3changegroup_output.html session/sqlite3changegroup_schema.html session/sqlite3rebaser_configure.html session/sqlite3rebaser_create.html session/sqlite3rebaser_delete.html session/sqlite3rebaser_rebase.html session/sqlite3session_attach.html session/sqlite3session_config.html session/sqlite3session_create.html session/sqlite3session_delete.html session/sqlite3session_diff.html session/sqlite3session_enable.html session/sqlite3session_indirect.html session/sqlite3session_isempty.html session/sqlite3session_memory_used.html session/sqlite3session_object_config.html session/sqlite3session_patchset.html session/sqlite3session_table_filter.html
+keyword_index.html session/c_session_config_strmsize.html session/c_session_objconfig_rowid.html session/changegroup.html session/constlist.html session/intro.html session/objlist.html session/rebaser.html session/session.html session/sqlite3changegroup_add.html session/sqlite3changegroup_add_change.html session/sqlite3changegroup_add_strm.html session/sqlite3changegroup_delete.html session/sqlite3changegroup_new.html session/sqlite3changegroup_output.html session/sqlite3changegroup_schema.html session/sqlite3rebaser_configure.html session/sqlite3rebaser_create.html session/sqlite3rebaser_delete.html session/sqlite3rebaser_rebase.html session/sqlite3session_attach.html session/sqlite3session_config.html session/sqlite3session_create.html session/sqlite3session_delete.html session/sqlite3session_diff.html session/sqlite3session_enable.html session/sqlite3session_indirect.html session/sqlite3session_isempty.html session/sqlite3session_memory_used.html session/sqlite3session_object_config.html session/sqlite3session_patchset.html session/sqlite3session_table_filter.html- session/intro.html → -keyword_index.html session.html session/c_session_config_strmsize.html session/c_session_objconfig_rowid.html session/changegroup.html session/constlist.html session/funclist.html session/objlist.html session/rebaser.html session/session.html session/sqlite3changegroup_add.html session/sqlite3changegroup_add_strm.html session/sqlite3changegroup_delete.html session/sqlite3changegroup_new.html session/sqlite3changegroup_output.html session/sqlite3changegroup_schema.html session/sqlite3rebaser_configure.html session/sqlite3rebaser_create.html session/sqlite3rebaser_delete.html session/sqlite3rebaser_rebase.html session/sqlite3session_attach.html session/sqlite3session_config.html session/sqlite3session_create.html session/sqlite3session_delete.html session/sqlite3session_diff.html session/sqlite3session_enable.html session/sqlite3session_indirect.html session/sqlite3session_isempty.html session/sqlite3session_memory_used.html session/sqlite3session_object_config.html session/sqlite3session_patchset.html session/sqlite3session_table_filter.html sessionintro.html
+keyword_index.html session.html session/c_session_config_strmsize.html session/c_session_objconfig_rowid.html session/changegroup.html session/constlist.html session/funclist.html session/objlist.html session/rebaser.html session/session.html session/sqlite3changegroup_add.html session/sqlite3changegroup_add_change.html session/sqlite3changegroup_add_strm.html session/sqlite3changegroup_delete.html session/sqlite3changegroup_new.html session/sqlite3changegroup_output.html session/sqlite3changegroup_schema.html session/sqlite3rebaser_configure.html session/sqlite3rebaser_create.html session/sqlite3rebaser_delete.html session/sqlite3rebaser_rebase.html session/sqlite3session_attach.html session/sqlite3session_config.html session/sqlite3session_create.html session/sqlite3session_delete.html session/sqlite3session_diff.html session/sqlite3session_enable.html session/sqlite3session_indirect.html session/sqlite3session_isempty.html session/sqlite3session_memory_used.html session/sqlite3session_object_config.html session/sqlite3session_patchset.html session/sqlite3session_table_filter.html sessionintro.html- session/objlist.html → -session/c_session_config_strmsize.html session/c_session_objconfig_rowid.html session/changegroup.html session/constlist.html session/funclist.html session/intro.html session/rebaser.html session/session.html session/sqlite3changegroup_add.html session/sqlite3changegroup_add_strm.html session/sqlite3changegroup_delete.html session/sqlite3changegroup_new.html session/sqlite3changegroup_output.html session/sqlite3changegroup_schema.html session/sqlite3rebaser_configure.html session/sqlite3rebaser_create.html session/sqlite3rebaser_delete.html session/sqlite3rebaser_rebase.html session/sqlite3session_attach.html session/sqlite3session_config.html session/sqlite3session_create.html session/sqlite3session_delete.html session/sqlite3session_diff.html session/sqlite3session_enable.html session/sqlite3session_indirect.html session/sqlite3session_isempty.html session/sqlite3session_memory_used.html session/sqlite3session_object_config.html session/sqlite3session_patchset.html session/sqlite3session_table_filter.html
+session/c_session_config_strmsize.html session/c_session_objconfig_rowid.html session/changegroup.html session/constlist.html session/funclist.html session/intro.html session/rebaser.html session/session.html session/sqlite3changegroup_add.html session/sqlite3changegroup_add_change.html session/sqlite3changegroup_add_strm.html session/sqlite3changegroup_delete.html session/sqlite3changegroup_new.html session/sqlite3changegroup_output.html session/sqlite3changegroup_schema.html session/sqlite3rebaser_configure.html session/sqlite3rebaser_create.html session/sqlite3rebaser_delete.html session/sqlite3rebaser_rebase.html session/sqlite3session_attach.html session/sqlite3session_config.html session/sqlite3session_create.html session/sqlite3session_delete.html session/sqlite3session_diff.html session/sqlite3session_enable.html session/sqlite3session_indirect.html session/sqlite3session_isempty.html session/sqlite3session_memory_used.html session/sqlite3session_object_config.html session/sqlite3session_patchset.html session/sqlite3session_table_filter.html- session/rebaser.html → keyword_index.html session.html session/objlist.html
- session/session.html → keyword_index.html session.html session/objlist.html
- session/sqlite3changegroup_add.html → +keyword_index.html session.html session/changegroup.html session/funclist.html session/sqlite3changegroup_add_change.html
+- session/sqlite3changegroup_add_change.html → keyword_index.html session.html session/changegroup.html session/funclist.html
- session/sqlite3changegroup_add_strm.html → keyword_index.html session.html session/funclist.html
@@ -1133,12 +1135,14 @@ antiRobotDefense(); compile.html doclist.html fileformat2.html keyword_index.html rescode.html sitemap.html vfs.html wal.html- whentouse.html → doclist.html docs.html famous.html features.html index.html keyword_index.html np1queryprob.html quirks.html sitemap.html tempfiles.html
+- whybytecode.html → +doclist.html keyword_index.html opcode.html sitemap.html
- whyc.html → doclist.html sitemap.html
- whynotgit.html → doclist.html sitemap.html
- windowfunctions.html → -appfunc.html c3ref/create_function.html capi3ref.html compile.html doclist.html docs.html features.html fullsql.html index.html keyword_index.html lang_aggfunc.html lang_corefunc.html lang_expr.html lang_returning.html lang_with.html sitemap.html
+appfunc.html c3ref/create_function.html capi3ref.html compile.html doclist.html docs.html features.html fullsql.html index.html keyword_index.html lang.html lang_aggfunc.html lang_corefunc.html lang_expr.html lang_returning.html lang_with.html optoverview.html sitemap.html- withoutrowid.html → autoinc.html c3ref/last_insert_rowid.html c3ref/table_column_metadata.html c3ref/update_hook.html capi3ref.html doclist.html fileformat2.html fullsql.html imposter.html keyword_index.html lang_createtable.html lang_expr.html optoverview.html pragma.html queryplanner.html quirks.html rowidtable.html schematab.html sessionintro.html sitemap.html sqldiff.html stricttables.html vtab.html
- zeroconf.html → diff --git a/www/doc_target_crossref.html b/www/doc_target_crossref.html index 736ee11..dfcbedd 100644 --- a/www/doc_target_crossref.html +++ b/www/doc_target_crossref.html @@ -916,7 +916,6 @@ antiRobotDefense();
- fts3.html#unicode61 → unicode61
- fts5.html → FTS5 fts5
- fts5.html#_auxiliary_functions_ → {FTS5 auxiliary functions}
-- fts5.html#_custom_auxiliary_functions_api_reference_ → {custom auxiliary functions}
- fts5.html#_summary_of_technical_differences_ → {fts5 technical differences}
- fts5.html#appendix_a → {comparison with fts4}
- fts5.html#carrotq → {FTS5 initial token}
@@ -925,6 +924,8 @@ antiRobotDefense();- fts5.html#contentless_delete_tables → {FTS5 contentless-delete tables}
- fts5.html#contentless_tables → {FTS5 contentless tables}
- fts5.html#custom_auxiliary_functions → {FTS5 custom auxiliary functions}
+- fts5.html#custom_auxiliary_functions_api_overview → {custom auxiliary overview}
+- fts5.html#custom_auxiliary_functions_api_reference → {custom auxiliary functions}
- fts5.html#custom_tokenizers → {custom tokenizers}
- fts5.html#extending_fts5 → {Extending FTS5}
- fts5.html#external_content_and_contentless_tables → {FTS5 content option}
@@ -1024,6 +1025,7 @@ antiRobotDefense();- json1.html#jobjb → jsonb_object {jsonb_object SQL function}
- json1.html#jpatch → json_patch {json_patch SQL function}
- json1.html#jpatchb → jsonb_patch {jsonb_patch SQL function}
+- json1.html#jpretty → json_pretty {json_pretty SQL function}
- json1.html#jptr → {the - and - operators} {the - operator}
- json1.html#jquote → json_quote {json_quote SQL function}
- json1.html#jrepl → json_replace {json_replace SQL function}
@@ -1057,9 +1059,11 @@ antiRobotDefense();- lang_altertable.html#altertabrename → {ALTER TABLE RENAME} {ALTER TABLE RENAME documentation} {rename table}
- lang_altertable.html#otheralter → {generalized ALTER TABLE procedure}
- lang_analyze.html → ANALYZE analyze
-- lang_analyze.html#approx → {approximate ANALYZE}
-- lang_analyze.html#autoanalyze → {automatically running ANALYZE}
-- lang_analyze.html#req → {recommended ANALYZE usage pattern}
+- lang_analyze.html#approx → {Approximate ANALYZE For Large Databases} {approximate ANALYZE}
+- lang_analyze.html#autoanalyze → {Automatically Running ANALYZE} {automatically running ANALYZE}
+- lang_analyze.html#pragopt → {running ANALYZE via PRAGMA optimize}
+- lang_analyze.html#req → {Recommended usage patterns for ANALYZE}
+- lang_analyze.html#statanal → {static ANALYZE results}
- lang_attach.html → ATTACH {ATTACH DATABASE} attach attached
- lang_comment.html → comment comments
- lang_conflict.html → {ON CONFLICT} {ON CONFLICT clause} {ON CONFLICT clauses} conflict {conflict clause} {conflict resolution algorithm}
@@ -1134,15 +1138,17 @@ antiRobotDefense();- lang_createvtab.html → {CREATE VIRTUAL TABLE} createvtab
- lang_datefunc.html → {Date And Time Functions} {date and time functions} datefunc
- lang_datefunc.html#automod → {auto modifier}
+- lang_datefunc.html#dtambg → {ambiguous dates}
- lang_datefunc.html#dtmods → {date/time modifiers} modifiers
- lang_datefunc.html#dttm → date {date SQL function} datetime {datetime SQL function} time {time SQL function}
-- lang_datefunc.html#jdmod → {julianday modifier}
+- lang_datefunc.html#jdmod → {julianday modifier} {unixepoch modifier}
- lang_datefunc.html#jlndy → julianday {julianday SQL function}
-- lang_datefunc.html#localtime → {localtime modifier} {utc modifier}
+- lang_datefunc.html#localtime → {localtime modifier} {utc and localtime modifiers} {utc modifier}
- lang_datefunc.html#strftm → strftime {strftime SQL function}
- lang_datefunc.html#subsec → {subsec modifier} {subsecond modifier}
- lang_datefunc.html#tmdif → timediff {timediff SQL function}
- lang_datefunc.html#tmshf → {time shift modifiers}
+- lang_datefunc.html#tmval → {time value} {time values} time-value time-values
- lang_datefunc.html#uepch → unixepoch {unixepoch SQL function} {unixepoch function}
- lang_delete.html → DELETE DELETEs delete
- lang_delete.html#truncateopt → {truncate optimization}
@@ -1169,7 +1175,7 @@ antiRobotDefense();- lang_expr.html#isdf → {IS DISTINCT FROM} {IS NOT DISTINCT FROM}
- lang_expr.html#isisnot → {IS NOT operator} {IS operator}
- lang_expr.html#like → ESCAPE LIKE
-- lang_expr.html#litvalue → {literal value}
+- lang_expr.html#litvalue → {literal value} {numeric literals}
- lang_expr.html#match → MATCH
- lang_expr.html#regexp → REGEXP
- lang_expr.html#subq → Subqueries
@@ -1292,12 +1298,13 @@ antiRobotDefense();- opcode.html#codes → {list of current bytecodes} {opcode definitions}
- opcode.html#subprog → subprograms
- optoverview.html → {SQLite query planner} optimizer {query planner}
-- optoverview.html#autoindex → {Automatic indexing} {automatic indexes} {automatic indexing}
+- optoverview.html#autoindex → {Automatic indexing} {Query-time indexes} {Query-time indexing} {automatic indexes} {automatic indexing} {query-time index} {query-time indexing}
- optoverview.html#constprop → {constant-propagation optimization}
- optoverview.html#coroutines → co-routines {subquery co-routines}
- optoverview.html#crossjoin → {CROSS JOIN} {Manual Control Of Query Plans Using CROSS JOIN}
- optoverview.html#flattening → flattened {flattening optimization} {query flattener}
- optoverview.html#hashjoin → {hash join}
+- optoverview.html#joins → {join order}
- optoverview.html#leftjoinreduction → {LEFT JOIN strength reduction optimization} {OUTER JOIN strength reduction} {OUTER JOIN strength reduction optimization}
- optoverview.html#like_opt → {LIKE optimization}
- optoverview.html#manctrl → {Manual Control Of Query Plans Using SQLITE_STAT Tables}
@@ -1305,10 +1312,9 @@ antiRobotDefense();- optoverview.html#omitnoopjoin → {omit-left-join optimization} {omit-outer-join optimization}
- optoverview.html#or_opt → {OR optimization} {or optimization}
- optoverview.html#partsort → {sorting subsets of the result}
-- optoverview.html#pushdown → {push-down optimization}
+- optoverview.html#pushdown → {WHERE-clause push-down optimization} {push-down optimization}
- optoverview.html#rangequery → {range query optimization}
- optoverview.html#skipscan → skip-scan {skip-scan optimization}
-- optoverview.html#table_order → {join order}
- optoverview.html#uplus → upluscontrol
- partialindex.html → {partial index} {partial indexes} {partial indices}
- pgszchng2016.html → {increase in the default page size} {version 3.12.0 page size change}
@@ -1554,6 +1560,7 @@ antiRobotDefense();- releaselog/3_45_1.html → {Version 3.45.1} {version 3.45.1}
- releaselog/3_45_2.html → {Version 3.45.2} {version 3.45.2}
- releaselog/3_45_3.html → {Version 3.45.3} {version 3.45.3}
+- releaselog/3_46_0.html → {Version 3.46.0} {version 3.46.0}
- releaselog/3_4_0.html → {Version 3.4.0} {version 3.4.0}
- releaselog/3_4_1.html → {Version 3.4.1} {version 3.4.1}
- releaselog/3_4_2.html → {Version 3.4.2} {version 3.4.2}
@@ -1797,6 +1804,7 @@ antiRobotDefense();- session/rebaser.html → sqlite3_rebaser
- session/session.html → sqlite3_session
- session/sqlite3changegroup_add.html → sqlite3changegroup_add
+- session/sqlite3changegroup_add_change.html → sqlite3changegroup_add_change
- session/sqlite3changegroup_add_strm.html → sqlite3changegroup_add_strm sqlite3changegroup_output_strm sqlite3changeset_apply_strm sqlite3changeset_apply_v2_strm sqlite3changeset_concat_strm sqlite3changeset_invert_strm sqlite3changeset_start_strm sqlite3changeset_start_v2_strm sqlite3rebaser_rebase_strm sqlite3session_changeset_strm sqlite3session_patchset_strm
- session/sqlite3changegroup_delete.html → sqlite3changegroup_delete
- session/sqlite3changegroup_new.html → sqlite3changegroup_new
@@ -2073,7 +2081,8 @@ antiRobotDefense();- whentouse.html#serversidedb → {server-side database}
- whentouse.html#website → {using SQLite for websites}
- whentouse.html#wireproto → {data transfer format}
-- windowfunctions.html → {Window functions} {window function} {window functions}
+- whybytecode.html → {Why SQLite Uses Bytecode}
+- windowfunctions.html → {Window functions} {window function} {window functions} winfunc
- windowfunctions.html#aggwinfunc → {aggregate window functions}
- windowfunctions.html#biwinfunc → {builtin window functions}
- windowfunctions.html#builtins → {built-in window functions} built-ins
diff --git a/www/doclist.html b/www/doclist.html index 3e87b54..909bfe4 100644 --- a/www/doclist.html +++ b/www/doclist.html @@ -333,6 +333,7 @@ See Also:- What If OpenDocument Used SQLite?
- Why Is SQLite Coded In C
- Why SQLite Does Not Use Git
+- Why SQLite Uses Bytecode
- Window Functions
- Write-Ahead Logging
- Zero-Configuration
diff --git a/www/eqp.html b/www/eqp.html index b4e68fa..fff35c6 100644 --- a/www/eqp.html +++ b/www/eqp.html @@ -271,7 +271,7 @@ QUERY PLAN- All joins in SQLite are implemented using nested scans. When a + All joins in SQLite are implemented using nested scans. When a SELECT query that features a join is analyzed using EXPLAIN QUERY PLAN, one SCAN or SEARCH record is output for each nested loop. For example:
@@ -128,8 +156,8 @@ ANALYZEsqlite> EXPLAIN QUERY PLAN SELECT t1.*, t2.* FROM t1, t2 WHERE t1.a=1 AND t1.b>2; diff --git a/www/fileformat.html b/www/fileformat.html index a26002b..f6fb7cc 100644 --- a/www/fileformat.html +++ b/www/fileformat.html @@ -691,7 +691,7 @@ The only exception is when page 1 is an interior b-tree page. Page 1 has 100 fewer bytes of storage space available, due to the presence of the database header at the beginning of that page, and so sometimes (rarely) if page 1 is an interior b-tree page, it can -end up holding just a a single key. In all other cases, K is 2 or more. +end up holding just a single key. In all other cases, K is 2 or more. The upper bound on K is as many keys as will fit on the page. Large keys on index b-trees are split up into overflow pages so that no single key uses more than one fourth of the available storage space on the page @@ -2201,5 +2201,5 @@ file, and since the wal-index is a transient structure, no further information about the format of the wal-index will be provided here. Additional details on the format of the wal-index are contained in the separate WAL-index File Format document. - +This page last modified on 2024-04-20 09:25:12 UTC
diff --git a/www/fileformat2.html b/www/fileformat2.html index a26002b..f6fb7cc 100644 --- a/www/fileformat2.html +++ b/www/fileformat2.html @@ -691,7 +691,7 @@ The only exception is when page 1 is an interior b-tree page. Page 1 has 100 fewer bytes of storage space available, due to the presence of the database header at the beginning of that page, and so sometimes (rarely) if page 1 is an interior b-tree page, it can -end up holding just a a single key. In all other cases, K is 2 or more. +end up holding just a single key. In all other cases, K is 2 or more. The upper bound on K is as many keys as will fit on the page. Large keys on index b-trees are split up into overflow pages so that no single key uses more than one fourth of the available storage space on the page @@ -2201,5 +2201,5 @@ file, and since the wal-index is a transient structure, no further information about the format of the wal-index will be provided here. Additional details on the format of the wal-index are contained in the separate WAL-index File Format document. - +This page last modified on 2024-04-20 09:25:12 UTC
diff --git a/www/flextypegood.html b/www/flextypegood.html index bc1577b..5810ff4 100644 --- a/www/flextypegood.html +++ b/www/flextypegood.html @@ -416,7 +416,7 @@ But type enforcement is no help in prevent subtly incorrect data from being recorded.So, for example, rigid type enforcement can successfully prevent -the customer name (text) from being inserted into integer +the customer name (text) from being inserted into the integer Customer.creditScore column. On the other hand, if that mistake occurs, it is very easy to spot the problem and find all affected rows. But type enforcement is no help in preventing a bug where the customer diff --git a/www/fts5.html b/www/fts5.html index c80bc26..1793f2c 100644 --- a/www/fts5.html +++ b/www/fts5.html @@ -177,9 +177,8 @@ Table Of Contents
- + + @@ -775,7 +774,7 @@ CREATE VIRTUAL TABLE t1 USING fts5(x, tokenize = 'porter' 'ascii');-FTS5 features three built-in tokenizer modules, described in subsequent +FTS5 features four built-in tokenizer modules, described in subsequent sections:
@@ -787,6 +786,9 @@ sections:
- The porter tokenizer, which implements the porter stemming algorithm. + +
- The trigram tokenizer, which treats each contiguous sequence of + three characters as a token, allowing FTS5 to support more general substring matching.
It is also possible to create custom tokenizers for FTS5. The API for doing so is described here. @@ -987,6 +989,9 @@ Notes: but still works. If the index is to be used only for LIKE and/or GLOB pattern matching, these options are worth experimenting with to reduce the index size. + +
- The index cannot be used to optimize LIKE patterns if the LIKE operator + has an ESCAPE clause.
@@ -1400,12 +1405,12 @@ on secondary or tertiary markings in the document or query terms.Auxiliary functions are similar to SQL scalar functions, except that they may only be used within full-text queries (those that use -the MATCH operator) on an FTS5 table. Their results are calculated based not -only on the arguments passed to them, but also on the current match and -matched row. For example, an auxiliary function may return a numeric value -indicating the accuracy of the match (see the bm25() function), -or a fragment of text from the matched row that contains one or more -instances of the search terms (see the snippet() function). +the MATCH operator, or LIKE/GLOB with the trigram tokenizer) on an FTS5 table. +Their results are calculated based not only on the arguments passed to them, +but also on the current match and matched row. For example, an auxiliary +function may return a numeric value indicating the accuracy of the match (see +the bm25() function), or a fragment of text from the matched row +that contains one or more instances of the search terms (see the snippet() function).
To invoke an auxiliary function, the name of the FTS5 table should be specified as the first argument. Other arguments may follow the first, @@ -1437,7 +1442,10 @@ the following section. Applications may also implement fragment of text from one of the columns of the matched row and returns it with each instance of a queried term surrounded by markup in the same manner as the highlight() function. The fragment of text is - selected so as to maximize the number of queried terms it contains. + selected so as to maximize the number of distinct queried terms it + contains. Higher weight is given to snippets that occur at the start + of a column value, or that immediately follow "." or ":" characters + in the text. @@ -2349,18 +2357,19 @@ replaced. returns an SQLite error code. In this case the xDestroy function is not invoked. -
The final three arguments passed to the auxiliary function callback are -similar to the three arguments passed to the implementation of a scalar SQL -function. All arguments except the first passed to the auxiliary function are -available to the implementation in the apVal[] array. The +
The final three arguments passed to the auxiliary function callback +(pCtx, nVal and apVal above) are similar to the three arguments passed to the +implementation of a scalar SQL function. The apVal[] array contains all +SQL arguments except the first passed to the auxiliary function. The implementation should return a result or error via the content handle pCtx.
The first argument passed to an auxiliary function callback is a pointer -to a structure containing methods that may be invoked in order to obtain -information regarding the current query or row. The second argument is an -opaque handle that should be passed as the first argument to any such method -invocation. For example, the following auxiliary function definition returns -the total number of tokens in all columns of the current row: +to a structure (pApi above) containing methods that may be invoked +in order to obtain information regarding the current query or row. The second +argument is an opaque handle (pFts above) that should be passed as the +first argument to any such method invocation. For example, the following +auxiliary function returns the total number of tokens in all columns of the +current row:
/* ** Implementation of an auxiliary function that returns the number @@ -2388,10 +2397,185 @@ static void column_size_imp( implementations in detail. Further examples may be found in the "fts5_aux.c" file of the source code. - -7.2.1. - Custom Auxiliary Functions API Reference -
+ +7.2.1. Custom Auxiliary Functions API Overview
+ +This section provides an overview of the capabilities of the auxiliary +function API. It does not describe every function. Refer to the reference text below for a +complete description. + +
When invoked, an auxiliary function implementation has access to APIs that +allow it to query FTS5 for various information. Some of these APIs return +information relating to the current row of the FTS5 table being visited, +some relating to the entire set of rows that will be visited by the FTS5 +query, and some relating to the FTS5 table. Given an FTS5 table populated as +follows: + +
+ +CREATE VIRTUAL TABLE ft USING fts5(a, b); +INSERT INTO ft(rowid, a, b) VALUES + (1, 'ab cd', 'cd de one'), + (2, 'de fg', 'fg gh'), + (3, 'gh ij', 'ij ab three four'); +and the query: + +
+ +SELECT my_aux_function(ft) FROM ft('ab') +then the custom auxiliary function will be invoked for rows 1 and 3 (all +rows that contain the token "ab" and therefore match the query). + +
Number of rows/columns in table: xRowCount, xColumnCount + +
The system may be queried for the total number of rows in the FTS5 table +using the xRowCount API. This provides the total number +of rows in the table, not the number that match the current query. + +
Table columns are numbered from left to right starting from 0. The +"rowid" column does not count - only user declared columns - so in the example +above column "a" is column 0 and column "b" is column 1. From within an +auxiliary function implementation, the xColumnCount +API may be used to determine how many columns the table being queried has. If +the xColumnCount() API is invoked from within the implementation of the +auxiliary function my_aux_function in the example above, it returns 2. + +
Data From Current Row: xColumnText, xRowid + +
The xRowid API may be used to find the rowid value +for the current row. The xColumnText may be used +to obtain the text stored in a specified column of the current row. + +
Token Counts: xColumnSize, xColumnTotalSize + +
FTS5 divides documents inserted into an fts table into tokens. These are +usually just words, perhaps folded to either upper or lower case and with any +punctuation removed. For example, the default +unicode61 tokenizer tokenizes the text "The +tokenizer is case-insensitive" to a list of 5 tokens - "the", "tokenizer", is", +"case" and "insensitive". Exactly how tokens are extracted from text is +determined by the tokenizer. + +
The auxiliary functions API provides functions to query for both the number +of tokens in a specified column of the current row (the +xColumnSize API), or for the number of tokens in a +specified column of all rows of the table (the xColumnTotalSize API). For the example at the +top of this section, when visiting row 1, xColumnSize returns 2 for column 0 +and 3 for column 1. xColumnTotalSize returns 6 for column 0 and 9 for column 1 +regardless of the current row. + +
The Current Full-Text Query: xPhraseCount, xPhraseSize, xQueryToken + +
An FTS5 query contains one or more phrases. The +xPhraseCount, xPhraseSize +and xQueryToken APIs allow an auxiliary function +implementation to query the system for details of the current query. The +xPhraseCount API returns the number of phrases in the current query. For +example, if an FTS5 table is queried as follows: + +
+ +SELECT my_aux_function(ft) FROM ft('ab AND "cd ef gh" OR ij + kl') +and the xPhraseCount() API invoked from within the implementation of the +auxiliary function, it returns 3 (the three phrases being "ab", "ce ef gh" and +"ij kl"). + +
Phrases are numbered in order of appearance within a query starting from 0. +The xPhraseSize() API may be used to query for the number of tokens in a +specified phrase of the query. In the example above, phrase 0 contains 1 token, +phrase 1 contains 3 tokens, and phrase 2 contains 2. + +
The xQueryToken API may be used to access the text of a specified token +within a specified phrase of the query. Tokens are numbered within their +phrases from left to right starting from 0. For example, if the xQueryToken +API is used to request token 1 of phrase 2 in the example above, it returns +the text "kl". Token 0 of phrase 0 is "ab". + +
Phrase Hits in the Current Row: xPhraseFirst, xPhraseNext + +
These two API functions may be used to iterate through the matches for +a specified phrase of the query within the current row. Phrase matches are +identified by the column and token offset within the current row. For +example, say the following example table: + +
+ +CREATE VIRTUAL TABLE ft2 USING fts5(x, y); +INSERT INTO ft2(rowid, x, y) VALUES + (1, 'xxx one two xxx five xxx six', 'seven four'), + (2, 'five four four xxx six', 'three four five six four five six'); +is queried with: + +
+ +SELECT my_aux_function(ft2) FROM ft2( + '("one two" OR "three") AND y:four NEAR(five six, 2)' +); +The query above contains 5 phrases - "one two", "three", "four", +"five" and "six". It matches all rows of the table, so the auxiliary +function is invoked for each row. + +
In row 1, for phrase 0, "one two", there is exactly one match to iterate +through - at column 0 token offset 1. The column number is 0 because the +match appears in the left most column. The token offset is 1 because there +is exactly one token ("xxx") before the phrase match in the column value. +For phrase 1, "three", there are no matches. Phrase 2, "four", has one +match, at column 1, token offset 0. Phrase 3, "five", has one match at +column 0, token offset 4, and phrase 4, "six", has one match at column 0 +token offset 6. + +
The set of matches for each phrase in each row of the example is presented +in the table below. Each match is notated as (column-number, token-offset): + +
+
+ +Row Phrase 0 Phrase 1 Phrase 2 Phrase 3 Phrase 4 + 1 (0, 1) (1, 1) (0, 4) (0, 6) + 2 (1,0) (1, 1), (1,4) (1, 2), (1, 5) (1, 3), (1, 6) + The second row is slightly more complicated. There were no occurrences of +phrase 0. Phrase 1 ("three") appears once, at column 1 token offset 0. Although +there are instances of phrase 2 ("four") in column 0, none of them are reported +by the API, as phrase 4 has a column filter - +"y:". Matches that are filtered out by column filters do not count. Similarly, +although phrases 3 and 4 do occur in column "x" of row 2, they are filtered +out by the NEAR filter. Matches that are +filtered out by NEAR filters do not count either. + +
Phrase Hits in the Current Row (2): xInstCount, xInst + +
The xInstCount and xInst APIs +provide access to the same information as the xPhraseFirst and xPhraseNext +described above. The difference is that instead of iterating through the +matches for a single, specified phrase, the xInstCount/xInst APIs collate +all matches into a single flat array, sorted in order of occurrence within +the current row. Elements of this array may then be accessed randomly. + +
Each array element consists of three values: + +
+
+ +- A phrase number, +
- A column number, and +
- A token offset +
Using the same example data and query as for xPhraseFirst/xPhraseNext +above, the array accessible via xInstCount/xInst consists of the following +entries for each row: + +
+
+ +Row xInstCount/xInst array + 1 (0, 0, 1), (3, 0, 4), (4, 0, 6), (2, 1, 1) + 2 (1, 1, 0), (2, 1, 1), (3, 1, 2), (4, 1, 3), (2, 1, 4), (3, 1, 5), (4, 1, 6) + Each entry of the array is called a phrase match. Phrase matches are +numbered in order, starting from 0. So, in the example above, in row 2, phrase +match 3 is (4, 1, 3) - phrase 4 of the query matches at column 1, token offset +3. + +
+7.2.2. Custom Auxiliary Functions API Reference
struct Fts5ExtensionApi { int iVersion; /* Currently always set to 3 */ @@ -2443,8 +2627,8 @@ file of the source code.- void *(*xUserData)(Fts5Context*)
-Return a copy of the context pointer the extension function was - registered with. +Return a copy of the pUserData pointer passed to the xCreateFunction() + API when the extension function was registered.
- @@ -3090,9 +3274,9 @@ the subset of matches with rowids in the required range.
-
- The special structure record, - stored with id=1. -
- The special averages record, stored with id=10. +
- The special averages record, + stored with id=1.
- A record to store each segment b-tree leaf and doclist index leaf and internal node. See below for how id values are calculated for these @@ -3612,7 +3796,7 @@ CREATE VIRTUAL TABLE t1 USING fts5(
FTS5 has no matchinfo() or offsets() function, and the snippet() function is not as fully-featured as in FTS3/4. However, since FTS5 does provide -an API allowing applications to create custom auxiliary functions, any +an API allowing applications to create custom auxiliary functions, any required functionality may be implemented within the application code.
The set of built-in auxiliary functions provided by FTS5 may be @@ -3714,5 +3898,5 @@ using FTS5. the amount of processing that may take place within any given INSERT, UPDATE or DELETE operation.
This page last modified on 2024-03-27 20:33:18 UTC
+This page last modified on 2024-05-22 18:42:01 UTC
diff --git a/www/index.html b/www/index.html index 1bdbef9..55e8d59 100644 --- a/www/index.html +++ b/www/index.html @@ -189,7 +189,7 @@ is in the public-domain and is free to everyone to use for any purpose.Latest Release
-Version 3.45.3 (2024-04-15). +Version 3.46.0 (2024-05-23). Download Prior Releases diff --git a/www/json1.html b/www/json1.html index dacfb08..f768fd6 100644 --- a/www/json1.html +++ b/www/json1.html @@ -154,14 +154,15 @@ Table Of Contents - - - - - - - - + + + + + + + + +1. Overview
-+ +