db_and

Definition

db_and()
drupal/includes/database/query.inc, line 1137

Description

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

Related topics

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

Code

function db_and() {
  return new DatabaseCondition('AND');
}