summaryrefslogtreecommitdiff
path: root/django/db/__init__.py
AgeCommit message (Expand)Author
2024-06-24Fixed #35547 -- Added reset_queries to django.db.__all__.AjmalPonneth
2024-01-22Fixed #35130 -- Doc'd django.db.close_old_connections().Salvo Polizzi
2022-03-17Prevented initialization of unused database connections.Florian Apolloner
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2020-12-08Fixed #32233 -- Cleaned-up duplicate connection functionality.Florian Apolloner
2019-02-20Removed an outdated comment on DefaultConnectionProxy.Ran Benita
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2017-01-18Refs #23919 -- Removed obsolete __ne__() methods.Aymeric Augustin
2016-11-14Fixed E305 flake8 warnings.Ramin Farajpour Cami
2016-09-26Removed missing name in django.db __all__.Adam Chainz
2015-06-27Sorted imports in __init__.py files.Tim Graham
2015-05-17Fixed #23820 -- Supported per-database time zone.Aymeric Augustin
2014-06-11Fixed #21430 -- Added a RuntimeWarning when unpickling Models and QuerySets f...Anubhav Joshi
2014-06-07Fixed #3711, #6734, #12581 -- Bounded connection.queries.Aymeric Augustin
2014-03-21Removed unused imports.Tim Graham
2014-03-21Removed django.db.backend per deprecation timeline.Aymeric Augustin
2014-03-21Removed legacy transaction management per the deprecation timeline.Aymeric Augustin
2014-03-08Fixed #21188 -- Introduced subclasses for to-be-removed-in-django-XX warningsClaude Paroz
2013-07-08A large number of stylistic cleanups across django/db/Alex Gaynor
2013-07-08Fixed a bug I introduced in my previosu ommit.Alex Gaynor
2013-06-29Advanced deprecation warnings for Django 1.7.Aymeric Augustin
2013-05-23Delayed settings.DATABASE_ROUTERS usage by ConnectionRouterClaude Paroz
2013-05-23Delayed settings.DATABASES usage by ConnectionHandlerClaude Paroz
2013-05-23Fixed #20474 -- Proxied and deprecated django.db.backendClaude Paroz
2013-03-11Added some assertions to enforce the atomicity of atomic.Aymeric Augustin
2013-03-11Deprecated transaction.commit/rollback_unless_managed.Aymeric Augustin
2013-03-01Added import forgotten in 2ee21d9.Aymeric Augustin
2013-02-28Fixed tests broken in 2ee21d9.Aymeric Augustin
2013-02-28Implemented persistent database connections.Aymeric Augustin
2013-02-27Refactored database exceptions wrapping.Aymeric Augustin
2013-02-13Removed try-except in django.db.close_connection()Anssi Kääriäinen
2013-02-10Fixed #19707 -- Reset transaction state after requestsAnssi Kääriäinen
2012-10-28Fixed #18575 -- Empty DATABASES should default to dummy backendClaude Paroz
2011-12-16Fixed #17258 -- Moved `threading.local` from `DatabaseWrapper` to the `django...Julien Phalip
2011-07-13Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel
2011-03-30Removed legacy handing for `settings.DATABAS_*` and using short-form referenc...Alex Gaynor
2011-03-28Removed a bunch more Python 2.4 workarounds now that we don't support that ve...Adrian Holovaty
2011-02-19Fixed #15336 -- Silenced a warning about the DATABASES transition when a data...Russell Keith-Magee
2010-10-11Fixed #14436 -- Escalated 1.2 PendingDeprecationWarnings to DeprecationWarnin...Russell Keith-Magee
2010-10-06Fixed #14395 -- Fixed typo in error message in db/__init__.py. Thanks, agabelAdrian Holovaty
2010-08-05Fixed #13610 -- Improved error reporting when the ENGINE setting is ommitted ...Russell Keith-Magee
2010-01-29Fixed #12702 -- Introduced a common implementation of DatabaseError and Integ...Russell Keith-Magee
2010-01-22Fixed #12540, #12541 -- Added database routers, allowing for configurable dat...Russell Keith-Magee
2009-12-28Fixed #12452 -- Ensured that all connections are closed when a request is fin...Russell Keith-Magee
2009-12-22Fixed #1142 -- Added multiple database support.Russell Keith-Magee
2009-04-16Fixed #10833 -- Corrected load_backend so that it actually loads the requeste...Russell Keith-Magee
2009-03-18Fixed #8193: all dynamic imports in Django are now done correctly. I know thi...Jacob Kaplan-Moss
2009-03-13Improved the error message in case of an invalid DATABASE_BACKEND to ignore '...Adrian Holovaty
2009-03-13Fixed #10487 -- Refactored the database-backend-selection logic into a functi...Adrian Holovaty
2009-03-11Fixed #10459 -- Refactored the internals of database connection objects so th...Adrian Holovaty