[sqlalchemy] Re: problems with quoted Columnnames

2008-10-06 Thread Michael Bayer
test case: from sqlalchemy import * from sqlalchemy.orm import * from sqlalchemy.ext.declarative import DeclarativeMeta, declarative_base class DavBaseClass(DeclarativeMeta): def __init__(self,ClassName,Bases,dict_): dict_['displayname']= Column(Unicode(255),quote=True)

[sqlalchemy] Re: problems with quoted Columnnames

2008-10-06 Thread Martijn Moeling
I have been investigating some more and solved the issue by changing the unbound Unicode to UnicodeText I am using SA 0.5r1 and mysql 5.x the unbound Unicode worked with 0.4, I had to upgrade to 0.5 for some other stuff I used and this confused me. Nevertheless the Fields defined in the

[sqlalchemy] Re: problems with quoted Columnnames

2008-10-06 Thread Michael Bayer
try attaching a fully reproducing test case, since the one I created seems to work. On Oct 6, 6:45 pm, Martijn Moeling [EMAIL PROTECTED] wrote: I have been investigating some more and solved the issue by changing the unbound Unicode to UnicodeText I am using SA 0.5r1 and mysql 5.x the