function _drupal_bootstrap_database

Initializes the database system by loading database.inc.

1 call to _drupal_bootstrap_database()
drupal_bootstrap in drupal/core/includes/bootstrap.inc
Ensures Drupal is bootstrapped to the specified phase.

File

drupal/core/includes/bootstrap.inc, line 2394
Functions that need to be loaded on every Drupal request.

Code

function _drupal_bootstrap_database() {

  // Initialize the database system. Note that the connection
  // won't be initialized until it is actually requested.
  require_once DRUPAL_ROOT . '/core/includes/database.inc';
}