示例#1
0
 /**
  * Returns referencing rows.
  * @param  string table name
  * @return GroupedSelection
  */
 public function getReferencingTable($table)
 {
     $column = $this->connection->databaseReflection->getReferencingColumn($table, $this->name);
     $referencing = new GroupedSelection($table, $this, $column);
     $referencing->where("{$table}.{$column}", array_keys((array) $this->rows));
     // (array) - is NULL after insert
     return $referencing;
 }
示例#2
0
 function getReferencingTable($table, $column, $active = NULL, $forceNewInstance = FALSE)
 {
     $referencing =& $this->referencing["{$table}:{$column}"];
     if (!$referencing || $forceNewInstance) {
         $referencing = new GroupedSelection($table, $this, $column);
         $referencing->where("{$table}.{$column}", array_keys((array) $this->rows));
     }
     return $referencing->setActive($active);
 }
示例#3
0
 /**
  * Returns referencing rows.
  * @param  string
  * @param  string
  * @return GroupedSelection
  */
 public function getReferencingTable($table, $column, $active = NULL)
 {
     $referencing = new GroupedSelection($table, $this, $column, $active);
     $referencing->where("{$table}.{$column}", array_keys((array) $this->rows));
     // (array) - is NULL after insert
     return $referencing;
 }
示例#4
0
Selection($table,$this->connection);$referenced->where($table.'.'.$referenced->primary,array_keys($keys));}else{$referenced=array();}}return$referenced;}function
getReferencingTable($table,$column,$active=NULL,$forceNewInstance=FALSE){$referencing=&$this->referencing["$table:$column"];if(!$referencing||$forceNewInstance){$referencing=new
GroupedSelection($table,$this,$column);$referencing->where("$table.$column",array_keys((array)$this->rows));}return$referencing->setActive($active);}function