I have a table with the following columns:
ID
name
Both are indexed, both must be unique.
One post has name "ussé".
I try to insert a new post with the name "usse" and get the following error:
[MySQL][ODBC 5.3(w) Driver][mysqld-5.6.16-log]Duplicate entry 'usse' for key 'name'.
What the...? MySQL can't tell those two strings apart?
Is there some way to fix this?
All my text fields have "utf8 - default collation" selected. Does this make a difference? If I need to change it to something else, is there a way to do it quickly for all tex fields in all databases? There are so many that I would like to avoid going through them manually if I can.
My connection string:
DRIVER={MySQL ODBC 5.3 Unicode Driver}; SERVER=localhost;DATABASE=example; UID=example; PASSWORD=example; OPTION=3;