Method |
Description |
|
__construct ( Doctrine\DBAL\Driver\Statement $statement, string $strQuery ) |
Validate the connection resource and store the query string |
|
__destruct ( ) |
Automatically free the result |
|
__get ( string $strKey ) : mixed | null |
Return an object property or a field of the current row |
|
__isset ( mixed $strKey ) : boolean |
Check whether a field exists |
|
__set ( mixed $strKey, string $varValue ) |
Set a particular field of the current row |
|
count ( ) : integer |
Return the number of rows in the result set |
|
fetchAllAssoc ( ) : array |
Fetch all rows as associative array |
|
fetchAssoc ( ) : array | false |
Fetch the current row as associative array |
|
fetchEach ( string $strKey ) : array |
Fetch a particular field of each row of the result |
|
fetchField ( integer $intOffset ) : array |
Get the column information and return it as array |
|
fetchRow ( ) : array | false |
Fetch the current row as enumerated array |
|
first ( ) : Result | boolean |
Go to the first row of the current result |
|
last ( ) : Result | boolean |
Go to the last row of the current result |
|
next ( ) : Result | boolean |
Go to the next row of the current result |
|
prev ( ) : Result | boolean |
Go to the previous row of the current result |
|
reset ( ) : Result |
Reset the current result |
|
row ( boolean $blnEnumerated = false ) : array |
Return the current row as associative array |
|