Gast
#2006192
Auszug aus der Consolen Session, gestartet unter Cygwin mit
mysql -u root -p
password:*****
mysql> create table ttt(t char(100)) CHARACTER SET utf8 COLLATE
utf8_unicode_ci;
mysql> insert into ttt values ("Ä");
ERROR 1366 (HY000): Incorrect string value: '\x8E' for column 't' at row
1
mysql> show create table ttt;
+-------+---------------------------------------------------------------
--------
-----------------------------------------------------------------+
| Table | Create Table
|
+-------+---------------------------------------------------------------
--------
-----------------------------------------------------------------+
| ttt | CREATE TABLE `ttt` (
`t` char(100) COLLATE utf8_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci |
+-------+---------------------------------------------------------------
--------
-----------------------------------------------------------------+
1 row in set (0.00 sec)
Was könnte faul sein?
Liegt es eventuell gar nicht am mysql sondern an cygwin Konsole?