mirror of
https://github.com/django/django.git
synced 2024-11-29 14:46:18 +01:00
Fixed BinaryField support on Oracle.
This commit is contained in:
parent
360217fc87
commit
8aefd30379
@ -672,6 +672,8 @@ class OracleParam(object):
|
|||||||
param = "0"
|
param = "0"
|
||||||
if hasattr(param, 'bind_parameter'):
|
if hasattr(param, 'bind_parameter'):
|
||||||
self.force_bytes = param.bind_parameter(cursor)
|
self.force_bytes = param.bind_parameter(cursor)
|
||||||
|
elif isinstance(param, six.memoryview):
|
||||||
|
self.force_bytes = param
|
||||||
else:
|
else:
|
||||||
self.force_bytes = convert_unicode(param, cursor.charset,
|
self.force_bytes = convert_unicode(param, cursor.charset,
|
||||||
strings_only)
|
strings_only)
|
||||||
|
Loading…
Reference in New Issue
Block a user