On Wed, Mar 28, 2012 at 1:47 AM, Nuno Tavares <nuno.tavares@stripped> wrote:
> Halász, not sure if I understood correcly, but you "mysql" console/client
> may have different charsets. This means you should set it accordingly. Check
Good catch, I had not considered that.
> mysql> set names utf8;
> Query OK, 0 rows affected (0.00 sec)
>
> mysql> select convert(0xE29C94 using latin1), convert(0xE29C94 using utf8)
> \G
> *************************** 1. row ***************************
> convert(0xE29C94 using latin1): ✔
>
> convert(0xE29C94 using utf8): ✔
> 1 row in set (0.00 sec)
And THAT was what I expected. Thank you so much for clearing that up.
...Todd
--
Always code as if the guy who ends up maintaining your code will be a
violent psychopath who knows where you live. -- Martin Golding