Phalcon\Db\Adapter\Cacheable\Mysql::execute PHP Method

execute() public method

Executes the SQL statement without caching
public execute ( string $sqlStatement, array $bindParams = null, array $bindTypes = null ) : boolean
$sqlStatement string
$bindParams array
$bindTypes array
return boolean
    public function execute($sqlStatement, $bindParams = null, $bindTypes = null)
    {
        $this->internalConnect();
        return parent::execute($sqlStatement, $bindParams, $bindTypes);
    }