diff --git a/lib/Doctrine/DbStatement.php b/lib/Doctrine/DbStatement.php deleted file mode 100644 index 787b09fd0..000000000 --- a/lib/Doctrine/DbStatement.php +++ /dev/null @@ -1,49 +0,0 @@ -. - */ -class Doctrine_DbStatement extends PDOStatement { - /** - * @param Doctrine_Db $dbh Doctrine Database Handler - */ - private $dbh; - /** - * @param Doctrine_Db $dbh - */ - private function __construct(Doctrine_Db $dbh) { - $this->dbh = $dbh; - } - /** - * @param array $params - */ - public function execute(array $params = array()) { - - $time = microtime(); - try { - $result = parent::execute($params); - } catch(PDOException $e) { - throw new Doctrine_Exception($this->queryString." ".$e->__toString()); - } - $exectime = (microtime() - $time); - $this->dbh->addExecTime($exectime); - - return $result; - } -} -