You are here

protected function StringDatabaseStorage::dbExecute in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/locale/src/StringDatabaseStorage.php \Drupal\locale\StringDatabaseStorage::dbExecute()

Executes an arbitrary SELECT query string with the injected options.

File

core/modules/locale/src/StringDatabaseStorage.php, line 541
Contains \Drupal\locale\StringDatabaseStorage.

Class

StringDatabaseStorage
Defines a class to store localized strings in the database.

Namespace

Drupal\locale

Code

protected function dbExecute($query, array $args = array()) {
  return $this->connection
    ->query($query, $args, $this->options);
}