/** * For the given user, updates login-related information including time of last login. * * @param int $iUserId User identifier. * * @return bool */ public function updateAccountLastLoginAndCount($iUserId) { $bResult = $this->oConnection->Execute($this->oCommandCreator->updateAccountLastLoginAndCountQuery($iUserId)); $this->throwDbExceptionIfExist(); return $bResult; }