summaryrefslogtreecommitdiff
path: root/django/db/backends/__init__.py
AgeCommit message (Expand)Author
2012-09-17Merge remote-tracking branch 'core/master' into schema-alterationAndrew Godwin
2012-09-08Moved get_primary_key_column implementation to baseClaude Paroz
2012-09-07Add check constraint support - needed a few Field changesAndrew Godwin
2012-09-07Added SQLite backend which passes all current testsAndrew Godwin
2012-09-05Merge branch 'master' into schema-alterationAndrew Godwin
2012-08-30Replaced some smart_xxx by force_xxx equivalentClaude Paroz
2012-08-18[py3] Fixed backends tests.Aymeric Augustin
2012-08-18[py3] Added compatibility import of thread/_threadAymeric Augustin
2012-08-16[py3] Fixed installed_models filtering.Dmitry Shevchenko
2012-08-13Refix #13844 -- Made FloatField aggregates work on Python 2.6 + PostgresAnssi Kääriäinen
2012-08-12Fixed #13844 -- Avoid converting unknown db values to floatAnssi Kääriäinen
2012-08-10Merge branch 'master' into schema-alterationAndrew Godwin
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
2012-08-02Add M2M tests and some unique supportAndrew Godwin
2012-07-26Merge branch 'master' of github.com:django/django into schema-alterationAndrew Godwin
2012-07-24Fixed #18271 -- Changed stage at which TransactionTestCase flushes DB tables.Ramiro Morales
2012-07-22[py3] Switched to Python 3-compatible imports.Aymeric Augustin
2012-07-22[py3] Replaced unicode/str by six.text_type/bytes.Aymeric Augustin
2012-07-17Fixed #17788 -- Added batch_size argument to qs.bulk_create()Anssi Kääriäinen
2012-07-05Fixed #18330 - Made cache culling 3rd party db backend friendlyAnssi Kääriäinen
2012-07-01Fixed #16047 -- Restore autocommit state correctly on psycopg2Anssi Kääriäinen
2012-07-01Fixed some locations to work with autocommit=TrueAnssi Kääriäinen
2012-06-19Add some field schema alteration methods and tests.Andrew Godwin
2012-06-18Very start of schema alteration port. Create/delete model and some tests.Andrew Godwin
2012-06-09Fixed #17760 -- Implemented callable database features as cached propertiesClaude Paroz
2012-05-22Fixed #18319 -- Added 'supports_sequence_reset' DB featureAnssi Kääriäinen
2012-05-18Fixed #18334 -- Fixed detection of supports_stddev backend feature.Claude Paroz
2012-04-30Made get_indexes() consistent across backends.Anssi Kääriäinen
2012-04-29Made table_names() output sorted.Anssi Kääriäinen
2012-04-24Fixed #17653 -- Changed MySQL backend to raise a ValueError if zero is used a...Anssi Kääriäinen
2012-03-13Fixed #17882 (again) -- Updated the database connections' time zone when time...Aymeric Augustin
2012-02-11Fixed #15216 -- Made return type of an internal DB introspection method consi...Ramiro Morales
2011-12-22Added support for modifying the effect of ``DISTINCT`` clauses so theyRamiro Morales
2011-12-16Ensured that thread-shareability gets validated when closing a PostgreSQL or ...Julien Phalip
2011-12-16Fixed #17258 -- Moved `threading.local` from `DatabaseWrapper` to the `django...Julien Phalip
2011-12-05Fixed #17335 -- Added supports_select_related hook for django-nonrel. Thanks,...Adrian Holovaty
2011-11-18Added support for time zones. Thanks Luke Plant for the review. Fixed #2626.Aymeric Augustin
2011-10-14Fixed #12308 -- Added tablespace support to the PostgreSQL backend.Aymeric Augustin
2011-10-13Fixed #16906 -- Format datetimes with str/unicode instead of strftime where p...Aymeric Augustin
2011-10-05Very small docstring correction.Luke Plant
2011-09-09Fixed #7596. Added Model.objects.bulk_create, and make use of it in several ...Alex Gaynor
2011-08-07Fixed #3615: Added support for loading fixtures with forward references on da...Karen Tracey
2011-07-13Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel
2011-04-20Fixed #2705: added a `select_for_update()` clause to querysets.Jacob Kaplan-Moss
2011-04-05Fixed #13630 -- Made __init__ methods of all DB backends' DatabaseOperations ...Ramiro Morales
2011-03-08Added a skip for a test that fails in Oracle. Unlike other backends, Oracle ...Ian Kelly
2011-02-12Fixed #9964 -- Ensure that all database operations make transactions dirty, n...Russell Keith-Magee
2011-02-12Changeset r15232 refactored transactions so that all transaction state is mai...Russell Keith-Magee
2011-02-01Fixed #15170 -- Skip the inspectdb test under MySQL/MyISAM, because it can't ...Russell Keith-Magee
2011-01-17Refactor all uses of thread locals to be more consistant and sane.Alex Gaynor