diff --git a/doc/core/howto/row.xhtml b/doc/core/howto/row.xhtml
index 46cc7f0..4fe1506 100644
|
a
|
b
|
|
| 41 | 41 | to an existing python application.</p> |
| 42 | 42 | |
| 43 | 43 | <p><em>If row does not fit your model, you will be best off using |
| 44 | | the <a href="rdbms.xhtml">low-level database API</a> directly, |
| 45 | | or writing your own object/relational layer on top of it.</em></p> |
| | 44 | the </em> <a href="rdbms.xhtml">low-level database API</a> <em> |
| | 45 | directly, or writing your own object/relational layer on top of |
| | 46 | it.</em></p> |
| 46 | 47 | |
| 47 | 48 | <h2>Class Definitions</h2> |
| 48 | 49 | |
| … |
… |
|
| 181 | 182 | <h2>Relationships Between Tables</h2> |
| 182 | 183 | |
| 183 | 184 | <p>Specifying a foreign key for a RowClass creates a relationship |
| 184 | | between database tables. When <code |
| 185 | | class="python">loadObjectsFrom</code> is called for a table, it will |
| 186 | | automatically load all the children rows for the rows from the specified |
| 187 | | table. The child rows will be put into a list member variable of the |
| 188 | | rowObject instance with the name <code>childRows</code> or if a |
| 189 | | <em>containerMethod</em> is specified for the foreign key relationship, |
| 190 | | that method will be called on the parent row object for each row that is |
| 191 | | being added to it as a child.</p> |
| | 185 | between database |
| | 186 | tables. When <code class="python">loadObjectsFrom</code> is called for |
| | 187 | a table, it will automatically load all the children rows for the rows |
| | 188 | from the specified table. The child rows will be put into a list |
| | 189 | member variable of the rowObject instance with the |
| | 190 | name <code>childRows</code> or if a <em>containerMethod</em> is |
| | 191 | specified for the foreign key relationship, that method will be called |
| | 192 | on the parent row object for each row that is being added to it as a |
| | 193 | child.</p> |
| 192 | 194 | |
| 193 | 195 | <p>The <em>autoLoad</em> member of the foreign key definition is a flag |
| 194 | 196 | that specifies whether child rows should be auto-loaded for that |