public function StatementWrapper::getClientStatement in Drupal 9
Returns the client-level database statement object.
This method should normally be used only within database driver code.
Return value
object The client-level database statement, for example \PDOStatement.
1 call to StatementWrapper::getClientStatement()
- StatementWrapper::__call in core/
lib/ Drupal/ Core/ Database/ StatementWrapper.php - Implements the magic __call() method.
File
- core/
lib/ Drupal/ Core/ Database/ StatementWrapper.php, line 114
Class
- StatementWrapper
- Implementation of StatementInterface encapsulating PDOStatement.
Namespace
Drupal\Core\DatabaseCode
public function getClientStatement() {
return $this->clientStatement;
}