[docs] [issue15460] SQLite cursor.description is not DB-API compatible

Gerhard Häring report at bugs.python.org
Fri Jul 27 21:32:30 CEST 2012


Gerhard Häring <gh at ghaering.de> added the comment:

SQLite's columns aren't typed, only SQLite values are. So it's entirely possible for the same column to have different types, like the NULL type, the INTEGER type and the TEXT type.

It's thus impossible to give meaningful type information in a SQLite3 DB-API module. That's why it's set to None instead.

----------
resolution:  -> wont fix
status: open -> closed

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue15460>
_______________________________________


More information about the docs mailing list