[sqlalchemy] Re: Collation and Column()

2010-02-11 Thread Christoph Burgmer
Thanks for your quick answer, On Feb 11, 1:32 am, Michael Bayer mike...@zzzcomputing.com wrote: if SQLite supports a COLLATE syntax, then sure we can accept patches for 0.6 /trunk. If you want instant gratification on sqlite just build yourself a UserDefinedType for now (again 0.6/trunk).

Re: [sqlalchemy] Re: Collation and Column()

2010-02-11 Thread Michael Bayer
On Feb 11, 2010, at 6:33 AM, Christoph Burgmer wrote: Thanks for your quick answer, On Feb 11, 1:32 am, Michael Bayer mike...@zzzcomputing.com wrote: if SQLite supports a COLLATE syntax, then sure we can accept patches for 0.6 /trunk. If you want instant gratification on sqlite just

[sqlalchemy] Re: Collation and Column()

2010-02-11 Thread Christoph Burgmer
On Feb 11, 2:20 pm, Michael Bayer mike...@zzzcomputing.com wrote: 0.4.8 you'd subclass TypeEngine. I don't think theres too much surprising going on there with types, plus sqlite accepts only unicode strings these days anyway so that's sort of handled too. Thanks, that looks promising.