Bootstrap

mysql中取出非汉字_mysql中汉字不是别的问题

主要是配置文件中的编码设置问题。

将MySQL/MySQL Server 5.0/下的配置文件删除只留下my这个配置文件。

将文件中文字编码改为:default-character-set=utf8。

并在dmysql后边加入:default-character-set=utf8。

如下:

[client]

port=3306

[mysql]

default-character-set=utf8

# SERVER SECTION

# ----------------------------------------------------------------------

#

# The following options will be read by the MySQL Server. Make sure that

# you have installed the server correctly (see above) so it reads this

# file.

#

[mysqld]

default-character-set=utf8

# The TCP/IP Port the MySQL Server will listen on

port=3306

更改完成后,保存。

重新启动mysql,新建数据库即可。(注意编码选择utf8)

;