From c2159dbf9372297cad8651d8e06e8e4d6df86718 Mon Sep 17 00:00:00 2001 From: jhdxr Date: Tue, 7 Oct 2014 14:48:57 +0800 Subject: [PATCH] fix issue #847 --- 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 12e4ac9e9..622f9b57f 100755 --- a/lib/core/common.py +++ b/lib/core/common.py @@ -2810,7 +2810,7 @@ def decodeIntToUnicode(value): if isinstance(value, int): try: # http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_ord - if Backend.getIdentifiedDbms() in (DBMS.MYSQL,): + if Backend.getIdentifiedDbms() in (DBMS.MYSQL, DBMS.ORACLE,): _ = "%x" % value if len(_) % 2 == 1: _ = "0%s" % _