被 MySQL Server 接收到以后实际上已经发生了编码不一致的情况。但是由于 Latin1 字符集对于自己表述范围外的字符不会做任何处理,而是保留原值。这样的行为也使得错进错出成为了可能。
我们先提个小问题:在 MySQL 下,latin 编码的表可以存储中文数据吗?
答案是可以的。
MySQL 下,latin 表会对自己表述范围外的字符不会做任何处理,所以 latin 表中存储其他编码的数据是可以实现的。
我个人还是非常不建议读者们这样实现的。在 latin 表可以存储中文数据,就是一件非常 Dirty 的工作,是一个大坑,我就是被这样坑过来的,在各种encode
、decode
中迷失了自我。为了帮助其他人免受我之前的折磨,我才决定写下本篇文章。
那么在 latin 表里存储中文数据会有什么问题呢?
常见的在 latin 表中存储中文的数据一般为 GBK 编码和 UTF-8 编码,如果你不可避免的需要处理 latin 表里的中文数据,那么我这里可以提供两种处理方式( Python 2 的方式)。
处理要点:
# -*- coding: utf-8 -*-
或者# -*- coding: gbk -*-
);charset
为latin1
;unicode
类型以latin
编码的方式encode
,还原成对应编码的str
(这个时候可以根据自己的需要进行print
、或者写入到文件里等等各种操作,读者可自由发挥)缺点:
处理的 Python 脚本示例如下:
#!/usr/bin/python
# -*- coding: utf-8 -*- #在 Python 文件的开头指定编码,值为 GBK 或者 utf-8
import MySQLdb
# 作者为了方便,对原有的 MySQLdb 数据库类的一些 db 操作进行的一个简单的封装成 DataBase 这个类,大家也可以直接使用 MySQLdb
class DataBase(object):
def __init__(self, host="127.0.0.1", user="root", passwd="123456", db="test", charset="latin1"):
if not passwd:
self.db = MySQLdb.connect(host=host, user=user,
db=db, charset=charset)
else:
self.db = MySQLdb.connect(host=host, user=user, passwd=passwd,
db=db, charset=charset)
self.cursor = self.db.cursor()
def execute(self, sql):
try:
self.cursor.execute(sql)
self.db.commit()
results = self.cursor.fetchall()
return results
except Exception as e:
print(str(e))
def executemany(self, sql, param_list):
try:
self.cursor.executemany(sql, param_list)
self.db.commit()
except Exception as e:
print(str(e))
db = DataBase()
# 1. 写入数据
student_name = '小刚' # 该中文数据此时为 utf-8 的字符串
sql = "insert into test1 values (1, '%s', 'male')" %(student_name)
db.execute(sql)
# 2. 获取数据
sql = "select name from test1"
results = db.execute(sql)
for result in results:
print(type(result[0]))
print([result[0]]) # 查看这里打印出来的数据,你就会发现这里的不是正常的 unicode 数据,如果你直接 print 的话,在显示的时候编码转换就会发生异常
print(result[0].encode('latin1')) # 此时中文数据为 utf-8 编码,与脚本编码一致,可以正常打印
处理要点:
# -*- coding: utf-8 -*-
或者# -*- coding: gbk -*-
,根据你的习惯来设置);charset
为latin1
;unicode
类型,如u'小红'
unicode
以latin
编码的方式encode
,还原成对应编码的str
,最后再decode
成unicode
类型(我喜欢转换成unicode
类型,python 脚本在使用 print 函数打印unicode
类型的内容,unicode
会自动转换成合适的编码)处理的 Python 脚本示例如下:
#!/usr/bin/python
# -*- coding: utf-8 -*- #在 Python 文件的开头指定编码,值为 GBK 或者 utf-8
import MySQLdb
# 作者为了方便,对原有的 MySQLdb 数据库类的一些 db 操作进行的一个简单的封装成 DataBase 这个类,大家也可以直接使用 MySQLdb
class DataBase(object):
def __init__(self, host="127.0.0.1", user="root", passwd="123456", db="test", charset="latin1"):
if not passwd:
self.db = MySQLdb.connect(host=host, user=user,
db=db, charset=charset)
else:
self.db = MySQLdb.connect(host=host, user=user, passwd=passwd,
db=db, charset=charset)
self.cursor = self.db.cursor()
def execute(self, sql):
try:
self.cursor.execute(sql)
self.db.commit()
results = self.cursor.fetchall()
return results
except Exception as e:
print(str(e))
def executemany(self, sql, param_list):
try:
self.cursor.executemany(sql, param_list)
self.db.commit()
except Exception as e:
print(str(e))
db = DataBase()
# 1. 写入数据
student_name = u'小红' # 该中文数据此时为 unicode 类型
sql = "insert into test1 values (2, '%s', 'female')" %(student_name.encode('gbk')) # 我们将 unicode 数据根据自己需要,转换成对应编码,比如这里我转换成 gbk 编码
db.execute(sql)
# 2. 获取数据
sql = "select name from test1"
results = db.execute(sql)
for result in results:
print(type(result[0]))
print([result[0]]) # 查看这里打印出来的数据,你就会发现这里的不是正常的 unicode 数据,如果你直接 print 的话,在显示的时候编码转换就会发生异常
print(result[0].encode('latin1').decode('gbk')) # 此时中文数据为 unicode,转换成 unicode 则不会因为中文数据编码和脚本编码不一致而导致打印出现异常
实践可以让我们加深如何使用 Python 2 处理 MySQL latin 表里的中文数据。如果你手上的 latin 表是线上环境,我相信你也是不敢随意测试。下面就让我们手把手的把测试环境给搭建起来,好好地实践一番。
在你的 Linux 虚拟机上,我们通过 docker 快速拉起一个 MySQL 实例:
$ docker run -itd --name mysql-test -p 3306:3306 -e MYSQL_ROOT_PASSWORD=123456 mysql:5.7
这里我简单解释一下这条命令的意思:我们以mysql:5.7
这个镜像为模板,新启动一个命名为mysql-test
的容器,容器的3306
端口与母机的3306
端口关联,同时我们设置了mysql-test
容器里的 root 账号密码为 123456
注:docker 的安装和一些常用的 docker 命令这里就不展开篇幅了,网络上还是有不少不错的资源的,努力搜索一下。
# 通过命令行的方式连接至 MySQL 上
$ mysql -h 127.0.0.1 -u root -p'123456' --default-character-set=latin1
# 在 MySQL 的命令行终端下,执行以下三条 SQL
# 创建数据库
create database test;
use test;
# 创建测试用的 test1 表,表中包含了三个字段,我们后续将会在 name 字段中插入中文数据
create table test1 (
id INT PRIMARY KEY AUTO_INCREMENT,
name varchar(1024) NOT NULL,
sex varchar(1024) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1
操作过程如下所示:
$ mysql -h 127.0.0.1 -u root -p'123456' --default-character-set=latin1 #连接至我们新启动的 DB 上
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MySQL connection id is 37
Server version: 5.7.26 MySQL Community Server (GPL)
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MySQL [(none)]> create database test; # 建立测试用的 test 库;
MySQL [(none)]> use test;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
MySQL [test]> create table test1 (
id INT PRIMARY KEY AUTO_INCREMENT,
name varchar(1024) NOT NULL,
sex varchar(1024) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1; # 创建测试用的 test1 表
下面我们将演示,如何往 latin 表中写入和读取 utf-8 编码的中文数据
在你的家目录下,我们来新建一个测试用的 python 脚本,文件名为 test.py
$ touch test.py
$ vim test.py
我们将以下的文本内容,拷贝至 test.py 文件里:
#!/usr/bin/python
# -*- coding: gbk -*- #在 Python 文件的开头指定编码,值为 gbk 或者 utf-8
import MySQLdb
# 作者为了方便,对原有的 MySQLdb 数据库类的一些 db 操作进行的一个简单的封装成 DataBase 这个类,大家也可以直接使用 MySQLdb
class DataBase(object):
def __init__(self, host="127.0.0.1", user="root", passwd="123456", db="test", charset="latin1"):
if not passwd:
self.db = MySQLdb.connect(host=host, user=user,
db=db, charset=charset)
else:
self.db = MySQLdb.connect(host=host, user=user, passwd=passwd,
db=db, charset=charset)
self.cursor = self.db.cursor()
def execute(self, sql):
try:
self.cursor.execute(sql)
self.db.commit()
results = self.cursor.fetchall()
return results
except Exception as e:
print(str(e))
def executemany(self, sql, param_list):
try:
self.cursor.executemany(sql, param_list)
self.db.commit()
except Exception as e:
print(str(e))
db = DataBase()
# 1. 写入数据
student_name = u'小强' # 该中文数据此时为 unicode 类型
sql = "insert into test1 values (1, '%s', 'male')" %(student_name.encode('utf8')) # 我们将 unicode 数据根据自己需要,转换成对应编码,比如这里我转换成 utf8 编码
db.execute(sql)
# 2. 获取数据
sql = "select name from test1"
results = db.execute(sql)
for result in results:
print(type(result[0]))
print(result[0].encode('latin1').decode('utf8')) # 此时中文数据为 unicode,转换成 unicode 则不会因为中文数据编码和脚本编码不一致而导致打印出现异常
$ python test.py
脚本的执行结果如下:
<type 'unicode'>
小强
如果你需要在 DB 中存储中文数据,那我个人建议在建表的时候指定 utf8 编码,这样我们可以非常明确表中存储的中文数据就一定是 utf8 编码的。
1
jinyu121 2020-09-04 13:15:48 +08:00 via iPhone
人生苦短,请用 python3
|
2
Vegetable 2020-09-04 13:18:15 +08:00 1
嗯...我觉得吧,latin1 和 python2 的组合,我还是不看了吧
|