ADOdb

Database Abstraction Layer for PHP

User Tools

Site Tools


v5:activerecord:tablehasmany

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
activerecord:tablehasmany [2015/12/05 14:45] – [Usage] mnewnhamactiverecord:tablehasmany [2015/12/05 16:50] mnewnham
Line 2: Line 2:
 ~~NOTOC~~ ~~NOTOC~~
 <WRAP right box> <WRAP right box>
-  void ADODB_Active_Record::TableHasMany+  void ADODB_Active_Record::tableHasMany
-    string $table,  +    string $parentTable,  
-    string $relation,  +    string $childTable,  
-    string $foreignKey = '',  +    optional string $foreignKey = '',  
-    string $foreignClass = 'ADODB_Active_Record'+    optional string $foreignClass = 'ADODB_Active_Record'
     )     )
 </WRAP> </WRAP>
 ===== Description ===== ===== Description =====
 For some classes, the mapping between class name and table name (which is the pluralised version) might not match. For example, the class name might be person, but the table name might be people For some classes, the mapping between class name and table name (which is the pluralised version) might not match. For example, the class name might be person, but the table name might be people
 +===== Parameters =====
 +==== $parentTable ====
 +The parent table in the relationship
 +==== $childTable ====
 +The child table in the relationship
 +==== $foreignKey ====
 +If, due to database design constraints, the key field in the child table is not named the same as that of the parent table, specify it here.
 +==== $foreignClass ====
 +If the class name for the child table differs from that of the parent, for example there has been some extension of methods, specify it here
 ===== Usage ===== ===== Usage =====
 <code php> <code php>
 ADODB_Active_Record::tableHasMany('people', 'children', 'person_id') ADODB_Active_Record::tableHasMany('people', 'children', 'person_id')
 </code> </code>
v5/activerecord/tablehasmany.txt · Last modified: 2016/01/13 02:15 by mnewnham