Contao\Database::executeCached PHP Метод

executeCached() публичный Метод

Always execute the query and add or replace an existing cache entry
Устаревший: Deprecated since Contao 4.0, to be removed in Contao 5.0. Use Database::execute() instead.
public executeCached ( string $strQuery ) : Result | object
$strQuery string The query string
Результат Contao\Database\Result | object The Database\Result object
    public function executeCached($strQuery)
    {
        @trigger_error('Using Database::executeCached() has been deprecated and will no longer work in Contao 5.0. Use Database::execute() instead.', E_USER_DEPRECATED);
        return $this->execute($strQuery);
    }