Definition

db_fetch_object(DatabaseStatement $statement)
drupal/includes/database/database.inc, line 1796

Related topics

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

Code

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