Home
last modified time | relevance | path

Searched refs:_sqlParts (Results 1 – 3 of 3) sorted by relevance

/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/lexpress/doctrine1/lib/Doctrine/
H A DRawSql.php117 $this->_sqlParts['select'] = array();
178 $this->_sqlParts = $parts;
179 $this->_sqlParts['select'] = array();
234 if ( ! isset($this->_sqlParts['distinct']) || $this->_sqlParts['distinct'] != true) {
250 if (isset($this->_sqlParts['distinct']) && $this->_sqlParts['distinct'] == true) {
275 …$q .= ( ! empty($this->_sqlParts['from']))? ' FROM ' . implode(' ', $this->_sqlParts['from'…
277 …$q .= ( ! empty($this->_sqlParts['groupby']))? ' GROUP BY ' . implode(', ', $this->_sqlParts['grou…
279 …$q .= ( ! empty($this->_sqlParts['orderby']))? ' ORDER BY ' . implode(', ', $this->_sqlParts['orde…
280 …$q .= ( ! empty($this->_sqlParts['limit']))? ' LIMIT ' . implode(' ', $this->_sqlParts['limit'])…
281 …$q .= ( ! empty($this->_sqlParts['offset']))? ' OFFSET ' . implode(' ', $this->_sqlParts['offset'…
[all …]
H A DQuery.php614 $this->_sqlParts['distinct'] = true;
1200 if (empty($this->_sqlParts['from'])) {
1215 if(!$this->_sqlParts['distinct']) {
1371 …$q .= ( ! empty($this->_sqlParts['groupby'])) ? ' GROUP BY ' . implode(', ', $this->_sqlParts['gro…
1372 …$q .= ( ! empty($this->_sqlParts['having'])) ? ' HAVING ' . implode(' AND ', $this->_sqlParts['…
1373 …$q .= ( ! empty($this->_sqlParts['orderby'])) ? ' ORDER BY ' . implode(', ', $this->_sqlParts['ord…
1453 $having = $this->_sqlParts['having'];
1490 …f (empty($this->_sqlParts['orderby']) && empty($this->_sqlParts['where']) && empty($this->_sqlPart…
1499 …$subquery .= ( ! empty($this->_sqlParts['where']))? ' WHERE ' . implode(' ', $this->_sqlParts
2052 $where = $this->_sqlParts['where'];
[all …]
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/lexpress/doctrine1/lib/Doctrine/Query/
H A DAbstract.php159 protected $_sqlParts = array( variable in Doctrine_Query_Abstract
414 if ( ! isset($this->_sqlParts[$part])) {
417 return $this->_sqlParts[$part];
432 if ( ! isset($this->_sqlParts[$name])) {
443 $this->_sqlParts[$name] = $part;
465 $this->_sqlParts[$name] = array_merge($this->_sqlParts[$name], $part);
467 $this->_sqlParts[$name][] = $part;
488 $this->_sqlParts[$name] = false;
490 $this->_sqlParts[$name] = array();
1904 $this->_sqlParts = array(
[all …]