ADOdb

Database Abstraction Layer for PHP

User Tools

Site Tools


v5:activerecord:tablekeyhasmany

Differences

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

Link to this comparison view

Next revision
Previous revision
activerecord:tablekeyhasmany [2015/12/05 14:50] – created mnewnhamv5:activerecord:tablekeyhasmany [2016/01/13 02:15] (current) – ↷ Page moved from activerecord:tablekeyhasmany to v5:activerecord:tablekeyhasmany mnewnham
Line 4: Line 4:
 ==Syntax== ==Syntax==
   void ADODB_Active_Record::tableKeyHasMany(   void ADODB_Active_Record::tableKeyHasMany(
-    string $table,  +    string $parentTable,  
-    string $tablePrimaryKey,  +    string $parentTablePrimaryKey,  
-    string $relation,+    string $childTable,
     optional string $foreignKey = ' ',      optional string $foreignKey = ' ', 
     optional string $foreignClass = 'ADODB_Active_Record'     optional string $foreignClass = 'ADODB_Active_Record'
Line 13: Line 13:
 ===== Description ===== ===== Description =====
 For some classes, the mapping between class name and table name (which is the pluralised version) might not match or the primary key is not the default id. 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 or the primary key is not the default id. For example, the class name might be person, but the table name might be people
 +===== Parameters =====
 +==== $parentTable ====
 +The parent table in the relationship
 +==== $parentTablePrimaryKey ====
 +The key field for the parent table
 +==== $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::TableKeyHasMany('people', 'pid', 'children', 'person_id'); ADODB_Active_Record::TableKeyHasMany('people', 'pid', 'children', 'person_id');
 </code> </code>
v5/activerecord/tablekeyhasmany.1449323456.txt.gz · Last modified: 2017/04/21 11:20 (external edit)