show/hide this revision's text 2

Hello,

I have an scenario with two MySQL databases (in UTF-8), a Java code (a Timer Service) that synchronize both databases (reading form first of them and writing/updating to second) and a Web application that lets modify data loaded in the second database.

All database access are made using IBATIS (but I detect that I have the same problem using JDBC, PreparedStatements and ResultSets)

When my java code reads data from first database, I obtain characters like 'ó' when really it must be 'ó'. This data is wroten without modifications to the second database.

Later, when I see the loaded data in my web application, I see the extrange character despite the <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />.

If I decode the data using ...

new String(data.getBytes("UTF-8"));

... I visualize correctly the character (ó). But I can not use this solution as a general rule because when I modify data using web aplication form, the data is not updated in UTF-8 in my second database (despite the database is UTF-8 and my connection string is using characterEncoding, characterSetResults and useUnicode parameters).

From my Java code I obtain the following Database settings:

character_set_client-->utf8 character_set_connection-->utf8 character_set_database-->utf8 character_set_filesystem-->binary character_set_results-->utf8 character_set_server-->latin1 character_set_system-->utf8 character_sets_dir-->/usr/local/mysql51/share/mysql/charsets/

character_set_client-->utf8 
character_set_connection-->utf8 
character_set_database-->utf8 
character_set_filesystem-->binary 
character_set_results-->utf8 
character_set_server-->latin1 
character_set_system-->utf8 
character_sets_dir-->/usr/local/mysql51/share/mysql/charsets/

the character_set_server setting can't be changed and I don't know what I am doing wrong!!

How can i read UTF-8 data from MySQL using JDBC connector (mysql-connector-java-5.1.5-bin.jar)?

The problem is reading data from first database or writing to second database?

Thanks in advance,

Cesar

show/hide this revision's text 1

Problems reading/writing UTF-8 data in MySQL from Java using JDBC connector 5.1

Hello,

I have an scenario with two MySQL databases (in UTF-8), a Java code (a Timer Service) that synchronize both databases (reading form first of them and writing/updating to second) and a Web application that lets modify data loaded in the second database.

All database access are made using IBATIS (but I detect that I have the same problem using JDBC, PreparedStatements and ResultSets)

When my java code reads data from first database, I obtain characters like 'ó' when really it must be 'ó'. This data is wroten without modifications to the second database.

Later, when I see the loaded data in my web application, I see the extrange character despite the .

If I decode the data using ...

new String(data.getBytes("UTF-8"));

... I visualize correctly the character (ó). But I can not use this solution as a general rule because when I modify data using web aplication form, the data is not updated in UTF-8 in my second database (despite the database is UTF-8 and my connection string is using characterEncoding, characterSetResults and useUnicode parameters).

From my Java code I obtain the following Database settings:

character_set_client-->utf8 character_set_connection-->utf8 character_set_database-->utf8 character_set_filesystem-->binary character_set_results-->utf8 character_set_server-->latin1 character_set_system-->utf8 character_sets_dir-->/usr/local/mysql51/share/mysql/charsets/

the character_set_server setting can't be changed and I don't know what I am doing wrong!!

How can i read UTF-8 data from MySQL using JDBC connector (mysql-connector-java-5.1.5-bin.jar)?

The problem is reading data from first database or writing to second database?

Thanks in advance,

Cesar