final public static Database::isActiveConnection()
Determines if there is an active connection.
Note that this method will return FALSE if no connection has been established yet, even if one could be.
bool TRUE if there is at least one database connection established, FALSE otherwise.
final public static function isActiveConnection() { return !empty(self::$activeKey) && !empty(self::$connections) && !empty(self::$connections[self::$activeKey]); }
© 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!Database.php/function/Database::isActiveConnection/8.1.x