JDatabaseQuery::where: Difference between revisions
From Joomla! Documentation
Bulk upload by Doxiki2 |
Layout updates |
||
| Line 12: | Line 12: | ||
===Synopsis=== | ===Synopsis=== | ||
<source lang="php"> | <source lang="php"> | ||
public | public JDatabaseQuery::where ($conditions, $glue= 'AND') | ||
</source> | </source> | ||
{| class="wikitable" | {| class="wikitable" | ||
| Line 35: | Line 35: | ||
Returns this object to allow chaining. | Returns this object to allow chaining. | ||
===Defined in=== | ===Defined in=== | ||
libraries/joomla/database/databasequery.php | libraries/joomla/database/databasequery.php (line 465) | ||
* see source code in [[jplatform:database/databasequery.php#cl-465|BitBucket]] | |||
===Referenced by=== | ===Referenced by=== | ||
===See also=== | ===See also=== | ||
Revision as of 01:18, 24 April 2011
JDatabaseQuery::where
Description
Add a single condition, or an array of conditions to the WHERE clause of the query.
Template:Description:JDatabaseQuery::where [Edit Descripton]
Since
Synopsis
public JDatabaseQuery::where ($conditions, $glue= 'AND')
| Parameter | Type | Default | Description |
|---|---|---|---|
| $conditions | mixed | A string or array of where conditions. | |
| $glue | string | 'AND' | The glue by which to join the conditions. Defaults to AND. |
Returns
Returns this object to allow chaining.
Defined in
libraries/joomla/database/databasequery.php (line 465)
- see source code in BitBucket
Referenced by
See also
Template:SeeAlso:JDatabaseQuery::where
Examples
<CodeExamplesForm />