buildWhereQuery() public static method

public static buildWhereQuery ( $whereClauses )
Ejemplo n.º 1
0
 protected function _where($whereClauses)
 {
     $where = DialectUtil::buildWhereQuery($whereClauses);
     if ($where) {
         return ' WHERE ' . $where;
     }
     return '';
 }