Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm having trouble to get unicode values out of mysql queries.

Here is how I do it now:

>>> from MySQLdb import connect
>>> from MySQLdb.cursors import DictCursor
>>> con = connect(
    passwd = "****",
    db = 'my_db',
    user = "db_user",
    host = "localhost",
    cursorclass = DictCursor,
    use_unicode=True,
    charset="utf8"
)
>>> cursor = con.cursor ()
>>> cursor.execute (u'Select * from basic_applet')
>>> res = cursor.fetchall()
>>> print(res)
({'Title_de': 'test title', .... })
>>> type(res[0]['Title_de'])
<type 'str'>

As you can see, it is not returning unicode.

In my table structure, Title_de is set as unicode.

IDbasic_applet  int(10)...
Title_de    varchar(75)     utf8_bin

I really don't know what I'm doing wrong, any help would be really welcome.

Thanks in advance,

Simon

share|improve this question

1 Answer

up vote 1 down vote accepted

What you get is a bytestring. You must decode it in order to get a unicode string. It basically comes down to this:

>>> byte_string = 'F\xe9vrier'
>>> byte_string.decode('UTF-8')
u'Février'
share|improve this answer
I understand that, the fact is that I thought it was possible to ask for unicode string instead of byte string. Do you know what is the effect of use_unicode=True? – Simon Rolin Sep 5 '11 at 19:19
It has the desired effect for me. My column definition contains CHARACTER SET UTF8 instead of utf8_bin. Afaik that's the only difference. – pvoosten Sep 5 '11 at 19:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.