One of the responses to a question I asked yesterday suggested that I should make sure my database can handle UTF-8 characters correctly. Anyone know how I can do this with MySQL?
Thanks!
Ben
|
1
|
One of the responses to a question I asked yesterday suggested that I should make sure my database can handle UTF-8 characters correctly. Anyone know how I can do this with MySQL? Thanks! Ben
|
||
|
|
|
mysql 4.1 and above has a default character set of UTF-8. you can verify this in your my.cnf file, remember to set both client and server ( if you have existing data that you wish to convert to UTF-8, dump your database, and import it back as UTF-8 making sure:
if you do want to migrate existing data remember to backup first! lots of weird choping of data can happen when things don't go as planned! some resources:
|
|||
|
|
|
|
to make this 'permanent', in
to check, go to the client and show some variables:
verify that they're all utf8, except |
||
|
|
|
|
SET NAMES UTF8 This is does the trick |
||
|
|
|
|
The charset is a property of the database (default) and the table. You can have a look (MySQL commands):
In other words; it's quite easy to check your database charset or change it:
|
||
|
|
|
|
These tips on MySQL and UTF-8 may be helpful. Unfortunately, they don't constitute a full solution, just common gotchas. |
||
|
|