DB:Oracle11g
字符集:AMERICAN_AMERICA.WE8ISO8859P1
Python读数据时:
conn=cx_Oracle.connect(g_conn_str,encoding = "UTF-8", nencoding = "UTF-8")
这样写,还是乱码
还需要把有中文字段,编码进行转换:
中文字段.encode(‘latin1‘).decode(‘gbk‘)
Python 读取Oracle数据,中文乱码问题
原文:https://www.cnblogs.com/rainbo/p/10836302.html