MatthiasMullie\Scrapbook\Adapters\SQL::delete PHP Méthode

delete() public méthode

public delete ( $key )
    public function delete($key)
    {
        $statement = $this->client->prepare("DELETE FROM {$this->table}\n            WHERE k = :key");
        $statement->execute(array(':key' => $key));
        return $statement->rowCount() === 1;
    }