加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

PostgreSQL字符集问题导致乱码

发布时间:2020-12-13 16:45:55 所属栏目:百科 来源:网络整理
导读:在使用PostgreSQL数据库,输入中文时,会遇到“ERROR: invalid byte sequence for encoding "UTF8": 0xd6d0”的错误,原因是由于没有正确设置客户端字符集。 问题的原因: 默认情况下,PostgreSQL是不转换字符集的,如果你的数据库是UTF8的字符集,一般终端

在使用PostgreSQL数据库,输入中文时,会遇到“ERROR: invalid byte sequence for encoding "UTF8": 0xd6d0”的错误,原因是由于没有正确设置客户端字符集。

问题的原因:

默认情况下,PostgreSQL是不转换字符集的,如果你的数据库是UTF8的字符集,一般终端的中文字符集会设置为GBK,或en_US(查看终端的字符集可以看LANG环境变量的设置),所以你输入的中文是GBK的编码,这个编码不经转换的存入数据库中,而数据库是UTF8的,PostgreSQL一看没有这样的UTF8编码,所以当然报错了。

解决方法为:

方法一:设置postgresql的客户端编码为GBK,这时PostgreSQL就知道输入的内容是GBK编码的,这样PostgreSQL数据库会自动做字符集的转换,把其转换成UTF8编码。

方法二:直接设置终端的字符集编码为UTF8,让输入的编码直接为UTF8,而不是GBK。

看我具体的演示:

方法一:设置postgresql的客户端编码:

设置psql客户端字符集为GBK,方法有两种,一种是在psql中输入“encoding GBK” ,另一种是设置环境变量“export PGCLIENTENCODING=GBK”,演示:

[postgres@cacti ~]$ psql -d testdb03

psql.bin (9.5.9)

Type "help" for help.


testdb03=# l

testdb03=# select * from weather;

city | temp_lo | temp_hi | prcp | date

----------+---------+---------+------+------------

China07 | 49 | 61 | 3 | 1994-12-17

testdb03=# INSERT INTO weather (city,temp_lo,temp_hi,prcp,date) VALUES ('学校','43','10','2.0','1994-12-11');

INSERT 0 1

testdb03=# INSERT INTO weather (city,date) VALUES ('大学','1994-12-11');

INSERT 0 1

testdb03=# select * from weather;

city | temp_lo | temp_hi | prcp | date

----------+---------+---------+------+------------

China07 | 49 | 61 | 3 | 1994-12-17

学校 | 43 | 10 | 2 | 1994-12-11

大学 | 43 | 10 | 2 | 1994-12-11


修改pgsql客户端字符集为GBK,再次查看表内容:

testdb03=# encoding GBK

testdb03=# select * from weather;

city | temp_lo | temp_hi | prcp | date

----------+---------+---------+------+------------

China07 | 49 | 61 | 3 | 1994-12-17

У | 43 | 10 | 2 | 1994-12-11

′ | 43 | 10 | 2 | 1994-12-11

(7 rows)

出现乱码,原因是psql数据库在初始化是指定的的字符集是utf8.

再次插入中文报错:

testdb03=# INSERT INTO weather (city,date) VALUES ('小学','1994-12-11');

ERROR: character with byte sequence 0xad 0xa6 in encoding "GBK" has no equivalent in encoding "UTF8"


切换psql客户端的字符集为utf8字符集再次插入不再报错了:

testdb03=# encoding UTF8

testdb03=# select * from weather;

city | temp_lo | temp_hi | prcp | date

----------+---------+---------+------+------------

China07 | 49 | 61 | 3 | 1994-12-17

学校 | 43 | 10 | 2 | 1994-12-11

大学 | 43 | 10 | 2 | 1994-12-11

(7 rows)



testdb03=# INSERT INTO weather (city,'1994-12-11');

INSERT 0 1

testdb03=# select * from weather;

city | temp_lo | temp_hi | prcp | date

----------+---------+---------+------+------------

China07 | 49 | 61 | 3 | 1994-12-17

学校 | 43 | 10 | 2 | 1994-12-11

大学 | 43 | 10 | 2 | 1994-12-11

小学 | 43 | 10 | 2 | 1994-12-11

(8 rows)


testdb03=#



[postgres@cacti ~]$ export PGCLIENTENCODING=GBK

[postgres@cacti ~]$ psql -d testdb03

psql.bin (9.5.9)

Type "help" for help.


testdb03=# select * from weather;

city | temp_lo | temp_hi | prcp | date

----------+---------+---------+------+------------

China07 | 49 | 61 | 3 | 1994-12-17

У | 43 | 10 | 2 | 1994-12-11

′ | 43 | 10 | 2 | 1994-12-11

С | 43 | 10 | 2 | 1994-12-11

(8 rows)


testdb03=# INSERT INTO weather (city,'1994-12-11');

ERROR: character with byte sequence 0xad 0xa6 in encoding "GBK" has no equivalent in encoding "UTF8"


修改回源字符集UTF8

[postgres@cacti ~]$ export PGCLIENTENCODING=UTF8

[postgres@cacti ~]$

[postgres@cacti ~]$ psql -d testdb03

psql.bin (9.5.9)

Type "help" for help.


testdb03=# d

List of relations

Schema | Name | Type | Owner

--------+--------------+-------+----------

public | postgres_log | table | postgres

public | weather | table | postgres

(2 rows)


testdb03=# select * from weather;

city | temp_lo | temp_hi | prcp | date

----------+---------+---------+------+------------

China07 | 49 | 61 | 3 | 1994-12-17

学校 | 43 | 10 | 2 | 1994-12-11

大学 | 43 | 10 | 2 | 1994-12-11

小学 | 43 | 10 | 2 | 1994-12-11

(8 rows)


方法二:设置终端的编码为UTF8:

[postgres@dsc ~]$ export LANG=zh_CN.UTF8

然后修改终端软件的字符集编码,我使用的是SecureCRT,修改方法为:

Option->Session Option->外观->字符编码,把那个下拉框的内容改成“UTF8”:


然后再插入数据测试:


[postgres@dsc ~]$ psql -d testdb03

psql (8.4.3)

Type "help" for help.

testdb03=# select * from t;

id | name

----+----------

1 | 中国

2 | 我的中国

(2 rows)

testdb03=# insert into t values(3,'我的中国');

INSERT 0 1

testdb03=# select * from t;

id | name

----+----------

1 | 中国

2 | 我的中国

3 | 我的中国

(3 rows)

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读