Re: [sqlalchemy] Hi,I found a codec bug,and I write a patch.

2010-01-13 Thread Ilia Kharin
If you use utf8 encoding in database you must set your character set in
connection url e.g.:
 engine = create_engine('mysql://root:@localhost/dev?charset=utf8')

...

 name1 = '中文中文'
 name1
'\xe4\xb8\xad\xe6\x96\x87\xe4\xb8\xad\xe6\x96\x87'
 print name1
中文中文
 ed_user = User(name1)
 session.add(ed_user)
 session.commit()
-- 

You received this message because you are subscribed to the Google Groups "sqlalchemy" group.

To post to this group, send email to sqlalch...@googlegroups.com.

To unsubscribe from this group, send email to sqlalchemy+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/sqlalchemy?hl=en.



Re: [sqlalchemy] Weird error with update

2009-11-25 Thread Ilia Kharin

 one advantage of this syntax is that Python will raise an exception that
 last_access does not exist.

yes, and it will be seen at first running

--

You received this message because you are subscribed to the Google Groups 
sqlalchemy group.
To post to this group, send email to sqlalch...@googlegroups.com.
To unsubscribe from this group, send email to 
sqlalchemy+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en.