美文网首页
Python3 中使用cx_oracle模块执行sql报错 Un

Python3 中使用cx_oracle模块执行sql报错 Un

作者: 代码没写完还想上厕所 | 来源:发表于2020-10-27 09:54 被阅读0次

Python3 中使用cx_oracle模块执行sql报错 UnicodeEncodeError: 'ascii'

代码编码为utf-8,print编码为utf-8,数据插入数据库报错   
UnicodeEncodeError: 'ascii' codec can't encode character '\u200e' in position 254: ordinal not in range(128)
解决方法:

import os
os.environ['NLS_LANG'] = 'SIMPLIFIED CHINESE_CHINA.UTF8' 

相关文章

网友评论

      本文标题:Python3 中使用cx_oracle模块执行sql报错 Un

      本文链接:https://www.haomeiwen.com/subject/usvtvktx.html