2005/12/19, Michael Bayer <[EMAIL PROTECTED]>: > 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) > >
It's ok! -- I like python! My Blog: http://www.donews.net/limodou NewEdit Maillist: http://groups.google.com/group/NewEdit ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://ads.osdn.com/?ad_idv37&alloc_id865&op=click _______________________________________________ Sqlalchemy-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/sqlalchemy-users

