I have a table in a Mysql 5.1 schema. Statement for create this table is:
CREATE TABLE `prova` (
`id` varchar(150) NOT NULL,
`name` varchar(150) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDb DEFAULT CHARSET=ucs2;
I have also a Java application, running on Ubuntu 10.10, that writes records in this table interfaced by Connector/J 5.1.14. Inserting records is done with Prepared Statement class.
When inserting a couple of records that differ for a marked char (e.g. ('aki kaurismäki','aki kaurismäki') and ('aki kaurismaki','aki kaurismaki')) I get a Duplicate key exception on second record. I tried to print query in the PreparedStatement before execution and it seems to be correct (I tried to execute this query manually from mysql command line client and get any error).
How could I solve this problem? Thanks in advance, Antonio
ucs2normalizes accented characters internally in comparisons, leading tokaurismäki=kaurismaki. I don't know whether there is a 16-bit alternative character set that does not show this behaviour – Pekka 웃 Jan 15 '11 at 13:13