ResultDriver
interface ResultDriver
dibi result set driver interface.
Methods
int
getRowCount()
Returns the number of rows in a result set.
bool
seek($row)
Moves cursor position without fetching row.
array
fetch($type)
Fetches the row at current position and moves the internal cursor to the next position.
void
free()
Frees the resources allocated for this result set.
array
getResultColumns()
Returns metadata for all columns in a result set.
mixed
getResultResource()
Returns the result set resource.
string
unescapeBinary($value)
Decodes data from result set.
Details
at line 164
int
getRowCount()
Returns the number of rows in a result set.
at line 172
bool
seek($row)
Moves cursor position without fetching row.
at line 180
array
fetch($type)
internal |
Fetches the row at current position and moves the internal cursor to the next position.
at line 187
void
free()
Frees the resources allocated for this result set.
at line 193
array
getResultColumns()
Returns metadata for all columns in a result set.
at line 199
mixed
getResultResource()
Returns the result set resource.
at line 206
string
unescapeBinary($value)
Decodes data from result set.