UnicodeDecodeError with pandas.read_sql

前端 未结 2 463
孤街浪徒
孤街浪徒 2021-01-05 10:07
UnicodeDecodeError: \'charmap\' codec can\'t decode byte 0x90 in position 8: character maps to 

Am seeing teh above error in a sim

2条回答
  •  失恋的感觉
    2021-01-05 10:56

    the proper encoding for your database is iso-8859-1 according to oracle docs so When you connect() to your database, pass the charset='iso-8859-1' or encoding='iso-8859-1' try both.

提交回复
热议问题