sqlite/ext
drh e4d4d73397 Use Win32 APIs to read/write the console in Windows unless the
SQLITE_USE_STDIO_FOR_CONSOLE option is defined.  This is an attempt to get
the build working on MinGW.

FossilOrigin-Name: abfe488ed67e2e3510c230e656ecf203afa549ebd1d1872442f1fadc97d0817e
2024-11-11 17:02:29 +00:00
..
expert Avoid using LIKE in sqlite3expert.c, in case "PRAGMA case_sensitive_like" has been used or the "like" UDF replaced by something unexpected. 2024-10-21 10:47:24 +00:00
fts3 Fix a case in fts3 where a corrupt database record was not being handled correctly. 2024-11-09 17:54:51 +00:00
fts5 Fix harmless compiler warnings. 2024-11-04 19:18:19 +00:00
icu Beginnings of rephrasing #if SQLITE_CORE to #ifdef/ifndef for consistency, as discussed in [forum:cea40371c5e34b09 | forum post cea40371c5e34b09]. 2024-10-24 07:44:13 +00:00
intck First attempt at getting the build to work with Tcl 9.0. 2024-07-30 15:49:02 +00:00
jni JNI SQLTester: fix --new command to force-replace db if it already exists. Add no-op impls for --stmt-cache and --jsonglob commands. 2024-07-24 12:12:11 +00:00
lsm1 Ensure that all fields of static sqlite3_module objects are explicitly 2023-10-06 12:51:05 +00:00
misc Use Win32 APIs to read/write the console in Windows unless the 2024-11-11 17:02:29 +00:00
rbu Fix a harmless stray carriage-return character. 2024-09-06 14:01:48 +00:00
recover Fix an assert() failure in sqlite3recover.c. 2024-11-08 20:44:16 +00:00
repair Ensure that all fields of static sqlite3_module objects are explicitly 2023-10-06 12:51:05 +00:00
rtree Re-phrase some (#if !SQLITE_CORE) to (#ifndef SQLITE_CORE), as discussed in forum:cea40371c5e34b09 | for post cea40371c5e34b09]. 2024-11-06 12:58:31 +00:00
session Avoid loading the entire record into memory for an sqlite3_preupdate_old() call that retrieves an IPK value. 2024-11-04 16:59:02 +00:00
wasm Ensure that the ext/wasm fiddle build undefines certain shell feature flags which it cannot use but might be inherited from the top-level makefile. 2024-11-04 10:16:15 +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.