summaryrefslogtreecommitdiff
path: root/django/db/backends/__init__.py
AgeCommit message (Expand)Author
2014-08-05[1.7.x] Fixed #23061: Avoided setting a limit on a query for get with select_...Shai Berger
2014-06-19[1.7.x] Added feature for implied null (needed for Firebird backend)Tim Graham
2014-06-16[1.7.x] Renamed DatabaseFeature.supports_check_constraints to supports_column...Tim Graham
2014-06-14[1.7.x] Fixed #22816 -- Corrected Oracle feature flag and fixed introspection...Shai Berger
2014-06-09[1.7.x] Fixed #20420 -- Normalized query counts on Oracle.Aymeric Augustin
2014-06-09[1.7.x] Simplified handling of use_debug_cursor.Aymeric Augustin
2014-06-06Replaced an explicit vendor check by a feature flag.Aymeric Augustin
2014-06-05[1.7.x] Added a flag for the ability to introspect nullable fields.Aymeric Augustin
2014-05-28[1.7.x] Set straight the sense of 'uppercases_column_names' feature flagShai Berger
2014-05-10[1.7.x] Adjusted refactoring of vendor checks.Aymeric Augustin
2014-05-08[1.7.x] Added feature flags for introspection capabilities.Aymeric Augustin
2014-05-08[1.7.x] Split ignores_nulls_in_unique_constraints feature.Aymeric Augustin
2014-05-08[1.7.x] Replaced vendor checks by three feature flags.Aymeric Augustin
2014-04-26[1.7.x] Fix many many typos in comments throughout the codebaseAlex Gaynor
2014-04-26[1.7.x] Fixed #3214 -- Stopped parsing SQL with regex.Aymeric Augustin
2014-04-25[1.7.x] Fixed #21166 -- Reset errors_occurred flag after commit and rollback.Aymeric Augustin
2014-04-24[1.7.x] Ignored repeated calls to connection.close().Aymeric Augustin
2014-04-10[1.7.x] Fixed #21239 -- Maintained atomicity when closing the connection.Aymeric Augustin
2014-04-09[1.7.x] Fixed #21553 -- Ensured unusable database connections get closed.Aymeric Augustin
2014-03-25[1.7.x] Fixed #12030 -- Validate integer field range at the model level.Simon Charette
2014-03-08Fixed #21188 -- Introduced subclasses for to-be-removed-in-django-XX warningsClaude Paroz
2014-03-03Fixed many typos in comments and docstrings.Rodolfo Carvalho
2014-02-15Fixed typo in docstring.Rodolfo Carvalho
2014-02-09Fixed #21844: Move quote_parameter off of Operations and renameAndrew Godwin
2014-02-09Fixed #21842: Remove redundant DatabaseFeatures.max_index_name_lengthAndrew Godwin
2014-02-06Fixed #17713 -- Renamed BaseDatabaseFeatures.allows_primary_key_0 to allows_a...Vajrasky Kok
2014-02-02Ensure cursors are closed when no longer needed.Michael Manfre
2014-01-20Fixed #16905 -- Added extensible checks (nee validation) frameworkRussell Keith-Magee
2014-01-18Fixed #16187 -- refactored ORM lookup systemAnssi Kääriäinen
2014-01-12Fixed #21453 -- Enabled autocommit before calling init_connection_state.Aymeric Augustin
2013-12-30Removed the only_with_models_module argument of get_model[s].Aymeric Augustin
2013-12-29Changed get_migratable_models to use an app config.Aymeric Augustin
2013-12-24Renamed AppCache to Apps.Aymeric Augustin
2013-12-22Moved apps back in the toplevel django namespace.Aymeric Augustin
2013-12-17Moved the new app cache inside core.Aymeric Augustin
2013-12-17Made it possible to create apps without a models module.Aymeric Augustin
2013-12-17Deprecated get_apps().Aymeric Augustin
2013-12-17Removed module-level functions for the app cache.Aymeric Augustin
2013-12-10Fixed E124 pep8 warnings.Loic Bistuer
2013-11-28Fixed E125 pep8 warningsChristopher Medrela
2013-10-16Add get_migratable_models util method to ConnectionRouterClaude Paroz
2013-10-15Moved misplaced import in backends initClaude Paroz
2013-09-30Fixed #21134 -- Prevented queries in broken transactions.Aymeric Augustin
2013-09-25Fixed #17671 - Cursors are now context managers.Michael Manfre
2013-09-25Fixed #21126 -- QuerySet value conversion failureAnssi Kääriäinen
2013-09-17Fixed #21109 -- made db cursor error wrapping fasterAnssi Kääriäinen
2013-09-16Fixed #17627 -- Renamed util.py files to utils.pyTim Graham
2013-09-14Fixed #21097 - Added DatabaseFeature.can_introspect_autofieldMichael Manfre
2013-09-10Fixed #20841 -- Added messages to NotImplementedErrorsGregor MacGregor
2013-09-06Adding 'sqlmigrate' command and quote_parameter to support it.Andrew Godwin