parent
1727a3e9c1
commit
d466830722
1 changed files with 4 additions and 0 deletions
|
@ -218,6 +218,8 @@ class Doctrine_Query extends Doctrine_Hydrate implements Countable {
|
||||||
if( ! empty($having))
|
if( ! empty($having))
|
||||||
$q .= ' HAVING ' . implode(' AND ',$having);
|
$q .= ' HAVING ' . implode(' AND ',$having);
|
||||||
|
|
||||||
|
$params = array_merge($this->params, $params);
|
||||||
|
|
||||||
$a = $this->getConnection()->execute($q, $params)->fetch(PDO::FETCH_NUM);
|
$a = $this->getConnection()->execute($q, $params)->fetch(PDO::FETCH_NUM);
|
||||||
return $a[0];
|
return $a[0];
|
||||||
}
|
}
|
||||||
|
@ -347,6 +349,8 @@ class Doctrine_Query extends Doctrine_Hydrate implements Countable {
|
||||||
$parser->parse($args[0]);
|
$parser->parse($args[0]);
|
||||||
break;
|
break;
|
||||||
case 'where':
|
case 'where':
|
||||||
|
call_user_func_array(array($this, 'addWhere'), $args);
|
||||||
|
break;
|
||||||
case 'having':
|
case 'having':
|
||||||
case 'orderby':
|
case 'orderby':
|
||||||
case 'groupby':
|
case 'groupby':
|
||||||
|
|
Loading…
Add table
Reference in a new issue