Contao\Database\Statement::executeCached PHP Method

executeCached() public method

Always execute the query and add or replace an existing cache entry
Deprecation: Deprecated since Contao 4.0, to be removed in Contao 5.0. Use Database\Statement::execute() instead.
public executeCached ( ) : Result
return Result The result object
    public function executeCached()
    {
        @trigger_error('Using Database\\Statement::executeCached() has been deprecated and will no longer work in Contao 5.0. Use Database\\Statement::execute() instead.', E_USER_DEPRECATED);
        return call_user_func_array(array($this, 'execute'), func_get_args());
    }