https://www.sqlite.org/limits.html
*Maximum Length Of An SQL Statement*
 The maximum number of bytes in the text of an SQL statement is limited to
SQLITE_MAX_SQL_LENGTH which defaults to 1000000. You can redefine this
limit to be as large as the smaller of SQLITE_MAX_LENGTH and 1073741824.


but from the sources (3.24)
#ifndef SQLITE_MAX_SQL_LENGTH
# define SQLITE_MAX_SQL_LENGTH 1000000000
#endif
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to