db_xor()
drupal/includes/database/query.inc, line 1144
Returns a new DatabaseCondition, set to "XOR" all conditions together.
| Name | Description |
|---|---|
| Database abstraction layer | Allow the use of different database servers using the same code base. |
function db_xor() {
return new DatabaseCondition('XOR');
}