mysql> create table mytbl(  c1 char(10)   character set latin1_de);
ERROR 1115: Unknown character set: 'latin1_de'
mysql> create table mytbl(  c1 char(10)   character set utf8);
ERROR 1115: Unknown character set: 'utf8'
mysql> create table mytbl(  c1 char(10)   character set  sjis);
ERROR 1115: Unknown character set: 'sjis'
mysql> select version();
+-----------------------+
| version()             |
+-----------------------+
| 4.1.0-alpha-max-debug |
+-----------------------+
1 row in set (0.01 sec)

mysql>

Hi again,

is this solved in a next release, Please ?

I need to insert statements in german language,
öäüß   
is part of that. 

Yours Sincerely

Morten Gulbrandsen



--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to