db_and

7 database.inc db_and()
8 database.inc db_and()

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

Return value

DatabaseCondition

Related topics

8 calls to db_and()

File

includes/database/database.inc, line 2639
Core systems for the database layer.

Code

function db_and() {
  return new DatabaseCondition('AND');
}
Login or register to post comments