Re: Can't identify character set and collation used in string comparisons
Posted by: Rick James
Date: July 21, 2013 12:29PM

> Charset for connection and rest: utf-8

Let's see this (for confirmation):
SHOW VARIABLES LIKE 'char%';

Let's further verify that you are using utf8 in the client:
SELECT HEX('ΓΈ');
I would expect one of these:
F8 -- latin1
C3B8 -- utf8
6F -- the client is mangling the string before it gets to MySQL.

> I can't find anything matching these tests.

There's always a new wrinkle in charset/collation issues. :(

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Can't identify character set and collation used in string comparisons
1996
July 21, 2013 12:29PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.