From ca933fcf1d5630a2d2d9f2c5a9474290c7e488c9 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Mon, 16 Nov 2015 14:08:43 +0100 Subject: [PATCH] Another patch for #1539 --- lib/core/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/common.py b/lib/core/common.py index a15d7b768..1f28b5f25 100755 --- a/lib/core/common.py +++ b/lib/core/common.py @@ -2950,7 +2950,7 @@ def decodeIntToUnicode(value): if Backend.isDbms(DBMS.MSSQL): retVal = getUnicode(raw, "UTF-16-BE") - elif Backend.isDbms(DBMS.PGSQL): + elif Backend.getIdentifiedDbms() in (DBMS.PGSQL, DBMS.ORACLE): retVal = unichr(value) else: retVal = getUnicode(raw, conf.charset)