Re: [sqlalchemy] raw sql execute and engine convert_unicode

2018-12-21 Thread Mike Bayer
I've thrown up no less than five dragons in the docs for these flags that should be up by now. I'm evaluating if I can deprecate these flags for 1.3 since really everything thats py2k only should be heading towards deprecation. On Fri, Dec 21, 2018, 11:48 AM Mike Bayer On Fri, Dec 21, 2018 at

Re: [sqlalchemy] raw sql execute and engine convert_unicode

2018-12-21 Thread Mike Bayer
On Fri, Dec 21, 2018 at 11:29 AM mdob wrote: > > Hi, > > I was looking into create_engine options enocding and convert_unicode and it > seems it works for ORM but not for executing raw sql. > Is that intentional or I'm missing something? the MySQL DBAPIs already handle unicode conversion by

[sqlalchemy] raw sql execute and engine convert_unicode

2018-12-21 Thread mdob
Hi, I was looking into create_engine options enocding and convert_unicode and it seems it works for ORM but not for executing raw sql. Is that intentional or I'm missing something? from sqlalchemy import create_engine from sqlalchemy.orm import Session from sqlalchemy.ext.automap import