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
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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