db_or

Definition

db_or()
drupal/includes/database/query.inc, line 1130

Description

Returns a new DatabaseCondition, set to "OR" all conditions together.

Related topics

Namesort iconDescription
Database abstraction layerAllow the use of different database servers using the same code base.

Code

function db_or() {
  return new DatabaseCondition('OR');
}