Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/django/db/backends
Commit message (Expand)AuthorAgeFilesLines
* Fixed #20014 -- implemented get_key_columns() for OracleShai Berger2013-05-271-0/+12
* Fixed #20501 -- failure of datetime queries with timezone...Shai Berger2013-05-271-3/+4
* Fixed #20507 -- SubqueryConstraint alias handlingAnssi Kääriäinen2013-05-271-2/+1
* Replaced `and...or...` constructs with PEP 308 conditiona...Ramiro Morales2013-05-272-2/+2
* Fixed #20012 -- test_year_lookup_edge_case fails under Or...Shai Berger2013-05-221-0/+10
* Fixed #20015 -- date__startswith('2008') fails under OracleShai Berger2013-05-221-3/+0
* Fixed #20453 -- inspectdb test failure on OracleShai Berger2013-05-221-0/+1
* (Re-)moved some importsClaude Paroz2013-05-211-1/+2
* Fixed test failures with Oracle when pytz isn't installed.Aymeric Augustin2013-05-191-0/+6
* Merge pull request #1160 from erikr/host-inet-postgres2Aymeric Augustin2013-05-193-8/+8
|\
| * Fixed #11442 -- Postgresql backend casts all inet types t...Erik Romijn2013-05-193-8/+8
* | Merge pull request #1028 from manfre/patch-2Aymeric Augustin2013-05-191-2/+3
|\ \ | |/ |/|
| * Fixed documentation of disable_constraint_checkingMichael Manfre2013-04-241-2/+3
* | Fixed #20386 - Introspection problem on OracleShai Berger2013-05-181-1/+3
* | [py3] Stopped iterating on exceptions. Refs #20025.Aymeric Augustin2013-05-081-2/+2
* | Fixed #20025 -- Pointed to a MySQLdb fork for Python 3.Aymeric Augustin2013-05-082-2/+4
* | Fixed test failures on MySQL.Aymeric Augustin2013-05-081-0/+14
|/
* Fixed #16737 -- Support non-ascii column names in inspectdbClaude Paroz2013-04-012-4/+8
* Fixed getting max_digits for MySQL decimal fieldsClaude Paroz2013-04-011-1/+10
* Fixed #19220 -- Prevented decimals to be displayed in sci...Claude Paroz2013-03-311-1/+1
* Fixed #19954 -- Fixed MySQL _last_executed decodingClaude Paroz2013-03-281-2/+2
* Fixed #19385 again, now with real code changesAnssi Kääriäinen2013-03-241-0/+6
* Fixed #9055 -- Standardized behaviour of parameter escapi...Claude Paroz2013-03-235-8/+17
* Fixed #19968 -- Dropped support for PostgreSQL < 8.4.Aymeric Augustin2013-03-181-15/+4
* Improved recovery when the connection is closed in an ato...Aymeric Augustin2013-03-131-2/+8
* Made atomic usable when autocommit is off.Aymeric Augustin2013-03-131-3/+4
* Fixed #20010 -- Make sure `last_executed_query` contains ...Simon Charette2013-03-111-10/+7
* Avoided closing the database connection within a transact...Aymeric Augustin2013-03-111-1/+3
* Improved the API of set_autocommit.Aymeric Augustin2013-03-112-3/+3
* Added a safety net for developers messing with autocommit.Aymeric Augustin2013-03-111-0/+7
* Added an option to disable the creation of savepoints in ...Aymeric Augustin2013-03-111-0/+3
* Deprecated TransactionMiddleware and TRANSACTIONS_MANAGED.Aymeric Augustin2013-03-111-2/+2
* Made transaction management work even before the first SQ...Aymeric Augustin2013-03-111-0/+4
* Added some assertions to enforce the atomicity of atomic.Aymeric Augustin2013-03-111-0/+15
* Implemented an 'atomic' decorator and context manager.Aymeric Augustin2013-03-112-6/+36
* Added support for savepoints in SQLite.Aymeric Augustin2013-03-111-0/+10
* Refactored implementation of savepoints.Aymeric Augustin2013-03-111-19/+24
* Moved standard SQL for savepoints in the base backend.Aymeric Augustin2013-03-113-21/+3
* Deprecated transaction.is_managed().Aymeric Augustin2013-03-111-18/+12
* Deprecated transaction.commit/rollback_unless_managed.Aymeric Augustin2013-03-112-23/+0
* Removed superfluous code now that connections use autocom...Aymeric Augustin2013-03-112-22/+1
* Enabled database-level autocommit for all backends.Aymeric Augustin2013-03-112-1/+2
* Removed _enter/_leave_transaction_management.Aymeric Augustin2013-03-113-42/+15
* Added BaseDatabaseWrapper.ensure_connection.Aymeric Augustin2013-03-112-14/+24
* Expressed the dirty flag handling logic in terms of autoc...Aymeric Augustin2013-03-112-5/+2
* Stopped flipping the uses_savepoints feature at runtime.Aymeric Augustin2013-03-112-7/+4
* Enabled autocommit for PostgreSQL.Aymeric Augustin2013-03-112-10/+5
* Separated autocommit and isolation level handling for Pos...Aymeric Augustin2013-03-111-37/+41
* Added an API to control database-level autocommit.Aymeric Augustin2013-03-1110-10/+45
* Made transaction.managed a no-op and deprecated it.Aymeric Augustin2013-03-111-22/+7