API17

JDatabaseQuery::where: Difference between revisions

From Joomla! Documentation

Doxiki2 (talk | contribs)
Bulk upload by Doxiki2
 
Doxiki2 (talk | contribs)
Layout updates
Line 12: Line 12:
===Synopsis===
===Synopsis===
<source lang="php">
<source lang="php">
public JDatabaseQuery->where ($conditions, $glue= 'AND')
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

Joomla 11.1 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

Joomla 11.1

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)

Referenced by

See also

[Edit See Also]

Template:SeeAlso:JDatabaseQuery::where

Examples

<CodeExamplesForm />