db_condition($conjunction)
drupal/includes/database/query.inc, line 1149
Returns a new DatabaseCondition, set to the specified conjunction.
The conjunction (AND, OR, XOR, etc.) to use on conditions.
| Name | Description |
|---|---|
| Database abstraction layer | Allow the use of different database servers using the same code base. |
function db_condition($conjunction) {
return new DatabaseCondition($conjunction);
}