summaryrefslogtreecommitdiff
path: root/django/db/backends/dummy/base.py
AgeCommit message (Expand)Author
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-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
2007-08-19Refactored get_drop_foreignkey_sql() to DatabaseOperations.drop_foreignkey_sq...Adrian Holovaty
2007-08-19Refactored get_deferrable_sql() to DatabaseOperations.deferrable_sql(). Refs ...Adrian Holovaty
2007-08-19Refactored get_datetime_cast_sql() to DatabaseOperations.datetime_cast_sql()....Adrian Holovaty
2007-08-19Refactored get_date_trunc_sql() to DatabaseOperations.date_trunc_sql(). Refs ...Adrian Holovaty
2007-08-19Refactored get_date_extract_sql() to DatabaseOperations.date_extract_sql(). R...Adrian Holovaty
2007-08-19Began implementing BaseDatabaseOperations class for every database backend. T...Adrian Holovaty
2007-06-28Fixed #4689 -- Added some missing methods to the dummy backend. Thanks for th...Russell Keith-Magee
2007-06-23Merged boulder-oracle-sprint branch (r3965:5512) back into trunk. AllMalcolm Tredinnick
2007-06-01rollback on dummy database now has no effect (previously raised an error). Th...Simon Willison
2007-04-25Fixed #3450 -- Exposed IntegrityError in a backend-neutral fashion. This is aMalcolm Tredinnick
2007-04-06Fixed #3790 -- Fixed a problem with sequence resetting during fixture loads w...Russell Keith-Magee
2007-03-01Fixes #2333 -- Added test fixtures framework.Russell Keith-Magee
2007-02-26Fixed #3390: the serializer can now contain forward references. Thanks, Russ.Jacob Kaplan-Moss
2006-11-07Fixed #2866: Added DATABASE_OPTIONS setting which gets passed as extra kwargs...Jacob Kaplan-Moss