function StatementWrapper::rowCount

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

File

core/lib/Drupal/Core/Database/StatementWrapper.php, line 232

Class

StatementWrapper
Implementation of StatementInterface encapsulating PDOStatement.

Namespace

Drupal\Core\Database

Code

public function rowCount() {
  // SELECT query should not use the method.
  if ($this->rowCountEnabled) {
    return $this->clientStatement
      ->rowCount();
  }
  else {
    throw new RowCountException();
  }
}

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