ADOdb

Database Abstraction Layer for PHP

User Tools

Site Tools


v5:activerecord:tablebelongsto

This is an old revision of the document!


tableBelongsTo

Syntax
void ADODB_Active_Record::TableBelongsTo(
  string $childTable, 
  string $relationName, 
  string $foreignKey, 
  optional string $parentPrimaryKey = 'id', 
  optional string $parentClass = 'ADODB_Active_Record'
  )

Description

If the child table differs from the convention that the child table name is the plural of the child class name, use the function: tableBelongsTo();

Usage

In this example the class is child, but the table name is children, and the link between the two tables is children.person_id = person.id

ADODB_Active_Record::TableBelongsTo('children','person','person_id','id');
v5/activerecord/tablebelongsto.1449324726.txt.gz · Last modified: 2017/04/21 11:20 (external edit)