ask icon indicating copy to clipboard operation
ask copied to clipboard

Query fails if condition is too big

Open xizzhu opened this issue 6 years ago • 0 comments

SQLite3 only allows at most 999 variables in a statement. Details here:

/*
** The maximum value of a ?nnn wildcard that the parser will accept.
*/
#ifndef SQLITE_MAX_VARIABLE_NUMBER
# define SQLITE_MAX_VARIABLE_NUMBER 999
#endif

xizzhu avatar Jan 05 '20 08:01 xizzhu