I\'ve had difficult to set new limit for sql length in the sqlite (version 3.10.2). I read the sql documentation and I noticed there is a function that allows to change the
There is no SQL function for that. And the sqlite3_limit() function allows to reduce the connection's limits, but not to increase them.
To increase the maximum length of an SQL statement, you would have to recompile the SQLite library with different compilation options.