Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a212f0c commit ca933fcCopy full SHA for ca933fc
1 file changed
lib/core/common.py
@@ -2950,7 +2950,7 @@ def decodeIntToUnicode(value):
2950
2951
if Backend.isDbms(DBMS.MSSQL):
2952
retVal = getUnicode(raw, "UTF-16-BE")
2953
- elif Backend.isDbms(DBMS.PGSQL):
+ elif Backend.getIdentifiedDbms() in (DBMS.PGSQL, DBMS.ORACLE):
2954
retVal = unichr(value)
2955
else:
2956
retVal = getUnicode(raw, conf.charset)
0 commit comments