问题:编码"GBK"的字符0x0xa8 0x27在编码"UTF8"没有相对应值
原因:客户端编码与服务端编码不一致
select name,setting,context from pg_settings where name like '%encoding%';
解决方案:修改客户端编码方式和服务端一致
\encoding UTF8
问题:编码"GBK"的字符0x0xa8 0x27在编码"UTF8"没有相对应值
原因:客户端编码与服务端编码不一致
select name,setting,context from pg_settings where name like '%encoding%';
解决方案:修改客户端编码方式和服务端一致
\encoding UTF8