Re: How to Insert Chinese into Mysql database with ASP
Posted by: Shuichi Tamagawa
Date: May 25, 2005 11:31AM

Chetan,

Let's see if it the server side configuration is OK before testing from ASP. Make sure that the values of character set are like below, before you create the table and insert the data.

mysql> show variables like 'char%';
+--------------------------+-----------------------------+
| Variable_name | Value |
+--------------------------+-----------------------------+
| character_set_client | big5 |
| character_set_connection | big5 |
| character_set_database | big5 |
| character_set_results | big5 |
| character_set_server | big5 |
| character_set_system | utf8 |
| character_sets_dir | C:\mysql\share\charsets\ |
+--------------------------+-----------------------------+

Above all, your client terminal (MS-DOS I guess?) have to support big5 encoding to display the character correctly.

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: How to Insert Chinese into Mysql database with ASP
4446
May 25, 2005 11:31AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.