public function StatementInterface::fetchObject in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Database/StatementInterface.php \Drupal\Core\Database\StatementInterface::fetchObject()
Fetches the next row and returns it as an object.
The object will be of the class specified by StatementInterface::setFetchMode() or stdClass if not specified.
2 methods override StatementInterface::fetchObject()
- StatementEmpty::fetchObject in core/
lib/ Drupal/ Core/ Database/ StatementEmpty.php - Fetches the next row and returns it as an object.
- StatementPrefetch::fetchObject in core/
lib/ Drupal/ Core/ Database/ StatementPrefetch.php - Fetches the next row and returns it as an object.
File
- core/
lib/ Drupal/ Core/ Database/ StatementInterface.php, line 131
Class
- StatementInterface
- Represents a prepared statement.
Namespace
Drupal\Core\DatabaseCode
public function fetchObject();