diff --git a/lib/Doctrine/Db/Statement.php b/lib/Doctrine/Db/Statement.php index 241c95460..fe8311854 100644 --- a/lib/Doctrine/Db/Statement.php +++ b/lib/Doctrine/Db/Statement.php @@ -1,26 +1,26 @@ -. - */ -/** - * Doctrine_Db_Statement - * +. + */ +/** + * Doctrine_Db_Statement + * * @author Konsta Vesterinen * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @package Doctrine @@ -29,47 +29,47 @@ * @since 1.0 * @version $Revision$ */ -class Doctrine_Db_Statement extends PDOStatement { - protected $dbh; - - protected $querySequence; - - protected $baseSequence; - - protected $executed = false; - - protected function __construct($dbh) { - $this->dbh = $dbh; - $this->baseSequence = $this->querySequence = $this->dbh->getQuerySequence(); - } - - public function getQuerySequence() { - return $this->querySequence; - } - public function getBaseSequence() { - return $this->baseSequence; - } - public function getQuery() { - return $this->queryString; - } - public function isExecuted($executed = null) { - if($executed === null) - return $this->executed; - - $this->executed = (bool) $executed; - } - - public function execute(array $params = array()) { - $event = new Doctrine_Db_Event($this, Doctrine_Db_Event::EXECUTE, $this->queryString); - - $this->dbh->getListener()->onPreExecute($event); - - $ret = parent::execute($params); - - $this->dbh->getListener()->onExecute($event); - - - - return $this; - } -} +class Doctrine_Db_Statement extends PDOStatement { + protected $dbh; + + protected $querySequence; + + protected $baseSequence; + + protected $executed = false; + + protected function __construct($dbh) { + $this->dbh = $dbh; + $this->baseSequence = $this->querySequence = $this->dbh->getQuerySequence(); + } + + public function getQuerySequence() { + return $this->querySequence; + } + public function getBaseSequence() { + return $this->baseSequence; + } + public function getQuery() { + return $this->queryString; + } + public function isExecuted($executed = null) { + if($executed === null) + return $this->executed; + + $this->executed = (bool) $executed; + } + + public function execute(array $params = null) { + $event = new Doctrine_Db_Event($this, Doctrine_Db_Event::EXECUTE, $this->queryString); + + $this->dbh->getListener()->onPreExecute($event); + + $ret = parent::execute($params); + + $this->dbh->getListener()->onExecute($event); + + + + return $this; + } +}