1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +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() public function deleteAll()
{ {
$sql = "DELETE FROM ".self::CACHE_TABLE; $sql = "DELETE FROM ".self::CACHE_TABLE;
$stmt = $this->dbh->query($sql); $stmt = $this->dbh->exec($sql);
return $stmt->rowCount(); return $stmt->rowCount();
} }
/** /**