summaryrefslogtreecommitdiff
path: root/django/db/backends/dummy
Commit message (Expand)AuthorAgeFilesLines
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-3/+5
* Removed DatabaseIntrospection.get_key_columns().Mariusz Felisiak2021-11-101-1/+0
* Made DatabaseFeatures.uses_savepoints default to True.Tim Graham2018-10-251-0/+1
* Refs #27656 -- Updated django.db docstring verbs according to PEP 257.Anton Samarchyan2017-02-281-1/+1
* Removed DatabaseError and IntegrityError declarations from database backends.Adam Chainz2016-09-261-8/+0
* Fixed #27170 -- Added DatabaseWrapper class attributes to ease subclassing.Chris Jerdonek2016-09-081-11/+6
* Fixed #24394 -- Allowed running tests with empty default dictionary.Andrei Kulakov2015-03-252-2/+7
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-1/+1
* Fixed #22603 -- Reorganized classes in django.db.backends.Tim Graham2015-01-141-4/+7
* Fixed #22279 -- Prevented dummy backend going through DatabaseErrorWrapperClaude Paroz2014-12-291-0/+1
* Removed legacy transaction management per the deprecation timeline.Aymeric Augustin2014-03-211-2/+0
* A large number of stylistic cleanups across django/db/Alex Gaynor2013-07-081-1/+12
* Deprecated transaction.commit/rollback_unless_managed.Aymeric Augustin2013-03-111-2/+0
* Removed _enter/_leave_transaction_management.Aymeric Augustin2013-03-111-2/+0
* Added an API to control database-level autocommit.Aymeric Augustin2013-03-111-0/+1
* Added missing method in the dummy database backend.Aymeric Augustin2013-03-071-0/+3
* Reordered methods in database wrappers.Aymeric Augustin2013-03-021-7/+7
* Fixed #19192 -- Allowed running tests with dummy db backendClaude Paroz2013-01-041-1/+5
* Fixed #17883. Improved error message for old-style database backends.Paul McMillan2012-03-121-1/+3
* Fixed #3615: Added support for loading fixtures with forward references on da...Karen Tracey2011-08-071-0/+1
* Fixed #13630 -- Made __init__ methods of all DB backends' DatabaseOperations ...Ramiro Morales2011-04-051-1/+1
* Fixed #15293 -- Updated the dummy backend to support the APIs introduced by r...Russell Keith-Magee2011-02-141-13/+19
* Fixed #15230 -- added some more attributes to the dummy database backend.Alex Gaynor2011-02-061-0/+4
* Fixed #12991 -- Added unittest2 support. Thanks to PaulM for the draft patch,...Russell Keith-Magee2010-10-111-1/+1
* Changed a whole bunch of places to raise exception instances instead of old-s...Adrian Holovaty2010-01-101-1/+1
* Fixed #12428: Ensured that the dummy backend is installed correctly on a fres...Russell Keith-Magee2009-12-241-2/+5
* Fixed #1142 -- Added multiple database support.Russell Keith-Magee2009-12-221-2/+2
* Tweaked the dummy database backend initialisation.Malcolm Tredinnick2009-03-121-5/+3
* Fixed #10459 -- Refactored the internals of database connection objects so th...Adrian Holovaty2009-03-111-1/+1
* Removed some empty modules that are no longer required after [8296].Russell Keith-Magee2008-08-113-0/+0
* Fixed #5461 -- Refactored the database backend code to use classes for the cr...Russell Keith-Magee2008-08-114-18/+21
* Fixed #5255 -- It's now possible again to use Django without a database. This...Adrian Holovaty2007-08-251-5/+5
* Made various negligible formatting cleanups to the database backendsAdrian Holovaty2007-08-201-1/+1
* Refactored OPERATOR_MAPPING so that it exists as django.db.connection.operato...Adrian Holovaty2007-08-201-3/+2
* Implemented BaseDatabaseFeatures and changed all code to access it -- connect...Adrian Holovaty2007-08-201-5/+3
* Removed backend.dictfetchall(), as it wasn't being used anywhereAdrian Holovaty2007-08-201-1/+0
* Removed backend.dictfetchmany(), as it wasn't being used anywhereAdrian Holovaty2007-08-201-1/+0
* Removed backend.dictfetchone(), as it wasn't being used anywhereAdrian Holovaty2007-08-201-1/+0
* Refactored quote_name() to DatabaseOperations.quote_name(). Refs #5106Adrian Holovaty2007-08-201-1/+0
* Refactored get_start_transaction_sql() to DatabaseOperations.start_transactio...Adrian Holovaty2007-08-201-1/+0
* Refactored get_sql_sequence_reset() to DatabaseOperations.sequence_reset_sql(...Adrian Holovaty2007-08-201-1/+0
* Refactored get_sql_flush() to DatabaseOperations.sql_flush(). Refs #5106Adrian Holovaty2007-08-201-1/+0
* Refactored get_random_function_sql() to DatabaseOperations.random_function_sq...Adrian Holovaty2007-08-201-1/+0
* Refactored get_pk_default_value() to DatabaseOperations.pk_default_value(). R...Adrian Holovaty2007-08-191-1/+0
* Refactored get_max_name_length() to DatabaseOperations.max_name_length(). Ref...Adrian Holovaty2007-08-191-1/+0
* Refactored get_limit_offset_sql() to DatabaseOperations.limit_offset_sql(). R...Adrian Holovaty2007-08-191-1/+0
* Refactored get_last_insert_id() to DatabaseOperations.last_insert_id(). Refs ...Adrian Holovaty2007-08-191-1/+0
* Refactored get_fulltext_search_sql() to DatabaseOperations.fulltext_search_sq...Adrian Holovaty2007-08-191-1/+0
* Refactored get_drop_foreignkey_sql() to DatabaseOperations.drop_foreignkey_sq...Adrian Holovaty2007-08-191-1/+0
* Refactored get_deferrable_sql() to DatabaseOperations.deferrable_sql(). Refs ...Adrian Holovaty2007-08-191-1/+0