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 CharlieX
Recipients CharlieX
Date 2012-07-26.18:39:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1343327941.65.0.811204153568.issue15460@psf.upfronthosting.co.za>
In-reply-to
Content
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, however, the first two items, name and type, must be specified:
"""
The first two items (name and type_code) are mandatory, the other five are optional and are set to None if no meaningful values can be provided.
"""

Even with it's limited number of types SQLite is typed and should be able to return the type for column.
History
Date User Action Args
2012-07-26 18:39:01CharlieXsetrecipients: + CharlieX
2012-07-26 18:39:01CharlieXsetmessageid: <1343327941.65.0.811204153568.issue15460@psf.upfronthosting.co.za>
2012-07-26 18:39:01CharlieXlinkissue15460 messages
2012-07-26 18:39:00CharlieXcreate