Changes between Version 2 and Version 3 of DeveloperGuidelines/DatabaseSynchronization


Ignore:
Timestamp:
12/24/08 02:36:38 (16 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/DatabaseSynchronization

    v2 v3  
    88}}}
    99
     10If using T2 CRUD, then this is all that is required.
     11
     12If needing to support multiple tables & hence doing manual HTML forms, then you just need to add support within the add_record controller function:
     13{{{
     14if form.accepts(request.vars,session,keepvalues=True):
     15    # Update Database
     16    id=db.table.insert(
     17        uuid=uuid.uuid4(),
     18}}}
     19
     20
    1021This functionality needs to be developed further:
    11 * BluePrintSynchronisation
     22 * BluePrintSynchronisation
    1223
    1324----