public Connection::createDatabase($database)
Overrides \Drupal\Core\Database\Connection::createDatabase().
string $database: The name of the database to create.
\Drupal\Core\Database\DatabaseNotFoundException
Overrides Connection::createDatabase
public function createDatabase($database) { // Escape the database name. $database = Database::getConnection()->escapeDatabase($database); try { // Create the database and set it as active. $this->connection->exec("CREATE DATABASE $database"); $this->connection->exec("USE $database"); } catch (\Exception $e) { throw new DatabaseNotFoundException($e->getMessage()); } }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Database!Driver!mysql!Connection.php/function/Connection::createDatabase/8.1.x