summaryrefslogtreecommitdiff
path: root/django/db/backends/oracle/base.py
Commit message (Expand)AuthorAgeFilesLines
* Ensured a connection is established when checking the database version.Aymeric Augustin2013-02-191-1/+3
* Implemented Oracle version as a cached property.Aymeric Augustin2013-02-191-13/+17
* Factored out common code in database backends.Aymeric Augustin2013-02-181-16/+4
* Fixed #17260 -- Added time zone aware aggregation and lookups.Aymeric Augustin2013-02-161-8/+54
* Fixed #19638 -- Skipped tx support testing for some DBsAnssi Kääriäinen2013-02-101-0/+1
* Fixed #19606 -- Adjusted cx_Oracle unicode detection.Jani Tiainen2013-01-191-4/+5
* Fixed #19274 -- Made db connection creation overridable in subclassesAnssi Kääriäinen2012-11-271-57/+69
* Fixed #18963 -- Used a subclass-friendly patternAymeric Augustin2012-11-031-3/+1
* Fixed Oracle failure for "%" in table nameAnssi Kääriäinen2012-10-271-0/+4
* Replaced many smart_bytes by force_bytesClaude Paroz2012-08-291-5/+5
* [py3] Removed duplicate imports.Aymeric Augustin2012-08-231-2/+0
* [py3] Fixed Oracle specific failuresAnssi Kääriäinen2012-08-191-1/+10
* [py3] Renamed `next` to `__next__` in iterators.Aymeric Augustin2012-08-091-1/+3
* [py3] Ported django.utils.encoding.Aymeric Augustin2012-08-071-9/+9
* Fixed #18271 -- Changed stage at which TransactionTestCase flushes DB tables.Ramiro Morales2012-07-241-8/+13
* [py3] Replaced unicode/str by six.text_type/bytes.Aymeric Augustin2012-07-221-1/+1
* [py3] Replaced basestring by six.string_types.Aymeric Augustin2012-07-221-3/+4
* [py3] Removed longs.Aymeric Augustin2012-07-221-1/+1
* [py3] Exception aren't iterable in Python 3.Aymeric Augustin2012-07-221-9/+9
* [py3] Used six.reraise wherever necessary.Aymeric Augustin2012-07-221-9/+10
* Fixed #18330 - Made cache culling 3rd party db backend friendlyAnssi Kääriäinen2012-07-051-0/+7
* Fixed #18465 -- Set date formats correctly on OracleJosh Smeaton2012-06-261-5/+11
* Fixed connection.queries encoding handling on OracleAnssi Kääriäinen2012-06-131-1/+1
* Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz2012-06-071-5/+5
* Fixed #18319 -- Added 'supports_sequence_reset' DB featureAnssi Kääriäinen2012-05-221-0/+1
* Replaced foo.next() by next(foo).Claude Paroz2012-05-101-1/+1
* Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz2012-04-291-8/+8
* Fixed #17923 -- Added missing import in the MySQL and Oracle backends. Thanks...Aymeric Augustin2012-03-171-0/+1
* Fixed #17755 -- Ensured datetime objects that bypass the model layer (for ins...Aymeric Augustin2012-02-271-6/+17
* Fixed #10320 -- Made it possible to use executemany with iterators. Thanks Mo...Aymeric Augustin2012-01-221-0/+3
* Simplified time zone support in the Oracle backend. Avoided outputtypehandler...Aymeric Augustin2011-12-071-18/+6
* Added support for time zones. Thanks Luke Plant for the review. Fixed #2626.Aymeric Augustin2011-11-181-9/+36
* Fixed #12308 -- Added tablespace support to the PostgreSQL backend.Aymeric Augustin2011-10-141-2/+5
* Added an implementation of bulk insert via the ORM to the Oracle DB backend.Ramiro Morales2011-09-111-0/+5
* Fixed #3615: Added support for loading fixtures with forward references on da...Karen Tracey2011-08-071-0/+8
* Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel2011-07-131-4/+4
* More removal of poorly legible constructs to workaround Python 2.4 shortcomings.Ramiro Morales2011-06-101-3/+2
* Fixed #16155 -- Removed Python 2.4 compatibility constructs from code and men...Ramiro Morales2011-06-091-6/+0
* Fixed #14091 - be more correct about logging queries in connection.queries.Jacob Kaplan-Moss2011-04-221-0/+5
* Fixed #2705: added a `select_for_update()` clause to querysets.Jacob Kaplan-Moss2011-04-201-0/+2
* Fixed #15534: Made the Oracle runtime test for regex capabilities use the !Da...Ian Kelly2011-04-181-3/+2
* Fixed #13630 -- Made __init__ methods of all DB backends' DatabaseOperations ...Ramiro Morales2011-04-051-18/+16
* Added a skip for a test that fails in Oracle. Unlike other backends, Oracle ...Ian Kelly2011-03-081-0/+1
* Fixed #14149: Initialize the Oracle connection.operators at connection time s...Ian Kelly2011-01-241-1/+42
* Fixed #10154: Allow combining F expressions with timedelta values.Karen Tracey2010-12-221-0/+14
* Replaced an ImportError with ImproperlyConfigured in the Oracle backend.Ian Kelly2010-12-081-2/+5
* Fixed the Oracle environment variables not getting set correctly under Cygwin.Ian Kelly2010-12-031-6/+25
* Fixed #11706: Added an Oracle connection option to disable the use of RETURNI...Ian Kelly2010-12-011-1/+6
* Made the oracle backend throw the same ValueError as the mysql backend when a...Ian Kelly2010-11-121-0/+13
* Fixed a misapplied test skip feature in the oracle backend from r14139.Ian Kelly2010-11-121-1/+1