Hello,

We're running into a problem with case in the reflected column names
between mac and windows both using sqlalchemy 0.4.0. For example, in
our mysql database, we have a table with columns named END_YEAR and
DESCRIPTION. On a windows box:

>>>print table.c
['table.END_YEAR', 'table.DESCRIPTION']

On a mac:

>>>print table.c
['table.end_year', 'table.description']

This causes our code not to work cross-platform, as referencing
columns through table.c is case-sensitive. Obviously we could get
around this, but it seems to be a bug.

We're not sure if this is a sqlalchemy issue or a discrepancy in
MySQLdb between mac and windows versions. Does anyone have any insight
into the cause?

Thanks,
Travis


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to