1
0
mirror of synced 2025-03-04 20:03:21 +03:00

- s/query/exec

This commit is contained in:
lsmith 2007-01-05 22:08:25 +00:00
parent 3bc748c5f4
commit 8e667dade3

View File

@ -114,7 +114,7 @@ class Doctrine_Cache_Query_Sqlite implements Countable
public function deleteAll()
{
$sql = "DELETE FROM ".self::CACHE_TABLE;
$stmt = $this->dbh->query($sql);
$stmt = $this->dbh->exec($sql);
return $stmt->rowCount();
}
/**