OdbcResult
class OdbcResult implements ResultDriver
The driver interacting with result set via ODBC connections.
Methods
No description
Returns the number of rows in a result set.
Fetches the row at current position and moves the internal cursor to the next position.
Moves cursor position without fetching row.
Frees the resources allocated for this result set.
Returns metadata for all columns in a result set.
Returns the result set resource.
Decodes data from result set.
Details
at line 28
__construct(resource $resultSet)
No description
at line 37
int
getRowCount()
Returns the number of rows in a result set.
at line 48
array|null
fetch(bool $assoc)
Fetches the row at current position and moves the internal cursor to the next position.
at line 72
bool
seek(int $row)
Moves cursor position without fetching row.
at line 82
void
free()
Frees the resources allocated for this result set.
at line 91
array
getResultColumns()
Returns metadata for all columns in a result set.
at line 112
mixed
getResultResource()
Returns the result set resource.
at line 121
string
unescapeBinary(string $value)
Decodes data from result set.