Pop\Db\Adapter\Sqlite::execute PHP Méthode

execute() public méthode

Execute the prepared SQL query.
public execute ( ) : void
Résultat 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();
    }