aboutsummaryrefslogtreecommitdiff
path: root/src/sqlite.h.in
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2020-02-12 20:50:20 +0000
committerdrh <drh@noemail.net>2020-02-12 20:50:20 +0000
commitefdba1a8b3c6c967e7fae9c1989c40d420ce64cc (patch)
tree44f82f3b666a9058d3a831334cc4b42bcf68e150 /src/sqlite.h.in
parent41aa442cf4fd66cafbc37f3a1718aeb4c498a96f (diff)
downloadsqlite-efdba1a8b3c6c967e7fae9c1989c40d420ce64cc.tar.gz
sqlite-efdba1a8b3c6c967e7fae9c1989c40d420ce64cc.zip
Increase the default upper bound on the number of parameters in a single
SQL statement to 32766 (from 999). FossilOrigin-Name: 2def75693a8ae002375aff80db0e6c970c75f75e8b6ba64f2c518712badb0ae8
Diffstat (limited to 'src/sqlite.h.in')
-rw-r--r--src/sqlite.h.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqlite.h.in b/src/sqlite.h.in
index 367242bf2..0537ab69f 100644
--- a/src/sqlite.h.in
+++ b/src/sqlite.h.in
@@ -4199,7 +4199,7 @@ typedef struct sqlite3_context sqlite3_context;
** [sqlite3_bind_parameter_index()] API if desired. ^The index
** for "?NNN" parameters is the value of NNN.
** ^The NNN value must be between 1 and the [sqlite3_limit()]
-** parameter [SQLITE_LIMIT_VARIABLE_NUMBER] (default value: 999).
+** parameter [SQLITE_LIMIT_VARIABLE_NUMBER] (default value: 32766).
**
** ^The third argument is the value to bind to the parameter.
** ^If the third parameter to sqlite3_bind_text() or sqlite3_bind_text16()