Pop\Db\Adapter\Pdo::execute PHP Метод

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

Execute the prepared SQL query.
public execute ( ) : void
Результат void
    public function execute()
    {
        if (null === $this->statement) {
            throw new Exception('Error: The database statement resource is not currently set.');
        }
        $this->result = $this->statement->execute();
    }