Bug #14112 | UTF-8 | ||
---|---|---|---|
Submitted: | 18 Oct 2005 10:34 | Modified: | 19 Oct 2005 16:41 |
Reporter: | Robert Reichel | Email Updates: | |
Status: | Can't repeat | Impact on me: | |
Category: | MySQL Server | Severity: | S3 (Non-critical) |
Version: | 5.0.4. beta-nt | OS: | Windows (Windows XP) |
Assigned to: | MySQL Verification Team | CPU Architecture: | Any |
[18 Oct 2005 10:34]
Robert Reichel
[19 Oct 2005 16:41]
MySQL Verification Team
Looks to me that is an terminal client issue, having that like the Linux terminal konsole I was unable to repeat: mysql> select * from mytable; +---------+ | Title | +---------+ | ” | | č | +---------+ 2 rows in set (0.01 sec) mysql> select version(); +--------------+ | version() | +--------------+ | 5.0.16-debug | +--------------+ 1 row in set (0.01 sec) mysql>
[20 Oct 2005 6:55]
Robert Reichel
This test was made using Windows XP command prompt. Maybe you should try on Windows XP platform. I have tried once again with same result.
[23 Dec 2005 13:19]
thierry mounier
I had similar problems with PHP 5.1.1, mysql 5.0.16, and apache 2.0.55. All the transactions from/to the browser in UTF-8 were wrong. I just typed : mysql_query("SET NAMES 'utf8'"); after the line mysql_select_db($this->database); and all my problems were resolved. Thym