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