implements Phalcon\Db\ResultInterface
Encapsulates the resultset internals
$result = $connection->query("SELECT * FROM robots ORDER BY name"); $result->setFetchMode( \Phalcon\Db::FETCH_NUM ); while ($robot = $result->fetchArray()) { print_r($robot); }
Phalcon\Db\Result\Pdo constructor
Allows to execute the statement again. Some database systems don’t support scrollable cursors, So, as cursors are forward only, we need to execute the cursor again to fetch rows from the begining
Fetches an array/object of strings that corresponds to the fetched row, or FALSE if there are no more rows. This method is affected by the active fetch flag set using Phalcon\Db\Result\Pdo::setFetchMode
$result = $connection->query("SELECT * FROM robots ORDER BY name"); $result->setFetchMode( \Phalcon\Db::FETCH_OBJ ); while ($robot = $result->fetch()) { echo $robot->name; }
Returns an array of strings that corresponds to the fetched row, or FALSE if there are no more rows. This method is affected by the active fetch flag set using Phalcon\Db\Result\Pdo::setFetchMode
$result = $connection->query("SELECT * FROM robots ORDER BY name"); $result->setFetchMode( \Phalcon\Db::FETCH_NUM ); while ($robot = result->fetchArray()) { print_r($robot); }
Returns an array of arrays containing all the records in the result This method is affected by the active fetch flag set using Phalcon\Db\Result\Pdo::setFetchMode
$result = $connection->query( "SELECT * FROM robots ORDER BY name" ); $robots = $result->fetchAll();
Gets number of rows returned by a resultset
$result = $connection->query( "SELECT * FROM robots ORDER BY name" ); echo "There are ", $result->numRows(), " rows in the resultset";
Moves internal resultset cursor to another position letting us to fetch a certain row
$result = $connection->query( "SELECT * FROM robots ORDER BY name" ); // Move to third row on result $result->dataSeek(2); // Fetch third row $row = $result->fetch();
Changes the fetching mode affecting Phalcon\Db\Result\Pdo::fetch()
// Return array with integer indexes $result->setFetchMode( \Phalcon\Db::FETCH_NUM ); // Return associative array without integer indexes $result->setFetchMode( \Phalcon\Db::FETCH_ASSOC ); // Return associative array together with integer indexes $result->setFetchMode( \Phalcon\Db::FETCH_BOTH ); // Return an object $result->setFetchMode( \Phalcon\Db::FETCH_OBJ );
Gets the internal PDO result object
© 2011–2017 Phalcon Framework Team
Licensed under the Creative Commons Attribution License 3.0.
https://docs.phalconphp.com/en/latest/api/Phalcon_Db_Result_Pdo.html