protected function StringDatabaseStorage::dbExecute

Executes an arbitrary SELECT query string.

File

drupal/core/modules/locale/lib/Drupal/locale/StringDatabaseStorage.php, line 571
Definition of Drupal\locale\StringDatabaseStorage.

Class

StringDatabaseStorage
Defines the locale string class.

Namespace

Drupal\locale

Code

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