Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
"""
|
2008-05-06 00:04:50 +08:00
|
|
|
Custom Query class for Oracle.
|
|
|
|
Derives from: django.db.models.sql.query.Query
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
"""
|
|
|
|
|
|
|
|
import datetime
|
|
|
|
|
|
|
|
from django.db.backends import util
|
|
|
|
|
|
|
|
# Cache. Maps default query class to new Oracle query class.
|
|
|
|
_classes = {}
|
|
|
|
|
|
|
|
def query_class(QueryClass, Database):
|
|
|
|
"""
|
2008-05-06 00:04:50 +08:00
|
|
|
Returns a custom django.db.models.sql.query.Query subclass that is
|
|
|
|
appropriate for Oracle.
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
|
|
|
The 'Database' module (cx_Oracle) is passed in here so that all the setup
|
|
|
|
required to import it only needs to be done by the calling module.
|
|
|
|
"""
|
|
|
|
global _classes
|
|
|
|
try:
|
|
|
|
return _classes[QueryClass]
|
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
class OracleQuery(QueryClass):
|
|
|
|
def resolve_columns(self, row, fields=()):
|
2008-10-11 01:15:58 +08:00
|
|
|
# If this query has limit/offset information, then we expect the
|
|
|
|
# first column to be an extra "_RN" column that we need to throw
|
|
|
|
# away.
|
|
|
|
if self.high_mark is not None or self.low_mark:
|
|
|
|
rn_offset = 1
|
|
|
|
else:
|
|
|
|
rn_offset = 0
|
|
|
|
index_start = rn_offset + len(self.extra_select.keys())
|
|
|
|
values = [self.convert_values(v, None)
|
|
|
|
for v in row[rn_offset:index_start]]
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
for value, field in map(None, row[index_start:], fields):
|
|
|
|
values.append(self.convert_values(value, field))
|
|
|
|
return values
|
|
|
|
|
|
|
|
def convert_values(self, value, field):
|
|
|
|
from django.db.models.fields import DateField, DateTimeField, \
|
|
|
|
TimeField, BooleanField, NullBooleanField, DecimalField, Field
|
|
|
|
if isinstance(value, Database.LOB):
|
|
|
|
value = value.read()
|
|
|
|
# Oracle stores empty strings as null. We need to undo this in
|
|
|
|
# order to adhere to the Django convention of using the empty
|
|
|
|
# string instead of null, but only if the field accepts the
|
|
|
|
# empty string.
|
|
|
|
if value is None and isinstance(field, Field) and field.empty_strings_allowed:
|
|
|
|
value = u''
|
|
|
|
# Convert 1 or 0 to True or False
|
|
|
|
elif value in (1, 0) and isinstance(field, (BooleanField, NullBooleanField)):
|
|
|
|
value = bool(value)
|
|
|
|
# Convert floats to decimals
|
|
|
|
elif value is not None and isinstance(field, DecimalField):
|
|
|
|
value = util.typecast_decimal(field.format_number(value))
|
|
|
|
# cx_Oracle always returns datetime.datetime objects for
|
|
|
|
# DATE and TIMESTAMP columns, but Django wants to see a
|
|
|
|
# python datetime.date, .time, or .datetime. We use the type
|
|
|
|
# of the Field to determine which to cast to, but it's not
|
|
|
|
# always available.
|
|
|
|
# As a workaround, we cast to date if all the time-related
|
|
|
|
# values are 0, or to time if the date is 1/1/1900.
|
|
|
|
# This could be cleaned a bit by adding a method to the Field
|
|
|
|
# classes to normalize values from the database (the to_python
|
|
|
|
# method is used for validation and isn't what we want here).
|
|
|
|
elif isinstance(value, Database.Timestamp):
|
|
|
|
# In Python 2.3, the cx_Oracle driver returns its own
|
|
|
|
# Timestamp object that we must convert to a datetime class.
|
|
|
|
if not isinstance(value, datetime.datetime):
|
|
|
|
value = datetime.datetime(value.year, value.month,
|
|
|
|
value.day, value.hour, value.minute, value.second,
|
|
|
|
value.fsecond)
|
|
|
|
if isinstance(field, DateTimeField):
|
|
|
|
# DateTimeField subclasses DateField so must be checked
|
|
|
|
# first.
|
|
|
|
pass
|
|
|
|
elif isinstance(field, DateField):
|
|
|
|
value = value.date()
|
|
|
|
elif isinstance(field, TimeField) or (value.year == 1900 and value.month == value.day == 1):
|
|
|
|
value = value.time()
|
|
|
|
elif value.hour == value.minute == value.second == value.microsecond == 0:
|
|
|
|
value = value.date()
|
|
|
|
return value
|
|
|
|
|
|
|
|
def as_sql(self, with_limits=True, with_col_aliases=False):
|
|
|
|
"""
|
|
|
|
Creates the SQL for this query. Returns the SQL string and list
|
|
|
|
of parameters. This is overriden from the original Query class
|
2008-08-23 04:26:20 +08:00
|
|
|
to handle the additional SQL Oracle requires to emulate LIMIT
|
|
|
|
and OFFSET.
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
|
|
|
If 'with_limits' is False, any limit/offset information is not
|
|
|
|
included in the query.
|
|
|
|
"""
|
2008-07-25 04:11:37 +08:00
|
|
|
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
# The `do_offset` flag indicates whether we need to construct
|
2008-08-23 04:26:20 +08:00
|
|
|
# the SQL needed to use limit/offset with Oracle.
|
2008-07-25 04:11:37 +08:00
|
|
|
do_offset = with_limits and (self.high_mark is not None
|
|
|
|
or self.low_mark)
|
2008-08-23 04:26:20 +08:00
|
|
|
if not do_offset:
|
|
|
|
sql, params = super(OracleQuery, self).as_sql(with_limits=False,
|
|
|
|
with_col_aliases=with_col_aliases)
|
|
|
|
else:
|
|
|
|
sql, params = super(OracleQuery, self).as_sql(with_limits=False,
|
|
|
|
with_col_aliases=True)
|
2008-08-20 07:04:34 +08:00
|
|
|
|
2008-08-23 04:26:20 +08:00
|
|
|
# Wrap the base query in an outer SELECT * with boundaries on
|
|
|
|
# the "_RN" column. This is the canonical way to emulate LIMIT
|
|
|
|
# and OFFSET on Oracle.
|
2008-10-18 08:00:20 +08:00
|
|
|
high_where = ''
|
2008-08-23 04:26:20 +08:00
|
|
|
if self.high_mark is not None:
|
2008-10-18 08:00:20 +08:00
|
|
|
high_where = 'WHERE ROWNUM <= %d' % (self.high_mark,)
|
|
|
|
sql = 'SELECT * FROM (SELECT ROWNUM AS "_RN", "_SUB".* FROM (%s) "_SUB" %s) WHERE "_RN" > %d' % (sql, high_where, self.low_mark)
|
2008-08-20 07:04:34 +08:00
|
|
|
|
|
|
|
return sql, params
|
Merged the queryset-refactor branch into trunk.
This is a big internal change, but mostly backwards compatible with existing
code. Also adds a couple of new features.
Fixed #245, #1050, #1656, #1801, #2076, #2091, #2150, #2253, #2306, #2400, #2430, #2482, #2496, #2676, #2737, #2874, #2902, #2939, #3037, #3141, #3288, #3440, #3592, #3739, #4088, #4260, #4289, #4306, #4358, #4464, #4510, #4858, #5012, #5020, #5261, #5295, #5321, #5324, #5325, #5555, #5707, #5796, #5817, #5987, #6018, #6074, #6088, #6154, #6177, #6180, #6203, #6658
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7477 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-04-27 10:50:16 +08:00
|
|
|
|
|
|
|
_classes[QueryClass] = OracleQuery
|
|
|
|
return OracleQuery
|