vote up 2 vote down star

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?

flag

2 Answers

vote up 1 vote down

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|flag
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 at 19:13
vote up -1 vote down

No, try to dump the database to a file

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

link|flag

Your Answer

Get an OpenID
or

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