| ok, its just the capitalization in pubDate throwing it off. just checked in this patch to ansisql.py: +++ ansisql.py (working copy) @@ -158,9 +158,9 @@ # if we are within a visit to a Select, set up the "typemap" # for this column which is used to translate result set values if self.select_stack[-1].use_labels: - self.typemap.setdefault(column.label, column.type) + self.typemap.setdefault(column.label.lower(), column.type) else: - self.typemap.setdefault(column.key, column.type) + self.typemap.setdefault(column.key.lower(), column.type) On Dec 19, 2005, at 12:56 AM, limodou wrote:
|
- Re: [Sqlalchemy-users] Need I to convert the DateTime column... Michael Bayer

