summaryrefslogtreecommitdiff
path: root/django/db/backends/__init__.py
AgeCommit message (Expand)Author
2015-01-14Fixed #22603 -- Reorganized classes in django.db.backends.Tim Graham
2015-01-12Fixed #24031 -- Added CASE expressions to the ORM.Michał Modzelewski
2015-01-11Removed supports_binary_field flag as all backends support themClaude Paroz
2015-01-08Fixed #24020 -- Refactored SQL compiler to use expressionsAnssi Kääriäinen
2014-12-31Moved DatabaseCreation.data_types properties to DatabaseWrapper.Tim Graham
2014-12-23Refs #2443 -- Move the durationfield converter logic.Marc Tamlyn
2014-12-23Fixed #24033 -- Use interval type on Oracle.Marc Tamlyn
2014-12-20Fixed #2443 -- Added DurationField.Marc Tamlyn
2014-12-12Fixed postgis test database initializationClaude Paroz
2014-12-12Fixed #23941 -- Removed implicit decimal formatting from expressions.Josh Smeaton
2014-12-08Fixed #20968 -- Checked Spatialite metadata before migrationsClaude Paroz
2014-12-08Fixed #23968 -- Replaced list comprehension with generators and dict comprehe...Jon Dufresne
2014-09-29Replaced set([foo, ...]) by {foo, ...} literals. Refs PR 3282.Thomas Chaumeny
2014-09-27Fixed #22738 -- made finer distinctions for when Boolean is not detected on O...Shai Berger
2014-09-26Fixed #22738 -- Abstracted boolean field type introspectionClaude Paroz
2014-09-26Factorized schema_editor() at BaseDatabaseWrapper levelClaude Paroz
2014-09-23Fixed #18782 -- Prevented sql_flush to flush viewsClaude Paroz
2014-09-23Made get_table_list return a TableInfo named tupleClaude Paroz
2014-09-05Limited lines to 119 characters in django/Tim Graham
2014-09-03Fixed #18757, #14462, #21565 -- Reworked database-python type conversionsMarc Tamlyn
2014-08-19Replaced HAS_SPATIAL_DB by testing database featureClaude Paroz
2014-08-06Fixed #21603 -- Fixed complex RawQuerySets queries on some versions of SQLite.Alex Hill
2014-08-05Fixed #23061: Avoided setting a limit on a query for get with select_for_upda...Shai Berger
2014-07-28Fixed #23074 -- Avoided leaking savepoints in atomic.Aymeric Augustin
2014-07-26Fixed #22873 -- Renamed use_debug_cursor to force_debug_cursor to clarify the...areski
2014-07-14Fixed name of database connection featureShai Berger
2014-06-23Fixed problem introduced with #refs 13711.Anubhav Joshi
2014-06-17Fixed #13711 -- Model check added to ensure that auto-generated column name i...Anubhav Joshi
2014-06-16Renamed DatabaseFeature.supports_check_constraints to supports_column_check_c...Tim Graham
2014-06-14Fixed #22816 -- Corrected Oracle feature flag and fixed introspection testShai Berger
2014-06-09Fixed #20420 -- Normalized query counts on Oracle.Aymeric Augustin
2014-06-09Simplified handling of use_debug_cursor.Aymeric Augustin
2014-06-07Fixed #17427 -- Removed dubious definition of connections equality.Aymeric Augustin
2014-06-07Fixed #3711, #6734, #12581 -- Bounded connection.queries.Aymeric Augustin
2014-06-06Replaced an explicit vendor check by a feature flag.Aymeric Augustin
2014-06-05Added a flag for the ability to introspect nullable fields.Aymeric Augustin
2014-05-28Set straight the sense of 'uppercases_column_names' feature flagShai Berger
2014-05-20Add feature for implied null (needed for Firebird backend)Andrew Godwin
2014-05-15Fixed #20897 -- Added make_cursor() for consistent cursor creationTim Martin
2014-05-10Adjusted refactoring of vendor checks.Aymeric Augustin
2014-05-08Added feature flags for introspection capabilities.Aymeric Augustin
2014-05-08Split ignores_nulls_in_unique_constraints feature.Aymeric Augustin
2014-05-08Replaced vendor checks by three feature flags.Aymeric Augustin
2014-04-26Fix many many typos in comments throughout the codebaseAlex Gaynor
2014-04-26Fixed #3214 -- Stopped parsing SQL with regex.Aymeric Augustin
2014-04-25Fixed #21166 -- Reset errors_occurred flag after commit and rollback.Aymeric Augustin
2014-04-24Ignored repeated calls to connection.close().Aymeric Augustin
2014-04-10Fixed #21239 -- Maintained atomicity when closing the connection.Aymeric Augustin
2014-04-09Fixed #21553 -- Ensured unusable database connections get closed.Aymeric Augustin
2014-03-25Fixed #12030 -- Validate integer field range at the model level.Simon Charette