protected function DatabaseTasks::runTestQuery in Drupal 7
Run SQL tests to ensure the database can execute commands with the current user.
File
- includes/
install.inc, line 449 - API functions for installing modules and themes.
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;
}
}