ask
ask copied to clipboard
Query fails if condition is too big
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