Serhiy Storchaka <storchaka+cpyt...@gmail.com> added the comment:

There is also a problem with the sqlite3.InterfaceError raised when bind 
parameters with message "Error binding parameter XXX - probably unsupported 
type." It is raised not only for unsupported types, but:

* For too large integers (outside of the range of signed 64-bit integers).
* For too large strings and blobs with size <= INT_MAX but larger than the 
SQLite limit (1_000_000_000 by default). But OverflowError is raised for size 
>= INT_MAX.
* When memory error or any other error occurred inside SQLite.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue44859>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to