function StatementWrapper::getClientStatement

Same name and namespace in other branches
  1. 10 core/lib/Drupal/Core/Database/StatementWrapper.php \Drupal\Core\Database\StatementWrapper::getClientStatement()

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\Database

Code

public function getClientStatement() {
    return $this->clientStatement;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.