public function getDbConnection()
 {
     if ($this->shardUserId) {
         self::$db = DbManager::getUserShard($this->shardUserId, $this->dbComponentId);
     } elseif ($this->dbComponentId) {
         self::$db = DbManager::getDb($this->dbComponentId);
     }
     return parent::getDbConnection();
 }