function(string $db) { if (($this->getCurrent() !== $db) && Str::checkName($db)) { $this->rawQuery("USE `$db`"); $this->current = $db; return true; } return false; }