From 7d7313ab4a631df914c23763270f6960add35ac4 Mon Sep 17 00:00:00 2001 From: zYne Date: Sat, 13 Oct 2007 17:06:26 +0000 Subject: [PATCH] --- lib/Doctrine/Connection.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Doctrine/Connection.php b/lib/Doctrine/Connection.php index 5cfc33b9b..5f3b2af21 100644 --- a/lib/Doctrine/Connection.php +++ b/lib/Doctrine/Connection.php @@ -754,19 +754,19 @@ abstract class Doctrine_Connection extends Doctrine_Configurable implements Coun } /** * queries the database with limit and offset - * added to the query and returns a PDOStatement object + * added to the query and returns a Doctrine_Connection_Statement object * * @param string $query * @param integer $limit * @param integer $offset - * @return PDOStatement + * @return Doctrine_Connection_Statement */ public function select($query, $limit = 0, $offset = 0) { if ($limit > 0 || $offset > 0) { $query = $this->modifyLimitQuery($query, $limit, $offset); } - return $this->dbh->query($query); + return $this->execute($query); } /** * standaloneQuery