summaryrefslogtreecommitdiff
path: root/django/db/backends/__init__.py
AgeCommit message (Expand)Author
2011-01-122 small optimizations: a) move an import out of a function, b) remove a cache...Alex Gaynor
2010-12-22Fixed #10154: Allow combining F expressions with timedelta values.Karen Tracey
2010-12-03Added a regression test for r14781. Also fixed a bug where connection.vendor...Ian Kelly
2010-11-19Corrected the way databases were compared. This allows running the test suit...Alex Gaynor
2010-11-09Fixed #7539, #13067 -- Added on_delete argument to ForeignKey to control casc...Carl Meyer
2010-11-02Avoid an O(n**2) operation where O(n) will suffice. Possibly worth a second ...Alex Gaynor
2010-10-31When looking for django tables which exist, query for all tables once, not on...Alex Gaynor
2010-10-28Fixed #14517 -- Corrected the exception that is caught when testing for the a...Russell Keith-Magee
2010-10-19Fixed a small typo introduced in r14139.Ramiro Morales
2010-10-12Fixed #5416 -- Added TestCase.assertNumQueries, which tests that a given func...Alex Gaynor
2010-10-11Fixed #12991 -- Added unittest2 support. Thanks to PaulM for the draft patch,...Russell Keith-Magee
2010-09-16Fixed #14244: Allow lists of more than 1000 items to be used with the 'in' lo...Ian Kelly
2010-05-28Fixed #13656 -- Ensure that the management commands use the right database fo...Russell Keith-Magee
2010-04-04Fixed #12328 -- Corrected the handling of subqueries with ordering and slicin...Russell Keith-Magee
2010-03-10Fixed #12976 -- Fixed the sequence reset commands issued by sqlflush in a mul...Russell Keith-Magee
2010-03-09Changed last_executed_query to avoid raising exceptions on non-utf8-encoded p...Karen Tracey
2009-12-22Fixed #1142 -- Added multiple database support.Russell Keith-Magee
2009-08-21Fixed #11049: introspection on Oracle now identifies IntegerFields correctly.Matt Boersma
2009-04-13Fixed #9804 -- Corrected the introspection of sequence names. This was causin...Russell Keith-Magee
2009-04-11Fixed #10450 -- Fixed an initialisation problem in the savepoint code.Malcolm Tredinnick
2009-03-13Fixed #10488: fixed DB cache backend test failures in Oracle.Ian Kelly
2009-03-12Fixed #10473: Added Oracle support for "RETURNING" ids from insert statements.Ian Kelly
2009-03-11Fixed #3460 -- Added an ability to enable true autocommit for psycopg2 backend.Malcolm Tredinnick
2009-03-11Fixed #10459 -- Refactored the internals of database connection objects so th...Adrian Holovaty
2009-03-10Removed a FIXME from the queryset-refactor days.Malcolm Tredinnick
2009-03-09Fixed #3163 -- Add a "Meta.managed" option to models.Malcolm Tredinnick
2009-02-24Fixed #10161 -- Modified evaluation of query expressions to allow for operato...Russell Keith-Magee
2009-02-02Fixed #10142 -- Added docs and an exploding error message to highlight an err...Russell Keith-Magee
2009-01-15Fixed #3566 -- Added support for aggregation to the ORM. See the documentatio...Russell Keith-Magee
2008-12-10If an SQL query doesn't specify any ordering, avoid the implicit sortMalcolm Tredinnick
2008-12-02Fixed a pair of bugs in determining the set of models to flush that were caus...Ian Kelly
2008-09-10Fixed an incorrectly named DatabaseOperations method. It was causing non-Orac...Ian Kelly
2008-09-09db: Gave each DatabaseClient class an 'executable_name' attribute (e.g., 'psq...Adrian Holovaty
2008-09-01Fixed #8316 -- Put tighter restrictions on the type of Foreign Key fieldsMalcolm Tredinnick
2008-08-28Fixed #8597 -- Allow the use of strings containing underscores and percentageMalcolm Tredinnick
2008-08-12Added savepoint support to the transaction code.Malcolm Tredinnick
2008-08-11Fixed stupid syntax error in [8303].Jacob Kaplan-Moss
2008-08-11Fixed #8228: fixed a Python 2.3 compatibility from [8296].Jacob Kaplan-Moss
2008-08-11Fixed #5461 -- Refactored the database backend code to use classes for the cr...Russell Keith-Magee
2008-07-30Fixed #8028 -- A couple of small docstring fixes from [8131]. Thanks, Leo Soto.Malcolm Tredinnick
2008-07-29Fixed #7560 -- Moved a lot of the value conversion preparation forMalcolm Tredinnick
2008-07-15Fixed #7411 -- worked around some possible transaction conflicts in SQLite.Malcolm Tredinnick
2008-07-06Fixed #7532 -- Removed some dead code from the db backends. Thanks, Ramiro.Malcolm Tredinnick
2008-06-30Make sure we only create the minimum number of table indexes for MySQL.Malcolm Tredinnick
2008-06-26Fixed #7319 -- Removed unused DatabaseFeatures attribute 'needs_upper_for_iop...Adrian Holovaty
2008-06-16Fixed #7420 -- Abstracted some more database options into DatabaseFeatures --...Adrian Holovaty
2008-06-12Fixed #7427 -- Fixed docstring that was rendered incorrect due to qs-rf. Than...Adrian Holovaty
2008-04-28Made some types of nested update queries very slightly more efficient at theMalcolm Tredinnick
2008-04-27Merged the queryset-refactor branch into trunk.Malcolm Tredinnick
2007-11-04Fixed #5729 -- For MySQL (only), always delay the creation of foreign keyMalcolm Tredinnick