[sqlalchemy] Re: using Utf8 problem

2014-01-30 Thread Jeff Dairiki
On Thursday, January 30, 2014 6:11:15 AM UTC-8, Alexander Peprepelica wrote: I have such code engine = create_engine(u'mysql+mysqldb:// login:pass@127.0.0.1:3307/mydb?charset=utf8use_unicode=1') in windows all is fine But when I execute code in linux I have problem with unicode What I

[sqlalchemy] Re: using Utf8 problem

2014-01-30 Thread Jameson Lee
I would highly encourage that you use utf8mb4 instead of utf8 http://dev.mysql.com/doc/refman/5.5/en/charset-unicode-utf8mb4.html On Thursday, January 30, 2014 7:57:40 AM UTC-8, Jeff Dairiki wrote: On Thursday, January 30, 2014 6:11:15 AM UTC-8, Alexander Peprepelica wrote: I have such