SQLiteUnbuffered
final class SQLiteUnbuffered (View source)
Represents an unbuffered SQLite result set. Unbuffered results sets are sequential, forward-seeking only.
Methods
fetch(int $result_type = SQLITE_BOTH, bool $decode_binary = true)
No description
fetchObject(string $class_name = 'stdClass', array $ctor_params = [], bool $decode_binary = true)
Fetches the next row from a result set as an object
fetchSingle(bool $decode_binary = true)
No description
fetchAll(int $result_type = SQLITE_BOTH, bool $decode_binary = true)
No description
column(mixed $index_or_name, mixed $decode_binary = true)
No description
numFields()
No description
fieldName(int $field_index)
No description
current(int $result_type = SQLITE_BOTH, bool $decode_binary = true)
No description
next()
No description
valid()
No description
Details
fetch(int $result_type = SQLITE_BOTH, bool $decode_binary = true)
No description
fetchObject(string $class_name = 'stdClass', array $ctor_params = [], bool $decode_binary = true)
Fetches the next row from a result set as an object
Object oriented style (method): This function is currently not documented; only its argument list is available.
fetchSingle(bool $decode_binary = true)
No description
fetchAll(int $result_type = SQLITE_BOTH, bool $decode_binary = true)
No description
column(mixed $index_or_name, mixed $decode_binary = true)
No description
numFields()
No description
fieldName(int $field_index)
No description
current(int $result_type = SQLITE_BOTH, bool $decode_binary = true)
No description
next()
No description
valid()
No description