Can someone tell me how to search greek word like 'β-term' in MySQL? I use linux, MySQL 5.14, table utf_general_ci. When I use normal search like Where termName='β-term'.

But mySQL returns me Empty result. But when i search through PHPmyAdmin (That shows the same SQL query) shows the results!

Further, I tried using hibernate - but in vain. Any special properties to set in hibernate for utf?

link|improve this question
1  
What encoding is the β character in? Where does the input come from? If it's from your console, you need to make sure it uses UTF-8 and not ISO-8859-1 – Pekka Aug 11 '11 at 8:05
try to use: mysql_query("SET NAMES 'utf8'"); – reven Oct 26 '11 at 12:36
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.