How to make MySQL handle UTF-8 properly - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T19:10:48Zhttp://stackoverflow.com/feeds/question/202205http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/202205/how-to-make-mysql-handle-utf-8-properly4How to make MySQL handle UTF-8 properlyBen2008-10-14T18:09:31Z2008-10-15T16:05:36Z
<p>One of the responses to <a href="http://stackoverflow.com/questions/198721/converting-a-word-document-into-usable-html-in-php">a question I asked yesterday</a> suggested that I should make sure my database can handle UTF-8 characters correctly. Anyone know how I can do this with MySQL?</p>
<p>Thanks!</p>
<p>Ben</p>
http://stackoverflow.com/questions/202205/how-to-make-mysql-handle-utf-8-properly/202246#2022468Answer by Owen for How to make MySQL handle UTF-8 properlyOwen2008-10-14T18:21:03Z2008-10-15T16:05:36Z<p>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 <strong>both</strong> client and server (<code>default-character-set</code> and <code>character-set-server</code>).</p>
<p>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:</p>
<ul>
<li>use <code>SET NAMES utf8</code> before you query/insert into the database</li>
<li>use <code>DEFAULT CHARSET=utf8</code> when creating new tables</li>
<li>at this point your mysql client and server should be in UTF-8 (see my.cnf). remember any languages you use (such as PHP) must be utf-8 as well. some versions of PHP will use their own mysql client library, which may not be UTF-8 aware.</li>
</ul>
<p>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!</p>
<p>some resources:</p>
<ul>
<li><a href="http://www.oreillynet.com/onlamp/blog/2006/01/turning_mysql_data_in_latin1_t.html" rel="nofollow">complete UTF-8 migration</a> (cdbaby.com)</li>
<li>article on <a href="http://www.phpwact.org/php/i18n/utf-8" rel="nofollow">UTF-8 readiness of php functions</a> (note some of this information is outdated)</li>
</ul>
http://stackoverflow.com/questions/202205/how-to-make-mysql-handle-utf-8-properly/202248#2022481Answer by Claudio for How to make MySQL handle UTF-8 properlyClaudio2008-10-14T18:21:46Z2008-10-14T18:21:46Z<p>SET NAMES UTF8</p>
<p>This is does the trick</p>
http://stackoverflow.com/questions/202205/how-to-make-mysql-handle-utf-8-properly/202276#2022762Answer by Javier for How to make MySQL handle UTF-8 properlyJavier2008-10-14T18:30:19Z2008-10-14T18:30:19Z<p>to make this 'permanent', in <code>my.cf</code>:</p>
<pre><code>[client]
default-character-set=utf8
[mysqld]
character-set-server = utf8
</code></pre>
<p>to check, go to the client and show some variables:</p>
<pre><code>SHOW VARIABLES LIKE 'character_set%';
</code></pre>
<p>verify that they're all utf8, except <code>..._filesystem</code>, which should be <code>binary</code> and <code>..._dir</code>, that points somewhere in the MySQL installation.</p>
http://stackoverflow.com/questions/202205/how-to-make-mysql-handle-utf-8-properly/202287#2022870Answer by extraneon for How to make MySQL handle UTF-8 properlyextraneon2008-10-14T18:32:39Z2008-10-14T18:32:39Z<p>The charset is a property of the database (default) and the table.
You can have a look (MySQL commands):</p>
<pre><code>show create database foo;
> CREATE DATABASE `foo`.`foo` /*!40100 DEFAULT CHARACTER SET latin1 */
show create table foo.bar;
> lots of stuff ending with
> ) ENGINE=InnoDB AUTO_INCREMENT=252 DEFAULT CHARSET=latin1
</code></pre>
<p>In other words; it's quite easy to check your database charset or change it:</p>
<pre><code>ALTER TABLE `foo`.`bar` CHARACTER SET utf8;
</code></pre>
http://stackoverflow.com/questions/202205/how-to-make-mysql-handle-utf-8-properly/203775#2037750Answer by Ambush Commander for How to make MySQL handle UTF-8 properlyAmbush Commander2008-10-15T05:05:33Z2008-10-15T05:05:33Z<p>These <a href="http://htmlpurifier.org/docs/enduser-utf8.html#migrate-db" rel="nofollow">tips on MySQL and UTF-8</a> may be helpful. Unfortunately, they don't constitute a full solution, just common gotchas.</p>