我正在尝试使用PANDAS从ORACLE读取数据:
pd.read_sql(sql, myORACLEinfo)
其中sql是一条select语句
我不拥有ORACLE表,也无法更改表日期。
pd.read_sql
返回此错误:
refresh 'charmap' codec can't decode byte 0x81 in position 1101:
character maps to <undefined>
是否有一种方法可以逃避/忽略此错误。
我尝试在炼金术的create_engine设置中添加encoding='iso-8859-1'
假设ORACLE的默认编码为iso-8859-1
,但这没有帮助