Subject Re: sqlalchemy ticket 2125
Author Philippe Makowski
Hi,

> http://www.sqlalchemy.org/trac/ticket/2125

work started
I made a public fork here :
https://bitbucket.org/pmakowski/sqlalchemy

feel free to help, test, etc

note it is a very first step (it don't pass yet dialect.test_firebird),
but I really prefer to focus on firebirdsql driver and I will not change
kinterbasdb

This will lead to improve firebirdsql driver

for now I have to face an unicode management problem :
firebirdsql use utf8 as default and return strings as u'a ' for example
and not 'a'
so a single test like
eq_(testing.db.scalar("select '%' from rdb$database"), "%")
return :
AssertionError: u'% ' != '%'