Bug #9418 | DOS codepages not available | ||
---|---|---|---|
Submitted: | 27 Mar 2005 10:47 | Modified: | 29 Sep 2005 19:21 |
Reporter: | David L Lambert | Email Updates: | |
Status: | Can't repeat | Impact on me: | |
Category: | MySQL Server: Command-line Clients | Severity: | S4 (Feature request) |
Version: | 4.1, 3.x | OS: | Windows (Windows ME/2000) |
Assigned to: | MySQL Verification Team | CPU Architecture: | Any |
[27 Mar 2005 10:47]
David L Lambert
[29 Sep 2005 18:32]
David L Lambert
Fixed in 5.x (or earlier?). ("SET CHARSET cp850;", etc.)
[29 Sep 2005 19:21]
MySQL Verification Team
On Linux: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 10 to server version: 4.1.15-debug-log Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> insert into yy values (1,"tio alemán"); Query OK, 1 row affected (0.00 sec) mysql> On Windows: c:\mysql\bin>mysql -hhegel -umiguel -p test Enter password: **** Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 11 to server version: 4.1.15-debug-log Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> set names cp850; Query OK, 0 rows affected (0.00 sec) mysql> insert into yy values (2, "tio alemán"); Query OK, 1 row affected (0.00 sec) mysql> select * from yy; +------+------------+ | xí | qù | +------+------------+ | 1 | tio alemán | | 2 | tio alemán | +------+------------+ 2 rows in set (0.00 sec) mysql>