protected StringDatabaseStorage::dbExecute($query, array $args = array())
Executes an arbitrary SELECT query string with the injected options.
File
- core/modules/locale/src/StringDatabaseStorage.php, line 536
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); }
Please login to continue.