class PrefetchedResult

Class for prefetched results of a data query language (DQL) statement.

Hierarchy

Expanded class hierarchy of PrefetchedResult

1 file declares its use of PrefetchedResult
StatementPrefetchIterator.php in core/lib/Drupal/Core/Database/StatementPrefetchIterator.php

File

core/lib/Drupal/Core/Database/Statement/PrefetchedResult.php, line 12

Namespace

Drupal\Core\Database\Statement
View source
class PrefetchedResult extends ResultBase {
    use FetchModeTrait;
    
    /**
     * The column names.
     */
    public readonly array $columnNames;
    
    /**
     * The current row index in the result set.
     */
    protected ?int $currentRowIndex = NULL;
    
    /**
     * 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.
     * @param array $data
     *   The prefetched data, in FetchAs::Associative format.
     * @param int|null $rowCount
     *   The row count.
     */
    public function __construct(FetchAs $fetchMode, array $fetchOptions, array $data, ?int $rowCount) {
        parent::__construct($fetchMode, $fetchOptions);
        $this->columnNames = isset($this->data[0]) ? array_keys($this->data[0]) : [];
        $this->currentRowIndex = -1;
    }
    
    /**
     * {@inheritdoc}
     */
    public function rowCount() : ?int {
        return $this->rowCount;
    }
    
    /**
     * {@inheritdoc}
     */
    public function setFetchMode(FetchAs $mode, array $fetchOptions) : bool {
        // We do not really need to do anything here, since calls to any of this
        // class' methods require an explicit fetch mode to be passed in, and we
        // have no longer an active client statement to which we may want to pass
        // the default fetch mode. Just return TRUE.
        return TRUE;
    }
    
    /**
     * {@inheritdoc}
     */
    public function fetch(FetchAs $mode, array $fetchOptions) : array|object|int|float|string|bool|null {
        $this->currentRowIndex++;
        if (!isset($this->data[$this->currentRowIndex])) {
            $this->currentRowIndex = NULL;
            return FALSE;
        }
        $rowAssoc = $this->data[$this->currentRowIndex];
        unset($this->data[$this->currentRowIndex]);
        return $this->assocToFetchMode($rowAssoc, $mode, $fetchOptions);
    }
    
    /**
     * {@inheritdoc}
     */
    public function fetchAllKeyed(int $keyIndex = 0, int $valueIndex = 1) : array {
        if (!isset($this->columnNames[$keyIndex]) || !isset($this->columnNames[$valueIndex])) {
            return [];
        }
        $key = $this->columnNames[$keyIndex];
        $value = $this->columnNames[$valueIndex];
        $result = [];
        while ($row = $this->fetch(FetchAs::Associative, $this->fetchOptions)) {
            $result[$row[$key]] = $row[$value];
        }
        return $result;
    }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title Overrides
FetchModeTrait::$fetchModeLiterals protected property Map FETCH_* modes to their literal for inclusion in messages.
FetchModeTrait::$supportedFetchModes protected property The fetch modes supported.
FetchModeTrait::assocToClass protected function Converts a row of data in FETCH_ASSOC format to FETCH_CLASS.
FetchModeTrait::assocToColumn protected function Converts a row of data in FETCH_ASSOC format to FETCH_COLUMN.
FetchModeTrait::assocToFetchMode protected function Converts a row of data in associative format to a specified format.
FetchModeTrait::assocToNum protected function Converts a row of data in FETCH_ASSOC format to FETCH_NUM.
FetchModeTrait::assocToObj protected function Converts a row of data in FETCH_ASSOC format to FETCH_OBJ.
PrefetchedResult::$columnNames public property The column names.
PrefetchedResult::$currentRowIndex protected property The current row index in the result set.
PrefetchedResult::fetch public function Fetches the next row. Overrides ResultBase::fetch
PrefetchedResult::fetchAllKeyed public function Returns the entire result set as a single associative array. Overrides ResultBase::fetchAllKeyed
PrefetchedResult::rowCount public function Returns the number of rows matched by the last SQL statement. Overrides ResultBase::rowCount
PrefetchedResult::setFetchMode public function Sets the default fetch mode for this result set. Overrides ResultBase::setFetchMode
PrefetchedResult::__construct public function Constructor. Overrides ResultBase::__construct
ResultBase::fetchAll public function Returns an array containing all of the result set rows. 1
ResultBase::fetchAllAssoc public function Returns the result set as an associative array keyed by the given column.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.