I am having problems inserting chinese characters in MySQL. I am able to insert the chinese characters only in Query Browser / Workbench, but it comes out as '??' when using my program. I somehow managed to get it to work on my computer (Windows 7) , but when I tested it on another (Windows 7 too) , it came out as question marks. It also won't work on a Windows XP Chinese. Any help?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
The driver is transferring in UTF-8 seeing your comment on the connection string. The database table fields are probably specified UTF-8 too (check this). So you have a normal Unicode string in Java. Check that by a dump of In a web application you need to set the encoding before using the Writer. Otherwise you get such questing marks. Other possibilities to err are |
|||
|
|
?characterSetResults=UTF-8&characterEncoding=UTF-8&useUnicode=yesto the database URL because I saw it in some other post but it also wouldn't work. – louieansonng Jun 18 '11 at 13:56