API16:JDatabaseQuery/where
From Joomla! Documentation
Description:JDatabaseQuery/where
Contents |
Syntax
where($conditions, $glue='AND')
| Parameter Name | Default Value | Description |
|---|---|---|
| $conditions | A string or array of where conditions | |
| $glue | 'AND' |
Defined in
libraries/joomla/database/databasequery.php
Importing
jimport( 'joomla.database.databasequery' );
Source Body
public function where($conditions, $glue='AND') { if (is_null($this->_where)) { $glue = strtoupper($glue); $this->_where = new JDatabaseQueryElement('WHERE', $conditions, " $glue "); } else { $this->_where->append($conditions); } return $this; }
[Edit See Also] SeeAlso:JDatabaseQuery/where