实例讲解MySQL数据库中文问题的解决方法_MySQL
Jun 01, 2016 pm 01:53 PMMySQL数据库中文问题的解决方法:
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。

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How does Go language implement the addition, deletion, modification and query operations of the database?

Where is the win10 user profile? How to set the user profile in Win10

Detailed tutorial on establishing a database connection using MySQLi in PHP

How does Hibernate implement polymorphic mapping?

iOS 18 adds a new 'Recovered' album function to retrieve lost or damaged photos

Analysis of the basic principles of MySQL database management system

An in-depth analysis of how HTML reads the database
