DEV Community

Discussion on: Breaking out from the MySQL character-set hell

Collapse
 
moopet profile image
Ben Sinclair

The biggest thing I learnt about character sets and mysql was that if they're not explicitly set everywhere, make sure you use mysqldump -r to dump a database and SOURCE to read them back in rather than just redirecting stdin/stdout and expecting it to work.

Collapse
 
manish_demblani profile image
Manish Demblani

Can you elaborate more on that.