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