新安装MySQL 5.0.37里边无法录入中文,数字与英文字母都正确,请教高手这个到底怎么弄呀?例如:录入中文“你好”,屏幕出现这样的错误提示错误 
MySQL 返回:Incorrect string value: '\xC4\xE3\xBA\xC3' for column 'ddd' at row 1我的数据表是这样的CREATE TABLE test (
   id int(10) unsigned NOT NULL auto_increment,
   ddd varchar(30) NOT NULL,
   PRIMARY KEY (id)
);
另外附上我电脑my.ini是这样的,请高手帮我看看是否是这里的错误[client]port=3306[mysql]default-character-set=gbk
[mysqld]
port=3306
basedir="C:/MySQL/"
datadir="C:/MySQL/Data/"
default-character-set=gbk
default-storage-engine=MYISAM
sql-mode="STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"max_connections=511query_cache_size=13Mtable_cache=1022tmp_table_size=16Mthread_cache_size=25myisam_max_sort_file_size=100Gmyisam_max_extra_sort_file_size=100Gmyisam_sort_buffer_size=8M
key_buffer_size=37Mread_buffer_size=64K
read_rnd_buffer_size=256K
sort_buffer_size=208K
skip-innodb
innodb_additional_mem_pool_size=2Minnodb_flush_log_at_trx_commit=1# The size of the buffer InnoDB uses for buffering log data. As soon as
# it is full, InnoDB will have to flush it to disk. As it is flushed
# once per second anyway, it does not make sense to have it very large
# (even with long transactions).
innodb_log_buffer_size=1Minnodb_buffer_pool_size=8M# Size of each log file in a log group. You should set the combined size
# of log files to about 25%-100% of your buffer pool size to avoid
# unneeded buffer pool flush activity on log file overwrite. However,
# note that a larger logfile size will increase the time needed for the
# recovery process.
innodb_log_file_size=10M# Number of threads allowed inside the InnoDB kernel. The optimal value
# depends highly on the application, hardware as well as the OS
# scheduler properties. A too high value may lead to thread thrashing.
innodb_thread_concurrency=8