function DatabaseTasks::runTestQuery

Run SQL tests to ensure the database can execute commands with the current user.

File

includes/install.inc, line 449

Class

DatabaseTasks
Database installer structure.

Code

protected function runTestQuery($query, $pass, $fail, $fatal = FALSE) {
  try {
    db_query($query);
    $this->pass(st($pass));
  } catch (Exception $e) {
    $this->fail(st($fail, array(
      '%query' => $query,
      '%error' => $e->getMessage(),
      '%name' => $this->name(),
    )));
    return !$fatal;
  }
}

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