Selection
class Selection implements Iterator, IRowContainer, ArrayAccess, Countable
Filtered table representation.
Selection is based on the great library NotORM http://www.notorm.com written by Jakub Vrana.
Properties
protected | $explorer | ||
protected | $context | back compatibility |
|
protected | $conventions | ||
protected | $cache | ||
protected | $sqlBuilder | ||
protected | $name | table name |
|
protected string|string[]|null | $primary | ||
protected | $primarySequence | primary column sequence name, false for autodetection |
|
protected ActiveRow[]|null | $rows | ||
protected ActiveRow[]|null | $data | ||
protected | $dataRefreshed | ||
protected | $globalRefCache | cache array of Selection and GroupedSelection prototypes |
|
protected | $refCache | ||
protected | $generalCacheKey | ||
protected | $specificCacheKey | ||
protected | $aggregation | of [conditions => [key => ActiveRow]]; used by GroupedSelection |
|
protected | $accessedColumns | touched columns |
|
protected | $previousAccessedColumns | earlier touched columns |
|
protected | $observeCache | should instance observe accessed columns caching |
|
protected | $keys | of primary key values |
Methods
Creates filtered table representation.
No description
No description
No description
No description
No description
No description
No description
Loads cache of previous accessed columns and returns it.
No description
Returns row specified by primary key.
Fetches single row object.
Fetches all rows as associative array.
Fetches all rows.
Fetches all rows and returns associative tree.
Adds select clause, more calls appends to the end.
Adds condition for primary key.
Adds where condition, more calls appends with AND.
Adds ON condition when joining specified table, more calls appends with AND.
Adds condition, more calls appends with AND.
Sets limit clause, more calls rewrite old values.
Sets offset using page number, more calls rewrite old values.
Aliases table. Example ':book:book_tag.tag', 'tg'
Executes aggregation function.
Counts number of rows.
Returns minimum value from a column.
Returns maximum value from a column.
Returns sum of values in a column.
No description
No description
No description
No description
No description
Returns Selection parent for caching.
Loads refCache references
Returns general cache key independent on query parameters or sql limit Used e.g. for previously accessed columns caching
Returns object specific cache key dependent on query parameters Used e.g. for reference memory caching
No description
No description
Returns if selection requeried for more columns.
Inserts row in a table.
Updates all rows in result set.
Deletes all rows in result set.
Returns referenced row.
Returns referencing rows.
No description
No description
No description
No description
No description
Returns specified row.
Tests if row exists.
Removes row from result set.
Details
at line 76
__construct(Explorer $explorer, Conventions $conventions, string $tableName, Storage|null $cacheStorage = null)
Creates filtered table representation.
at line 95
__destruct()
No description
at line 101
__clone()
No description
at line 107
string
getName()
No description
at line 116
string|array|null
getPrimary(bool $throw = true)
No description
at line 126
string|null
getPrimarySequence()
No description
at line 136
Selection
setPrimarySequence(string $sequence)
No description
at line 143
string
getSql()
No description
at line 153
array|bool
getPreviousAccessedColumns()
internal |
Loads cache of previous accessed columns and returns it.
at line 169
SqlBuilder
getSqlBuilder()
internal |
No description
at line 181
ActiveRow|null
get(mixed $key)
Returns row specified by primary key.
at line 191
ActiveRow|null
fetch()
Fetches single row object.
at line 204
mixed
fetchField(string|null $column = null)
deprecated
deprecated
Fetches single field.
at line 224
array
fetchPairs(string|int|null $key = null, string|int|null $value = null)
Fetches all rows as associative array.
at line 234
array
fetchAll()
Fetches all rows.
at line 243
array
fetchAssoc(string $path)
Fetches all rows and returns associative tree.
at line 257
Selection
select(string|string[] $columns, ...$params)
Adds select clause, more calls appends to the end.
at line 268
Selection
wherePrimary(mixed $key)
Adds condition for primary key.
at line 292
Selection
where(string|array $condition, ...$params)
Adds where condition, more calls appends with AND.
at line 304
Selection
joinWhere(string $tableChain, string $condition, ...$params)
Adds ON condition when joining specified table, more calls appends with AND.
at line 315
protected void
condition(string|string[] $condition, array $params, $tableChain = null)
Adds condition, more calls appends with AND.
at line 340
Selection
whereOr(array $parameters)
Adds where condition using the OR operator between parameters.
More calls appends with AND.
at line 374
Selection
order(string $columns, ...$params)
Adds order clause, more calls appends to the end.
at line 385
Selection
limit(int|null $limit, int|null $offset = null)
Sets limit clause, more calls rewrite old values.
at line 396
Selection
page(int $page, int $itemsPerPage, $numOfPages = null)
Sets offset using page number, more calls rewrite old values.
at line 413
Selection
group(string $columns, ...$params)
Sets group clause, more calls rewrite old value.
at line 424
Selection
having(string $having, ...$params)
Sets having clause, more calls rewrite old value.
at line 435
Selection
alias(string $tableChain, string $alias)
Aliases table. Example ':book:book_tag.tag', 'tg'
at line 449
mixed
aggregation(string $function, string|null $groupFunction = null)
Executes aggregation function.
at line 470
int
count(string|null $column = null)
Counts number of rows.
at line 484
mixed
min(string $column)
Returns minimum value from a column.
at line 493
mixed
max(string $column)
Returns maximum value from a column.
at line 502
mixed
sum(string $column)
Returns sum of values in a column.
at line 511
protected void
execute()
No description
at line 557
protected ActiveRow
createRow(array $row)
No description
at line 563
Selection
createSelectionInstance(string|null $table = null)
No description
at line 569
protected GroupedSelection
createGroupedSelectionInstance(string $table, string $column)
No description
at line 575
protected ResultSet
query(string $query)
No description
at line 581
protected void
emptyResultSet(bool $clearCache = true, bool $deleteRererencedCache = true)
No description
at line 603
protected void
saveCacheState()
No description
at line 631
protected Selection
getRefTable($refPath)
Returns Selection parent for caching.
at line 640
protected void
loadRefCache()
Loads refCache references
at line 649
protected string
getGeneralCacheKey()
Returns general cache key independent on query parameters or sql limit Used e.g. for previously accessed columns caching
at line 672
protected string
getSpecificCacheKey()
Returns object specific cache key dependent on query parameters Used e.g. for reference memory caching
at line 687
bool
accessColumn(string|null $key, bool $selectColumn = true)
internal |
No description
at line 753
void
removeAccessColumn(string $key)
internal |
No description
at line 764
bool
getDataRefreshed()
Returns if selection requeried for more columns.
at line 778
ActiveRow|array|int|bool
insert(iterable $data)
Inserts row in a table.
at line 859
int
update(iterable $data)
Updates all rows in result set.
Joins in UPDATE are supported only in MySQL
at line 883
int
delete()
Deletes all rows in result set.
at line 896
ActiveRow|false|null
getReferencedTable(ActiveRow $row, string|null $table, string|null $column = null)
Returns referenced row.
at line 944
GroupedSelection|null
getReferencingTable(string $table, string|null $column = null, int|string|null $active = null)
Returns referencing rows.
at line 975
void
rewind()
No description
at line 983
ActiveRow|false
current()
No description
at line 991
string|int
key()
No description
at line 997
void
next()
No description
at line 1005
bool
valid()
No description
at line 1019
void
offsetSet(string $key, ActiveRow $value)
Mimic row.
at line 1030
ActiveRow|null
offsetGet(string $key)
Returns specified row.
at line 1041
bool
offsetExists(string $key)
Tests if row exists.
at line 1052
void
offsetUnset(string $key)
Removes row from result set.
Traits
Strict class for better experience.