Remove a connection and its corresponding connection information.
$key: The connection key.
TRUE in case of success, FALSE otherwise.
public static final function removeConnection($key) {
if (isset(self::$databaseInfo[$key])) {
self::closeConnection(NULL, $key);
unset(self::$databaseInfo[$key]);
return TRUE;
}
else {
return FALSE;
}
}