[sqlalchemy] Re: Reflecting tables, Unicodecolumnames and orm.mapper()

2008-04-24 Thread Saibot
Thank you for your help. I followed your advice and have overwritten the colums with umlauts with ascii-compatible names: Table('foo', metadata, Column(usomeunicodename, key=someasciiname), autoload=True ) To test this, i tried a select on my table, which resulted in another

[sqlalchemy] Re: Reflecting tables, Unicodecolumnames and orm.mapper()

2008-04-24 Thread Michael Bayer
On Apr 24, 2008, at 9:45 AM, Saibot wrote: Thank you for your help. I followed your advice and have overwritten the colums with umlauts with ascii-compatible names: Table('foo', metadata, Column(usomeunicodename, key=someasciiname), autoload=True ) OK the next step is to set the