Definition

db_fetch_array(DatabaseStatementInterface $statement)
drupal/includes/database/database.inc, line 2276

Related topics

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

Code

function db_fetch_array(DatabaseStatementInterface $statement) {
  return $statement->fetch(PDO::FETCH_ASSOC);
}