function StatementInterface::setFetchMode
Same name in other branches
- 9 core/lib/Drupal/Core/Database/StatementInterface.php \Drupal\Core\Database\StatementInterface::setFetchMode()
- 8.9.x core/lib/Drupal/Core/Database/StatementInterface.php \Drupal\Core\Database\StatementInterface::setFetchMode()
- 11.x core/lib/Drupal/Core/Database/StatementInterface.php \Drupal\Core\Database\StatementInterface::setFetchMode()
Sets the default fetch mode for this statement.
See http://php.net/manual/pdo.constants.php for the definition of the constants used.
Parameters
$mode: One of the \PDO::FETCH_* constants.
$a1: An option depending of the fetch mode specified by $mode:
- for \PDO::FETCH_COLUMN, the index of the column to fetch
- for \PDO::FETCH_CLASS, the name of the class to create
- for \PDO::FETCH_INTO, the object to add the data to
$a2: If $mode is \PDO::FETCH_CLASS, the optional arguments to pass to the constructor.
4 methods override StatementInterface::setFetchMode()
- StatementPrefetch::setFetchMode in core/
lib/ Drupal/ Core/ Database/ StatementPrefetch.php - Sets the default fetch mode for this statement.
- StatementPrefetchIterator::setFetchMode in core/
lib/ Drupal/ Core/ Database/ StatementPrefetchIterator.php - Sets the default fetch mode for this statement.
- StatementWrapper::setFetchMode in core/
lib/ Drupal/ Core/ Database/ StatementWrapper.php - Sets the default fetch mode for this statement.
- StatementWrapperIterator::setFetchMode in core/
lib/ Drupal/ Core/ Database/ StatementWrapperIterator.php - Sets the default fetch mode for this statement.
File
-
core/
lib/ Drupal/ Core/ Database/ StatementInterface.php, line 82
Class
- StatementInterface
- Represents a prepared statement.
Namespace
Drupal\Core\DatabaseCode
public function setFetchMode($mode, $a1 = NULL, $a2 = []);
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.