Changes between Version 2 and Version 3 of DeveloperGuidelines/DatabaseSynchronization
- Timestamp:
- 12/24/08 02:36:38 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/DatabaseSynchronization
v2 v3 8 8 }}} 9 9 10 If using T2 CRUD, then this is all that is required. 11 12 If needing to support multiple tables & hence doing manual HTML forms, then you just need to add support within the add_record controller function: 13 {{{ 14 if form.accepts(request.vars,session,keepvalues=True): 15 # Update Database 16 id=db.table.insert( 17 uuid=uuid.uuid4(), 18 }}} 19 20 10 21 This functionality needs to be developed further: 11 * BluePrintSynchronisation22 * BluePrintSynchronisation 12 23 13 24 ----