ADOdb

Database Abstraction Layer for PHP

User Tools

Site Tools


v5:activerecord:loadrelations

This is an old revision of the document!


loadRelations

Syntax
void LoadRelations(
  string $relation, 
  optional string $whereOrderBy = ' ', 
  optional int $offset = -1, 
  optional int $limit = -1
  )

Description

Loads a subset of data into the class


Usage

In this example, all female children are loaded and sorted by children.name

ADODB_Active_Record::classHasMany('person', 'children','person_id');
 
$person = new person();
$person->Load('id=23');
/*
*  Load doesn't load children until $person->children 
* is accessed or LoadRelations is called
*/
$whereOrderBy = "gender='F' order by name";
$person->LoadRelations('children',$whereOrderBy);
v5/activerecord/loadrelations.1449326413.txt.gz · Last modified: 2017/04/21 11:21 (external edit)