mirror of
https://github.com/django/django.git
synced 2025-07-24 05:36:15 +00:00
Fixed BinaryField support on Oracle.
This commit is contained in:
parent
360217fc87
commit
8aefd30379
1 changed files with 2 additions and 0 deletions
|
@ -672,6 +672,8 @@ class OracleParam(object):
|
|||
param = "0"
|
||||
if hasattr(param, 'bind_parameter'):
|
||||
self.force_bytes = param.bind_parameter(cursor)
|
||||
elif isinstance(param, six.memoryview):
|
||||
self.force_bytes = param
|
||||
else:
|
||||
self.force_bytes = convert_unicode(param, cursor.charset,
|
||||
strings_only)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue