function db_and

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

Return value

Condition

Related topics

6 calls to db_and()

File

drupal/core/includes/database.inc, line 544
Core systems for the database layer.

Code

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