Ticket #7139: 7510_oracle_typos.diff
File 7510_oracle_typos.diff, 863 bytes (added by , 17 years ago) |
---|
-
django/db/backends/oracle/query.py
1 1 """ 2 Custom Query class for this backend (a derivative of3 django.db.models.sql.query.Query). 2 Custom Query class for Oracle. 3 Derives from: django.db.models.sql.query.Query 4 4 """ 5 5 6 6 import datetime … … 12 12 13 13 def query_class(QueryClass, Database): 14 14 """ 15 Returns a custom djang .db.models.sql.query.Query subclass that is16 appropr aite for Oracle.15 Returns a custom django.db.models.sql.query.Query subclass that is 16 appropriate for Oracle. 17 17 18 18 The 'Database' module (cx_Oracle) is passed in here so that all the setup 19 19 required to import it only needs to be done by the calling module.