__construct()
__destruct()
cached()
current()
next()
offsetExists()
offsetGet()
offsetSet()
offsetUnset()
seek()
__construct(array $result, string $sql, mixed $as_object)
array
string
mixed
__destruct() : void
cached() : \Fuel\Core\Database_MySQLi_Cached
fluent | This method is part of a fluent interface and will return the same instance |
---|
current() : mixed
mixed
next() : mixed
mixed
offsetExists(integer $offset) : boolean
if (isset($result[10])) { // Row 10 exists }
integer
boolean
offsetGet(integer $offset) : mixed
$row = $result[10];
integer
mixed
offsetSet(integer $offset, mixed $value)
[!!] You cannot modify a database result.
integer
mixed
\FuelException |
---|
offsetUnset(integer $offset)
[!!] You cannot modify a database result.
integer
\FuelException |
---|
seek(integer $offset) : bool
integer
bool