ResultBase.php
Namespace
Drupal\Core\Database\StatementFile
-
core/
lib/ Drupal/ Core/ Database/ Statement/ ResultBase.php
View source
<?php
declare (strict_types=1);
namespace Drupal\Core\Database\Statement;
use Drupal\Core\Database\FetchModeTrait;
/**
* Base class for results of a data query language (DQL) statement.
*/
abstract class ResultBase {
use FetchModeTrait;
/**
* Constructor.
*
* @param \Drupal\Core\Database\Statement\FetchAs $fetchMode
* The fetch mode.
* @param array{class: class-string, constructor_args: list<mixed>, column: int, cursor_orientation?: int, cursor_offset?: int} $fetchOptions
* The fetch options.
*/
public function __construct(FetchAs $fetchMode, array $fetchOptions) {
}
/**
* Returns the number of rows matched by the last SQL statement.
*
* @return int
* The number of rows matched by the last DELETE, INSERT, or UPDATE
* statement executed or throws \Drupal\Core\Database\RowCountException
* if the last executed statement was SELECT.
*
* @throws \Drupal\Core\Database\RowCountException
*/
public abstract function rowCount() : ?int;
/**
* Sets the default fetch mode for this result set.
*
* @param \Drupal\Core\Database\FetchAs $mode
* One of the cases of the FetchAs enum.
* @param array{class: class-string, constructor_args: list<mixed>, column: int, cursor_orientation?: int, cursor_offset?: int} $fetchOptions
* An array of fetch options.
*
* @return bool
* TRUE if successful, FALSE if not.
*/
public abstract function setFetchMode(FetchAs $mode, array $fetchOptions) : bool;
/**
* Fetches the next row.
*
* @param \Drupal\Core\Database\FetchAs $mode
* One of the cases of the FetchAs enum.
* @param array{class?: class-string, constructor_args?: list<mixed>, column?: int, cursor_orientation?: int, cursor_offset?: int} $fetchOptions
* An array of fetch options.
*
* @return array|object|int|float|string|bool|null
* A result, formatted according to $mode, or FALSE on failure.
*/
public abstract function fetch(FetchAs $mode, array $fetchOptions) : array|object|int|float|string|bool|null;
/**
* Returns an array containing all of the result set rows.
*
* @param \Drupal\Core\Database\FetchAs $mode
* One of the cases of the FetchAs enum.
* @param array{class?: class-string, constructor_args?: list<mixed>, column?: int, cursor_orientation?: int, cursor_offset?: int} $fetchOptions
* An array of fetch options.
*
* @return array
* An array of results.
*/
public function fetchAll(FetchAs $mode, array $fetchOptions) : array {
$result = [];
while ($rowAssoc = $this->fetch(FetchAs::Associative, $fetchOptions)) {
$result[] = $this->assocToFetchMode($rowAssoc, $mode, $fetchOptions);
}
return $result;
}
/**
* Returns the entire result set as a single associative array.
*
* This method is only useful for two-column result sets. It will return an
* associative array where the key is one column from the result set and the
* value is another field. In most cases, the default of the first two columns
* is appropriate.
*
* Note that this method will run the result set to the end.
*
* @param int $keyIndex
* (Optional) The numeric index of the field to use as the array key.
* Defaults to 0.
* @param int $valueIndex
* (optional) The numeric index of the field to use as the array value.
* Defaults to 1.
*
* @return array
* An associative array, or an empty array if there is no result set.
*/
public function fetchAllKeyed(int $keyIndex = 0, int $valueIndex = 1) : array {
$result = [];
while ($record = $this->fetch(FetchAs::List, [])) {
$result[$record[$keyIndex]] = $record[$valueIndex];
}
return $result;
}
/**
* Returns the result set as an associative array keyed by the given column.
*
* If the given column appears multiple times, later records will overwrite
* earlier ones.
*
* @param string $column
* The name of the field on which to index the array.
* @param \Drupal\Core\Database\FetchAs $mode
* One of the cases of the FetchAs enum. If set to FetchAs::Associative
* or FetchAs::List the returned value with be an array of arrays. For any
* other value it will be an array of objects. If not specified, defaults to
* what is specified by setFetchMode().
* @param array{class?: class-string, constructor_args?: list<mixed>, column?: int, cursor_orientation?: int, cursor_offset?: int} $fetchOptions
* An array of fetch options.
*
* @return array
* An associative array, or an empty array if there is no result set.
*/
public function fetchAllAssoc(string $column, FetchAs $mode, array $fetchOptions) : array {
$result = [];
while ($rowAssoc = $this->fetch(FetchAs::Associative, [])) {
$result[$rowAssoc[$column]] = $this->assocToFetchMode($rowAssoc, $mode, $fetchOptions);
}
return $result;
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
ResultBase | Base class for results of a data query language (DQL) statement. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.