How to reproduce:
- Run
Firebird 2.0 under Windows 10 (default charset is CP1251)
- Run
python3 under Linux (default charset is UTF-8) with fdb==2.0.2
- Run procedure that returns as an exception some cyrillic symbols
- See
'utf-8' codec can't decode byte 0xf2 in position 0: invalid continuation byte error
Stacktrace points into a fbcore.py:607
Probably, the solution can be to use a charset option from the connect method here but have no idea how to do this
How to reproduce:
Firebird 2.0underWindows 10(default charset isCP1251)python3underLinux(default charset isUTF-8) withfdb==2.0.2'utf-8' codec can't decode byte 0xf2 in position 0: invalid continuation byteerrorStacktrace points into a
fbcore.py:607Probably, the solution can be to use a
charsetoption from theconnectmethod here but have no idea how to do this