Home > Database > Mysql Tutorial > 实例讲解MySQL数据库中文问题的解决方法

实例讲解MySQL数据库中文问题的解决方法

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-07 16:17:28
Original
1064 people have browsed it

MySQL数据库中文问题的解决方法: 1.my.ini MySQL配置文件设置 [client] default-character-set=gbk [mysqld] default-character-set=gbk 2.启动MySQL服务创建你的数据库 3.验证当前编码 命令行输入: mysql -u root -p 登录你建立的数据库 connect yourdata

  MySQL数据库中文问题的解决方法:

  1.my.ini MySQL配置文件设置

  [client]

  default-character-set=gbk

  [mysqld]

  default-character-set=gbk

  2.启动MySQL服务创建你的数据库

  3.验证当前编码

  命令行输入:

  mysql -u root -p

  登录你建立的数据库

  >connect yourdatabasename

  输入数据库状态命令

  >status

  假如结果如下:

  Server characterset: gbk

  Db characterset: gbk

  Client characterset: gbk

  Conn. characterset: gbk

  则数据库字符集设置正确

  3.然后(注:可选),设置 JDBC URL后面加参数

  ?autoReconnect=true&useUnicode=true&characterEncoding=GBK

  这一步大家可以略过,,当前版本的jdbc驱动会自动识别MySQL数据库的字符集

  假如你使用的是utf8编码,可以更改default-character-set为utf8,MySQL默认的编码是latin1。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template