MySQL数据库的编码机制

    Read

大家都知道从 MySQL4.1 版本开始,支持多种编码,包括我们熟知的 latin1、gbk、utf8、big5 等等,还有一些我们闻所未闻的。

在使用 PHP 连接 MySQL 查询出来的数据有的时候居然会是乱码,关于乱码的解决首先我们要了解 MySQL 的编码机制。SourceByrd's Weblog-https://note.t4x.org/other/mysql-data-coding/

拿 Discuz! 论坛为例,Discuz! 论坛在连接 MySQL 后会立即执行一个设定(见include/db_mysql.class.php ):


此三处的字符设定很大程度上会解决乱码问题,那么这三个设定具体有什么作用呢?如果我们了解了 MySQL 的编码机制,就可以避免在安装插件及平时的操作过程中产生乱码,还可以自行对论坛的数据进行转码。SourceByrd's Weblog-https://note.t4x.org/other/mysql-data-coding/

character_set_client 我们可以理解为 SQL 语句的编码,如果设置为 binary,MySQL 就当二进制来处理,character_set_connection 设定的值则告诉 MySQL 用来运行 SQL 语句的时候使用的编码,也就是说,程序发送给 MySQL 的 SQL 语句,会首先被 MySQL 从 character_set_client 指定的编码转换到 character_set_connection 指定的编码,如果 character_set_clien 指定的是 binary ,则 MySQL 就会把 SQL 语句按照 character_set_connection 指定的编码解释执行。SourceByrd's Weblog-https://note.t4x.org/other/mysql-data-coding/

当执行 SQL 语句的过程中,比如向数据库中插入取出数据的时候,字段也有编码设置,如果字段的编码设置和 character_set_connection 指定的不同,则 MySQL 会把插入的数据转换成字段设定的编码。SourceByrd's Weblog-https://note.t4x.org/other/mysql-data-coding/

当 SQL 执行完毕向客户端返回数据的时候,会把数据从字段指定的编码转换为 character_set_results 指定的编码,如果 character_set_results=NULL 则不做任何转换动作,(注意这里设置为 NULL 不等于没有设置,没有设置的时候 MySQL 会继承全局设置)。SourceByrd's Weblog-https://note.t4x.org/other/mysql-data-coding/

了解了 MySQL 的编码机制,我们就可以利用这个机制进行数据的转码以及避免在程序使用过程中出现乱码了。SourceByrd's Weblog-https://note.t4x.org/other/mysql-data-coding/

补充:SourceByrd's Weblog-https://note.t4x.org/other/mysql-data-coding/

mysql_query(“character_set_client=gbk”); 这句告诉 MySQL 我接下来要用的 SQL 语句的编码是 GBK 的SourceByrd's Weblog-https://note.t4x.org/other/mysql-data-coding/

mysql_query(“character_set_connection=gbk”); 这句 告诉 MySQL 要把 SQL 语句转换成 GBK 进行处理SourceByrd's Weblog-https://note.t4x.org/other/mysql-data-coding/

mysql_query(“character_set_results=gbk”); 这句告诉 MYSQL 查询返回的结果要统一都转换成 GBK 编码的SourceByrd's Weblog-https://note.t4x.org/other/mysql-data-coding/

来源:http://faq.comsenz.com/SourceByrd's Weblog-https://note.t4x.org/other/mysql-data-coding/ SourceByrd's Weblog-https://note.t4x.org/other/mysql-data-coding/

Today in History
March
16
申明:除非注明Byrd's Blog内容均为原创,未经许可禁止转载!详情请阅读版权申明!
Byrd
  • by Published on March 16, 2014
  • 原文链接:https://note.t4x.org/other/mysql-data-coding/
匿名

Comment

Anonymous

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: