[sqlalchemy] Re: set character set in sqlalchemy?

2007-05-15 Thread Noam Raphael
On 15/05/07, Arnar Birgisson [EMAIL PROTECTED] wrote: Hi there, You can include a command in the dburi that is executed upon connection start. I use it all the time like this: mysql://user:[EMAIL PROTECTED]:3306/dbname?init_command=set%20character%20set%20utf8 Thanks for your help!

[sqlalchemy] Re: set character set in sqlalchemy?

2007-05-15 Thread Noam
I found something that works! Add ?charset=utf8 at the end of the url. Thanks again, Noam --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups sqlalchemy group. To post to this group, send email to

[sqlalchemy] Re: set character set in sqlalchemy?

2007-05-14 Thread Arnar Birgisson
Hi there, You can include a command in the dburi that is executed upon connection start. I use it all the time like this: mysql://user:[EMAIL PROTECTED]:3306/dbname?init_command=set%20character%20set%20utf8 Arnar On 5/14/07, Noam [EMAIL PROTECTED] wrote: Hello, I'm trying to use