1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- /**
- * Object used for caching the results of select queries. See [Results](/database/results#select-cached) for usage and examples.
- *
- * @package Kohana/Database
- * @category Query/Result
- * @author Kohana Team
- * @copyright (c) Kohana Team
- * @license https://koseven.ga/LICENSE.md
- */
- class Kohana_Database_Result_Cached extends Database_Result {
- public function __construct(array $result, $sql, $as_object = NULL)
- {
- parent::__construct($result, $sql, $as_object);
- // Find the number of rows in the result
- $this->_total_rows = count($result);
- }
- public function __destruct()
- {
- // Cached results do not use resources
- }
- public function cached()
- {
- return $this;
- }
- #[\ReturnTypeWillChange]
- public function seek($offset)
- {
- if ($this->offsetExists($offset))
- {
- $this->_current_row = $offset;
- return TRUE;
- }
- else
- {
- return FALSE;
- }
- }
- #[\ReturnTypeWillChange]
- public function current()
- {
- // Return an array of the row
- return $this->valid() ? $this->_result[$this->_current_row] : NULL;
- }
- } // End Database_Result_Cached
|