sqlite/ext
2023-09-14 20:02:49 +00:00
..
async Extend the refactoring into extensions. Clean up stray newlines. 2020-06-19 15:24:12 +00:00
expert Fix handling of columns with names that are SQL keywords in the ".expert" command. 2022-08-10 15:29:21 +00:00
fts3 Fix a problem with the new xIntegrity method for virtual tables, and also fix 2023-09-07 02:13:01 +00:00
fts5 Replace an if() condition in fts5 that is always true with an assert(). 2023-09-13 11:24:58 +00:00
icu Tweak sqlite3-worker1.js to be able to load either sqlite3.js or sqlite3-wasmfs.js, noting that the latter still does not load in a Worker because of an Emscripten loader bug. 2022-10-01 13:38:27 +00:00
jni JNI: move XTokenizeCallback interface out of the Fts5 object - that level of indirection is a holdover from when those classes were in the core package. 2023-09-14 20:02:49 +00:00
lsm1 Fix another issue with very large compressed LSM databases. 2023-01-17 19:34:01 +00:00
misc Rename the decimal_sci() function to decimal_exp(). 2023-08-18 15:39:38 +00:00
rbu Fix the rbu_exclusive_checkpoint=1 option so that it works with a zipvfs database in pass-through mode. 2023-05-11 17:25:14 +00:00
recover Remove SQLITE_EXTENSION_INIT macros from dbdata.c. 2023-06-08 20:49:25 +00:00
repair Remove references to the now-defunct SQLITE_ENABLE_JSON1 compile-time option. 2022-02-17 14:33:13 +00:00
rtree Change the xIntegrity virtual table method signature so that it returns 2023-09-06 14:00:01 +00:00
session Fix a buffer overread in the sessions extension that could occur when processing a corrupt changeset. 2023-09-07 13:53:09 +00:00
userauth Fix a problem in the userauth extension causing it to occasionally set "PRAGMA count_changes" (and some others) to true. 2020-01-21 13:40:35 +00:00
wasm Add a timer to the JS SQLTester app to warn if it appears that loading the module has failed, which is commonly caused by the test scripts not being compiled. 2023-09-01 17:51:09 +00:00
README.md Updates to README files under the ext/ hierarchy. No changes to code. 2017-03-15 20:27:46 +00:00

Loadable Extensions

Various loadable extensions for SQLite are found in subfolders.

Most subfolders are dedicated to a single loadable extension (for example FTS5, or RTREE). But the misc/ subfolder contains a collection of smaller single-file extensions.