Cleaned up some comments in the Oracle backend. Fixes #7139. Thanks, adamv.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7514 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
1dee309198
commit
3c4d353016
|
@ -1,6 +1,6 @@
|
||||||
"""
|
"""
|
||||||
Custom Query class for this backend (a derivative of
|
Custom Query class for Oracle.
|
||||||
django.db.models.sql.query.Query).
|
Derives from: django.db.models.sql.query.Query
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import datetime
|
import datetime
|
||||||
|
@ -12,8 +12,8 @@ _classes = {}
|
||||||
|
|
||||||
def query_class(QueryClass, Database):
|
def query_class(QueryClass, Database):
|
||||||
"""
|
"""
|
||||||
Returns a custom djang.db.models.sql.query.Query subclass that is
|
Returns a custom django.db.models.sql.query.Query subclass that is
|
||||||
appropraite for Oracle.
|
appropriate for Oracle.
|
||||||
|
|
||||||
The 'Database' module (cx_Oracle) is passed in here so that all the setup
|
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.
|
required to import it only needs to be done by the calling module.
|
||||||
|
|
Loading…
Reference in New Issue