Method |
Description |
|
__construct ( array $data, Selection $table ) |
|
|
__get ( $key ) : ActiveRow | mixed |
|
|
__isset ( $key ) |
|
|
__set ( $key, $value ) |
|
|
__toString ( ) |
|
|
__unset ( $key ) |
|
|
accessColumn ( $key, $selectColumn = TRUE ) |
|
|
delete ( ) : integer |
Deletes row. |
|
getIterator ( ) |
******************* interface IteratorAggregate ****************d*g* |
|
getPrimary ( $need = TRUE ) : mixed |
Returns primary key value. |
|
getSignature ( $need = TRUE ) : string |
Returns row signature (composition of primary keys) |
|
getTable ( ) |
|
|
offsetExists ( $key ) : boolean |
Tests if column exists. |
|
offsetGet ( $key ) : string |
Returns value of column. |
|
offsetSet ( $key, $value ) : void |
Stores value in column. |
|
offsetUnset ( $key ) : void |
Removes column from data. |
|
ref ( $key, $throughColumn = NULL ) : Nette\Database\Table\IRow |
Returns referenced row. |
|
related ( $key, $throughColumn = NULL ) : GroupedSelection |
Returns referencing rows. |
|
setTable ( Selection $table ) |
|
|
toArray ( ) : array |
|
|
update ( $data ) : boolean |
Updates row. |
|