Change SQLITE_LIMIT_SQL_LENGTH for inserting large items at the same time - Sqlite3

前端 未结 1 845
情歌与酒
情歌与酒 2021-01-17 03:28

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

1条回答
  •  北海茫月
    2021-01-17 04:13

    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.

    0 讨论(0)
提交回复
热议问题