blob: 3945c42c212d92394903cfaef0c83aaea78d913a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
<?php defined('SYSPATH') or die('No direct script access.');
/**
* Cached database result.
*
* @package Kohana
* @author Kohana Team
* @copyright (c) 2008-2009 Kohana Team
* @license http://kohanaphp.com/license
*/
class Database_Cache_Result_Core extends Database_Result {
/**
* Result data (array of rows)
* @var array
*/
protected $data;
public function __construct($data, $sql, $return_objects)
{
$this->data = $data;
$this->sql = $sql;
$this->total_rows = count($data);
$this->return_objects = $return_objects;
}
public function __destruct()
{
// Not used
}
public function as_array($return = FALSE)
{
// Return arrays rather than objects
$this->return_objects = FALSE;
if ( ! $return )
{
// Return this result object
return $this;
}
// Return the entire array of rows
return $this->data;
}
public function as_object($class = NULL, $return = FALSE)
{
if ($class !== NULL)
throw new Database_Exception('Database cache results do not support object casting');
// Return objects of type $class (or stdClass if none given)
$this->return_objects = TRUE;
return $this;
}
public function seek($offset)
{
if ( ! $this->offsetExists($offset))
return FALSE;
$this->current_row = $offset;
return TRUE;
}
public function current()
{
if ($this->return_objects)
{
// Return a new object with the current row of data
return (object) $this->data[$this->current_row];
}
else
{
// Return an array of the row
return $this->data[$this->current_row];
}
}
} // End Database_Cache_Result
|