Contao\Database\Statement::executeUncached PHP Method

executeUncached() public method

Bypass the cache and always execute the query
Deprecation: Deprecated since Contao 4.0, to be removed in Contao 5.0. Use Database\Statement::execute() instead.
public executeUncached ( ) : Result
return Result The result object
    public function executeUncached()
    {
        @trigger_error('Using Database\\Statement::executeUncached() 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());
    }