db_and
- 7
db_and()
Returns a new DatabaseCondition, set to "AND" all conditions together.
Related topics
- Database abstraction layer
- Allow the use of different database servers using the same code base.
Code
includes/database/query.inc, line 1360
<?php
function db_and() {
return new DatabaseCondition('AND');
}
?>
Login or
register to post comments