summaryrefslogtreecommitdiff
path: root/django/db/backends/dummy
AgeCommit message (Expand)Author
2025-07-23Refs #36500 -- Rewrapped long docstrings and block comments via a script.django-bot
2025-02-16Fixed #35967 -- Deferred test suite fixtures serialization after all dbs setup.Simon Charette
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2021-11-10Removed DatabaseIntrospection.get_key_columns().Mariusz Felisiak
2018-10-25Made DatabaseFeatures.uses_savepoints default to True.Tim Graham
2017-02-28Refs #27656 -- Updated django.db docstring verbs according to PEP 257.Anton Samarchyan
2016-09-26Removed DatabaseError and IntegrityError declarations from database backends.Adam Chainz
2016-09-08Fixed #27170 -- Added DatabaseWrapper class attributes to ease subclassing.Chris Jerdonek
2015-03-25Fixed #24394 -- Allowed running tests with empty default dictionary.Andrei Kulakov
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2015-01-14Fixed #22603 -- Reorganized classes in django.db.backends.Tim Graham
2014-12-29Fixed #22279 -- Prevented dummy backend going through DatabaseErrorWrapperClaude Paroz
2014-03-21Removed legacy transaction management per the deprecation timeline.Aymeric Augustin
2013-07-08A large number of stylistic cleanups across django/db/Alex Gaynor
2013-03-11Deprecated transaction.commit/rollback_unless_managed.Aymeric Augustin
2013-03-11Removed _enter/_leave_transaction_management.Aymeric Augustin
2013-03-11Added an API to control database-level autocommit.Aymeric Augustin
2013-03-07Added missing method in the dummy database backend.Aymeric Augustin
2013-03-02Reordered methods in database wrappers.Aymeric Augustin
2013-01-04Fixed #19192 -- Allowed running tests with dummy db backendClaude Paroz
2012-03-12Fixed #17883. Improved error message for old-style database backends.Paul McMillan
2011-08-07Fixed #3615: Added support for loading fixtures with forward references on da...Karen Tracey
2011-04-05Fixed #13630 -- Made __init__ methods of all DB backends' DatabaseOperations ...Ramiro Morales
2011-02-14Fixed #15293 -- Updated the dummy backend to support the APIs introduced by r...Russell Keith-Magee
2011-02-06Fixed #15230 -- added some more attributes to the dummy database backend.Alex Gaynor
2010-10-11Fixed #12991 -- Added unittest2 support. Thanks to PaulM for the draft patch,...Russell Keith-Magee
2010-01-10Changed a whole bunch of places to raise exception instances instead of old-s...Adrian Holovaty
2009-12-24Fixed #12428: Ensured that the dummy backend is installed correctly on a fres...Russell Keith-Magee
2009-12-22Fixed #1142 -- Added multiple database support.Russell Keith-Magee
2009-03-12Tweaked the dummy database backend initialisation.Malcolm Tredinnick
2009-03-11Fixed #10459 -- Refactored the internals of database connection objects so th...Adrian Holovaty
2008-08-11Removed some empty modules that are no longer required after [8296].Russell Keith-Magee
2008-08-11Fixed #5461 -- Refactored the database backend code to use classes for the cr...Russell Keith-Magee
2007-08-25Fixed #5255 -- It's now possible again to use Django without a database. This...Adrian Holovaty
2007-08-20Made various negligible formatting cleanups to the database backendsAdrian Holovaty
2007-08-20Refactored OPERATOR_MAPPING so that it exists as django.db.connection.operato...Adrian Holovaty
2007-08-20Implemented BaseDatabaseFeatures and changed all code to access it -- connect...Adrian Holovaty
2007-08-20Removed backend.dictfetchall(), as it wasn't being used anywhereAdrian Holovaty
2007-08-20Removed backend.dictfetchmany(), as it wasn't being used anywhereAdrian Holovaty
2007-08-20Removed backend.dictfetchone(), as it wasn't being used anywhereAdrian Holovaty
2007-08-20Refactored quote_name() to DatabaseOperations.quote_name(). Refs #5106Adrian Holovaty
2007-08-20Refactored get_start_transaction_sql() to DatabaseOperations.start_transactio...Adrian Holovaty
2007-08-20Refactored get_sql_sequence_reset() to DatabaseOperations.sequence_reset_sql(...Adrian Holovaty
2007-08-20Refactored get_sql_flush() to DatabaseOperations.sql_flush(). Refs #5106Adrian Holovaty
2007-08-20Refactored get_random_function_sql() to DatabaseOperations.random_function_sq...Adrian Holovaty
2007-08-19Refactored get_pk_default_value() to DatabaseOperations.pk_default_value(). R...Adrian Holovaty
2007-08-19Refactored get_max_name_length() to DatabaseOperations.max_name_length(). Ref...Adrian Holovaty
2007-08-19Refactored get_limit_offset_sql() to DatabaseOperations.limit_offset_sql(). R...Adrian Holovaty
2007-08-19Refactored get_last_insert_id() to DatabaseOperations.last_insert_id(). Refs ...Adrian Holovaty
2007-08-19Refactored get_fulltext_search_sql() to DatabaseOperations.fulltext_search_sq...Adrian Holovaty