Changes between Version 3 and Version 4 of MultipleDatabaseSupport


Ignore:
Timestamp:
Jun 21, 2006, 3:45:56 PM (18 years ago)
Author:
jpellerin@…
Comment:

Update current status, correct transaction description

Legend:

Unmodified
Added
Removed
Modified
  • MultipleDatabaseSupport

    v3 v4  
    4545}}}
    4646
    47  * Allow transaction decorators, etc to take optional connections argument. Without that argument, transactions will apply across all connections already in use. The default connection is '''always''' included.
     47 * Allow transaction decorators, etc to take optional connections argument. Without that argument, transactions will apply across all connections already in use.
    4848 
    4949 * Move generation of schema manipulating sql (CREATE TABLE, etc) from django.core.management into backend.creation.
     
    5353=== Current status ===
    5454
    55 Current patch is attached. It implements most of the model-level changes, a few manager-level changes, and table creation for postgres and sqlite. It does not implement any transaction changes, and nothing has been removed yet from django.core.management; the model table cration code there has just been adapted in django.db.backends.ansi.creation.
     55Current patch is attached (p5.diff). It implements most of the model-level changes, a few manager-level changes, and table creation, including generation (but not execution) of many-many tables. Relative to p4.diff, this patch adds transaction support and many-many table creation and fixes a few bugs. Nothing has been removed yet from django.core.management; the model table creation code there has just been adapted in django.db.backends.ansi.creation.
Back to Top