From 9e016069d516ea03a7989c835d18d09efa16d49a Mon Sep 17 00:00:00 2001 From: zYne Date: Mon, 21 May 2007 16:29:07 +0000 Subject: [PATCH] --- lib/Doctrine/Hydrate.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/Doctrine/Hydrate.php b/lib/Doctrine/Hydrate.php index d6c179b8d..93e91359a 100644 --- a/lib/Doctrine/Hydrate.php +++ b/lib/Doctrine/Hydrate.php @@ -381,6 +381,10 @@ class Doctrine_Hydrate */ public function execute($params = array(), $return = Doctrine::FETCH_RECORD) { + if ($this->type !== self::SELECT) { + return $this->conn->exec($query, $params); + } + $array = (array) $this->_fetch($params, $return = Doctrine::FETCH_RECORD); if (empty($this->_aliasMap)) {