I'm using the mysql dbms to store pages from Wikipedia. I've set the character-set encoding to utf-8 (wikipedia encoding) in my.cnf file with the directive:
[mysqld]
character_set_server = utf8
And created my database with the 'chararacter set utf8' property definition.
I've also changed the charset-encoding for mysqld client by:
- inserting the
'charSet=utf8'property when initializing my jdbc driver. - doing a query to
'set names utf8'
However I've noticed that mysql server replaces some characters with others.
For example it replaces á with a.
UPDATE
I've run the command show variables like '%char%' ensuring that both character_set_client and character_set_set are utf8.
How can I store the correct chars in my db? Thanks!
new String([String Object].getBytes(), "UTF-8")before setting the parameter to store in the database? – Ravindra Gullapalli Feb 6 at 21:06new String([String Object].getBytes(), Charset.forName("UTF-8")), but it does not work. – user278064 Feb 6 at 21:51show variablescommand, what was the value ofcharacter_set_server? Did you try my suggestion below? – Eran Feb 6 at 22:26