Changes between Version 36 and Version 37 of DeveloperGuidelines/Optimisation
- Timestamp:
- 06/18/10 08:36:16 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Optimisation
v36 v37 94 94 95 95 {{{ 96 codes = db(db.mytable.name == name).select()97 for code in codes:98 records = db(db.othertable.code ==code).select()96 records = db(db.mytable.name == name).select() 97 for r in records: 98 other_records = db(db.othertable.code == r.code).select() 99 99 }}} 100 100