This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author erlendaasland
Recipients erlendaasland, serhiy.storchaka
Date 2021-11-09.13:57:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1636466236.56.0.64882394823.issue45754@roundup.psfhosted.org>
In-reply-to
Content
> > What happens if set SQLITE_LIMIT_SQL_LENGTH to 0 [...]

In this case, the limit is actually zero:

    >>> cx.setlimit(sqlite3.SQLITE_LIMIT_SQL_LENGTH, 0)
    1024
    >>> cx.execute("select 1")
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
    sqlite3.DataError: string or blob too big
History
Date User Action Args
2021-11-09 13:57:16erlendaaslandsetrecipients: + erlendaasland, serhiy.storchaka
2021-11-09 13:57:16erlendaaslandsetmessageid: <1636466236.56.0.64882394823.issue45754@roundup.psfhosted.org>
2021-11-09 13:57:16erlendaaslandlinkissue45754 messages
2021-11-09 13:57:16erlendaaslandcreate