Fixed #10224: Don't attempt to decode binary string data in the Oracle backend.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9821 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
f0a7470e40
commit
e9af96de1e
|
@ -450,7 +450,8 @@ class FormatStylePlaceholderCursor(object):
|
||||||
value = Decimal(value)
|
value = Decimal(value)
|
||||||
else:
|
else:
|
||||||
value = int(value)
|
value = int(value)
|
||||||
else:
|
elif desc[1] in (Database.STRING, Database.FIXED_CHAR,
|
||||||
|
Database.LONG_STRING):
|
||||||
value = to_unicode(value)
|
value = to_unicode(value)
|
||||||
casted.append(value)
|
casted.append(value)
|
||||||
return tuple(casted)
|
return tuple(casted)
|
||||||
|
|
Loading…
Reference in New Issue