up vote 2 down vote favorite
share [g+] share [fb]

Interesting question... if I have a MySQL table with CHARSET=utf8, and I open a connection with latin1 encoding, what happens?

I tried this, and even characters such as ß and æ could be stored and retrieved properly. Those characters are represented with different byte sequences in utf8 and in latin1, so I didn't expect it to work.

Is MySQL doing some kind of on-the-fly translation between character encodings?

link|improve this question
feedback

2 Answers

Yes, mysql does make a chrset conversion, depending on configuration. To change the chrset of your connection, you can use SET NAMES like

SET NAMES utf8;
link|improve this answer
It depends on setting the default-character-set variable. When You have Two different encoded databases (different charsets) you will get different fileencodings in the dumps – astropanic Sep 5 '09 at 19:13
feedback

No, try to dump the database to a file

mysqldump .... > file.sql and compare the encoding of the file

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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