summaryrefslogtreecommitdiff
path: root/django/db
AgeCommit message (Expand)Author
2009-04-11Fixed #10450 -- Fixed an initialisation problem in the savepoint code.Malcolm Tredinnick
2009-04-11Fixed BooleanFields being coerced null=True in Oracle.Ian Kelly
2009-04-10Fixed #9640, #10549: BooleanFields with choices, a default, and null=False no...Jacob Kaplan-Moss
2009-04-09Fixed #10647: intermediary tables between two umanaged models are no longer c...Jacob Kaplan-Moss
2009-04-08Fixed #10666 -- Corrected the handling of inherited fields with aggregate() a...Russell Keith-Magee
2009-04-04Fixed up the introspection code and tests added for #9779 to run under Python...Karen Tracey
2009-04-04Fixed a problem when computing deferred fields on multiple related models.Malcolm Tredinnick
2009-04-04Fixed deferred fields and select_related() interaction.Malcolm Tredinnick
2009-04-04Fixed #10695 -- Fixed implementation of deferred attribute retrieval.Malcolm Tredinnick
2009-04-03Fixed #9991: correctly introspect PostgreSQL 'real' types.Jacob Kaplan-Moss
2009-04-02Fixed #9779: added support for relation detection to inspectdb under SQLite. ...Jacob Kaplan-Moss
2009-04-02Fixed #10063: stop passing the -W flag to psql since it isn't needed and inte...Jacob Kaplan-Moss
2009-04-02Fixed #10670: fixed reusing QuerySets previously used in a filter expression....Jacob Kaplan-Moss
2009-04-01Fixed #9871 -- Geometry objects are now returned in dictionaries and tuples r...Justin Bronn
2009-03-30Fixed #10149. FileFields in a form now validate max_length. Based on a patch ...Joseph Kocherhans
2009-03-30Fixed #10413: RelatedManager.add no longer fails silenty when trying to add a...Jacob Kaplan-Moss
2009-03-30Fixed #10157: correctly set the related objects pk when assigning a reverse O...Jacob Kaplan-Moss
2009-03-30Fixed redundant definition of `connection_created` signal due to DVCS mistake...Justin Bronn
2009-03-29Fixed #6064 -- Added the `connection_created` signal for when a database conn...Justin Bronn
2009-03-27Fixed an issue with unicode being mangled in Oracle when the database charact...Ian Kelly
2009-03-25Fixed a breakage with ManyToManyFields in admin caused by r10139.Malcolm Tredinnick
2009-03-24Fixed #9926 -- Fixes for some select_related() situations.Malcolm Tredinnick
2009-03-22Fixed deferred loading of fields with default values.Malcolm Tredinnick
2009-03-20Fixed #9628 -- Use `pysqlite2` for database backend, if installed.Justin Bronn
2009-03-20Fixed #2698 -- Fixed deleting in the presence of custom managers.Malcolm Tredinnick
2009-03-20Fixed #10547 -- Worked around some odd behaviour in Python 2.3 and 2.4.Malcolm Tredinnick
2009-03-19Typo fix for an error path in r100090.Malcolm Tredinnick
2009-03-19Fixed #5420 -- Added support for delayed loading of model fields.Malcolm Tredinnick
2009-03-18Fixed #8193: all dynamic imports in Django are now done correctly. I know thi...Jacob Kaplan-Moss
2009-03-18Fixed #10356 -- Added pure-Python inheritance for models (a.k.a proxy models).Malcolm Tredinnick
2009-03-16More fixing of PostgreSQL < 8.2 problems with the psycopg2 backend.Malcolm Tredinnick
2009-03-15Use plain model.Manager, or suitable proxy, for model saving.Malcolm Tredinnick
2009-03-14Fixed #10425 -- Corrected the interaction of .count() with .annotate() when ....Russell Keith-Magee
2009-03-13Fixed #10488: fixed DB cache backend test failures in Oracle.Ian Kelly
2009-03-13Fixed #10238: coerce TextField values to unicode in the oracle backend.Ian Kelly
2009-03-13Fixed a case where column aliases weren't being quoted properly.Ian Kelly
2009-03-13Prevented InsertQuery from appending a 'RETURNING' clause when it's not actua...Ian Kelly
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-12Fixed #10473: Added Oracle support for "RETURNING" ids from insert statements.Ian Kelly
2009-03-12Tweaked the dummy database backend initialisation.Malcolm Tredinnick
2009-03-12Fixed #10467 -- Fixed generated INSERT SQL for PostgreSQL 8.1 and earlier.Malcolm Tredinnick
2009-03-12Return last insert ID correctly when the feature is enabled.Malcolm Tredinnick
2009-03-12Slight refactoring of isolation setting from r10029.Malcolm Tredinnick
2009-03-11Fixed some breakages in the Oracle test database handling from r10026.Ian Kelly
2009-03-11Fixed #10463 -- Corrected a problem with the MySQL backend, introduced by [10...Russell Keith-Magee
2009-03-11Fixed #3460 -- Added an ability to enable true autocommit for psycopg2 backend.Malcolm Tredinnick
2009-03-11Fixed the django.contrib.gis test database creation as well.Malcolm Tredinnick
2009-03-11Fixed some breakages in the test database handling from r10026.Malcolm Tredinnick
2009-03-11Fixed #10459 -- Refactored the internals of database connection objects so th...Adrian Holovaty