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

2012-07-27 Thread Gerhard Häring
Gerhard Häring 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

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

2012-07-27 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +ghaering ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

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

2012-07-27 Thread Tshepang Lekhonkhobe
Changes by Tshepang Lekhonkhobe : -- assignee: -> docs@python components: +Documentation -Library (Lib) nosy: +docs@python, tshepang ___ Python tracker ___ _

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

2012-07-26 Thread Charlie Clark
New submission from Charlie Clark : It says in the docs: """This read-only attribute provides the column names of the last query. To remain compatible with the Python DB API, it returns a 7-tuple for each column where the last six items of each tuple are None.""" According to the DB-API, howev