API15:JQuery/where
From Joomla! Documentation
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
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/query.php
Importing
jimport( 'joomla.database.query' );
Source Body
public function where($conditions, $glue='AND')
{
if (is_null($this->_where)) {
$glue = strtoupper($glue);
$this->_where = new JQueryElement('WHERE', $conditions, "\n\t$glue ");
} else {
$this->_where->append($conditions);
}
return $this;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples