Definition

db_fetch_object(DatabaseStatementInterface $statement)
drupal/includes/database/database.inc, line 2203

Related topics

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

Code

function db_fetch_object(DatabaseStatementInterface $statement) {
  return $statement->fetch(PDO::FETCH_OBJ);
}