public function Connection::createDatabase

public Connection::createDatabase($database)

Overrides \Drupal\Core\Database\Connection::createDatabase().

Parameters

string $database: The name of the database to create.

Throws

\Drupal\Core\Database\DatabaseNotFoundException

Overrides Connection::createDatabase

File

core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php, line 354

Class

Connection
SQLite implementation of \Drupal\Core\Database\Connection.

Namespace

Drupal\Core\Database\Driver\sqlite

Code

public function createDatabase($database) {
  // Verify the database is writable.
  $db_directory = new \SplFileInfo(dirname($database));
  if (!$db_directory->isDir() && !drupal_mkdir($db_directory->getPathName(), 0755, TRUE)) {
    throw new DatabaseNotFoundException('Unable to create database directory ' . $db_directory->getPathName());
  }
}

© 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!sqlite!Connection.php/function/Connection::createDatabase/8.1.x