QBWhereCondition
Overview
Where clause for a query; conditions can be added by name.
Properties Summarized
Methods Summarized
Properties Detailed
conditionnames
Get the names for the conditions in the logical condition.
Type Array
Sample
parent
Get query builder parent table clause, this may be a query or a join clause.
Type QBTableClause
Sample
root
Get query builder parent.
Type QBSelect
Sample
Methods Detailed
add(condition)
Add a condition to the AND or OR condition list.
Parameters
QBCondition condition the condition to add
Returns: QBLogicalCondition
Sample
add(name, condition)
Add a named condition to the AND or OR condition list.
Parameters
String name the name of the condition
QBCondition condition the condition to add
Returns: QBLogicalCondition
Sample
clear()
Clear the conditions in the query where-clause.
Returns: QBLogicalCondition
Sample
getCondition(name)
Get a named condition in the logical condition.
Parameters
String name The condition name.
Returns: QBLogicalCondition
Sample
remove(name)
Remove a named condition from the AND or OR condition list.
Parameters
String name The condition name.
Returns: QBLogicalCondition
Sample
Last updated