summaryrefslogtreecommitdiff
path: root/django/db/backends/oracle/base.py
AgeCommit message (Expand)Author
2013-09-30Fixed #21134 -- Prevented queries in broken transactions.Aymeric Augustin
2013-09-03[1.6.x] Replaced "not PY3" by "PY2", new in six 1.4.0.Aymeric Augustin
2013-07-30[1.6.x] Fixed #20785 -- Corrected exception caught for Oracle LIKE operator d...Shai Berger
2013-07-09[1.6.x] Fixed last_executed_query test failure on OracleShai Berger
2013-06-28Support 'pyformat' style parameters in raw queries, Refs #10070Shai Berger
2013-06-10Added a stealth option to flush to allow cascades.Aymeric Augustin
2013-05-27Fixed #20501 -- failure of datetime queries with timezones under OracleShai Berger
2013-05-22Fixed #20012 -- test_year_lookup_edge_case fails under OracleShai Berger
2013-05-22Fixed #20015 -- date__startswith('2008') fails under OracleShai Berger
2013-05-19Fixed test failures with Oracle when pytz isn't installed.Aymeric Augustin
2013-05-19Fixed #11442 -- Postgresql backend casts all inet types to textErik Romijn
2013-03-23Fixed #9055 -- Standardized behaviour of parameter escaping in db cursorsClaude Paroz
2013-03-11Fixed #20010 -- Make sure `last_executed_query` contains it's associated para...Simon Charette
2013-03-11Added an API to control database-level autocommit.Aymeric Augustin
2013-03-09Fixed BinaryField support on Oracle.Florian Apolloner
2013-03-02Reordered methods in database wrappers.Aymeric Augustin
2013-02-28Implemented persistent database connections.Aymeric Augustin
2013-02-27Refactored database exceptions wrapping.Aymeric Augustin
2013-02-23Fixed Oracle regression in last_executed_query() with unicode stringsAnssi Kääriäinen
2013-02-19Ensured a connection is established when checking the database version.Aymeric Augustin
2013-02-19Implemented Oracle version as a cached property.Aymeric Augustin
2013-02-18Factored out common code in database backends.Aymeric Augustin
2013-02-16Fixed #17260 -- Added time zone aware aggregation and lookups.Aymeric Augustin
2013-02-10Fixed #19638 -- Skipped tx support testing for some DBsAnssi Kääriäinen
2013-01-19Fixed #19606 -- Adjusted cx_Oracle unicode detection.Jani Tiainen
2012-11-27Fixed #19274 -- Made db connection creation overridable in subclassesAnssi Kääriäinen
2012-11-03Fixed #18963 -- Used a subclass-friendly patternAymeric Augustin
2012-10-27Fixed Oracle failure for "%" in table nameAnssi Kääriäinen
2012-08-29Replaced many smart_bytes by force_bytesClaude Paroz
2012-08-23[py3] Removed duplicate imports.Aymeric Augustin
2012-08-19[py3] Fixed Oracle specific failuresAnssi Kääriäinen
2012-08-09[py3] Renamed `next` to `__next__` in iterators.Aymeric Augustin
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
2012-07-24Fixed #18271 -- Changed stage at which TransactionTestCase flushes DB tables.Ramiro Morales
2012-07-22[py3] Replaced unicode/str by six.text_type/bytes.Aymeric Augustin
2012-07-22[py3] Replaced basestring by six.string_types.Aymeric Augustin
2012-07-22[py3] Removed longs.Aymeric Augustin
2012-07-22[py3] Exception aren't iterable in Python 3.Aymeric Augustin
2012-07-22[py3] Used six.reraise wherever necessary.Aymeric Augustin
2012-07-05Fixed #18330 - Made cache culling 3rd party db backend friendlyAnssi Kääriäinen
2012-06-26Fixed #18465 -- Set date formats correctly on OracleJosh Smeaton
2012-06-13Fixed connection.queries encoding handling on OracleAnssi Kääriäinen
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-05-22Fixed #18319 -- Added 'supports_sequence_reset' DB featureAnssi Kääriäinen
2012-05-10Replaced foo.next() by next(foo).Claude Paroz
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2012-03-17Fixed #17923 -- Added missing import in the MySQL and Oracle backends. Thanks...Aymeric Augustin
2012-02-27Fixed #17755 -- Ensured datetime objects that bypass the model layer (for ins...Aymeric Augustin
2012-01-22Fixed #10320 -- Made it possible to use executemany with iterators. Thanks Mo...Aymeric Augustin
2011-12-07Simplified time zone support in the Oracle backend. Avoided outputtypehandler...Aymeric Augustin