Re: UTF8 Fulltext search case sensitive cyrillic
Posted by: Francois COLOMBIER
Date: March 01, 2008 08:54AM

Hi,

I've had the same problem.
It could have been solved by using COLLATE utf8_bin.

Example :
One entry is mytable is {id=2,name="Azolia",tel="....",.....}

SELECT * FROM mytable WHERE name='azolia';
returns entry where id=2, whereas
SELECT * FROM mytable WHERE name COLLATE utf8_bin ="azolia";
returns nothing.

Regards,
Francois

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: UTF8 Fulltext search case sensitive cyrillic
17422
March 01, 2008 08:54AM


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.