db_set_active($key= 'default')
Sets a new active database.
$key: The key in the $databases array to set as the default database.
string|null The key of the formerly active database.
as of Drupal 8.0.x, will be removed in Drupal 9.0.0. Use \Drupal\Core\Database\Database::setActiveConnection().
function db_set_active($key = 'default') { return Database::setActiveConnection($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/core!includes!database.inc/function/db_set_active/8.1.x