diff --git a/lib/Doctrine/Hydrate.php b/lib/Doctrine/Hydrate.php index af5ffb731..8eb22ee22 100644 --- a/lib/Doctrine/Hydrate.php +++ b/lib/Doctrine/Hydrate.php @@ -321,6 +321,14 @@ abstract class Doctrine_Hydrate extends Doctrine_Access { if(is_bool($item)) $item = (int) $item; } + /** + * setParams + * + * @param array $params + */ + public function setParams(array $params = array()) { + $this->params = $params; + } /** * execute * executes the dql query and populates all collections @@ -405,7 +413,7 @@ abstract class Doctrine_Hydrate extends Doctrine_Access { if($prev[$name]->count() > 0) { $record = $prev[$name]->getLast(); - } else { + } else { $record = new $component(); $prev[$name]->add($record); } diff --git a/lib/Doctrine/Query.php b/lib/Doctrine/Query.php index 87a9ff0b4..0ab37b50c 100644 --- a/lib/Doctrine/Query.php +++ b/lib/Doctrine/Query.php @@ -224,6 +224,9 @@ class Doctrine_Query extends Doctrine_Hydrate implements Countable { if( ! empty($having)) $q .= ' HAVING ' . implode(' AND ',$having); + if( ! is_array($params)) + $params = array($params); + $params = array_merge($this->params, $params); $a = $this->getConnection()->execute($q, $params)->fetch(PDO::FETCH_NUM); @@ -533,6 +536,7 @@ class Doctrine_Query extends Doctrine_Hydrate implements Countable { switch(strtolower($this->conn->getName())) { case 'mysql': // mysql doesn't support LIMIT in subqueries + $params = array_merge($this->params, $params); $list = $this->conn->execute($subquery, $params)->fetchAll(PDO::FETCH_COLUMN); $subquery = implode(', ', $list); break; diff --git a/lib/Doctrine/Query/From.php b/lib/Doctrine/Query/From.php index 57058ef36..b94d711e7 100644 --- a/lib/Doctrine/Query/From.php +++ b/lib/Doctrine/Query/From.php @@ -1,6 +1,35 @@ . + */ Doctrine::autoload("Doctrine_Query_Part"); - +/** + * Doctrine_Query_From + * + * @package Doctrine + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @category Object Relational Mapping + * @link www.phpdoctrine.com + * @since 1.0 + * @version $Revision$ + * @author Konsta Vesterinen + */ class Doctrine_Query_From extends Doctrine_Query_Part { /** @@ -15,7 +44,7 @@ class Doctrine_Query_From extends Doctrine_Query_Part { $parts = Doctrine_Query::bracketExplode($str, 'JOIN'); $operator = false; - + switch(trim($parts[0])) { case 'INNER': $operator = ':'; diff --git a/lib/Doctrine/Record.php b/lib/Doctrine/Record.php index 0e1f7df8b..9d86c9ee8 100644 --- a/lib/Doctrine/Record.php +++ b/lib/Doctrine/Record.php @@ -369,7 +369,7 @@ abstract class Doctrine_Record extends Doctrine_Access implements Countable, Ite $value = unserialize($tmp[$name]); if($value === false) - throw new Doctrine_Record_Exception("Unserialization of $name failed. ".var_dump(substr($tmp[$lower],0,30)."...",true)); + throw new Doctrine_Record_Exception("Unserialization of $name failed."); } else $value = $tmp[$name]; diff --git a/manual/codes/DQL (Doctrine Query Language) - GROUP BY, HAVING clauses.php b/manual/codes/DQL (Doctrine Query Language) - GROUP BY, HAVING clauses.php index c2e952ecb..aac784d6a 100644 --- a/manual/codes/DQL (Doctrine Query Language) - GROUP BY, HAVING clauses.php +++ b/manual/codes/DQL (Doctrine Query Language) - GROUP BY, HAVING clauses.php @@ -5,6 +5,6 @@ $users = $conn->query("SELECT u.*, COUNT(p.id) count FROM User u, u.Phonenumber p GROUP BY u.id"); foreach($users as $user) { - print $user->name . ' has ' . $user->Phonenumber->getAggregateValue('count') . ' phonenumbers'; + print $user->name . ' has ' . $user->Phonenumber[0]->count . ' phonenumbers'; } ?> diff --git a/manual/docs/DQL (Doctrine Query Language) - Functional Expressions - String functions.php b/manual/docs/DQL (Doctrine Query Language) - Functional Expressions - String functions.php index 3b0a02289..525bfeb34 100644 --- a/manual/docs/DQL (Doctrine Query Language) - Functional Expressions - String functions.php +++ b/manual/docs/DQL (Doctrine Query Language) - Functional Expressions - String functions.php @@ -1,25 +1,75 @@ +