On this page
final public static function Database::removeConnection
final public static Database::removeConnection($key)
Remove a connection and its corresponding connection information.
Parameters
$key: The connection key.
Return value
TRUE in case of success, FALSE otherwise.
File
- includes/database/database.inc, line 1680
- Core systems for the database layer.
Class
- Database
- Primary front-controller for the database system.
Code
final public static function removeConnection($key) {
if (isset(self::$databaseInfo[$key])) {
self::closeConnection(NULL, $key);
unset(self::$databaseInfo[$key]);
return TRUE;
}
else {
return FALSE;
}
}
© 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::removeConnection/7.x