final public static function Database::getConnectionInfo

final public static Database::getConnectionInfo($key = 'default')

Gets information on the specified database connection.

Parameters

$connection: The connection key for which we want information.

File

includes/database/database.inc, line 1629
Core systems for the database layer.

Class

Database
Primary front-controller for the database system.

Code

final public static function getConnectionInfo($key = 'default') {
  if (empty(self::$databaseInfo)) {
    self::parseConnectionInfo();
  }

  if (!empty(self::$databaseInfo[$key])) {
    return self::$databaseInfo[$key];
  }
}

© 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/includes!database!database.inc/function/Database::getConnectionInfo/7.x