Same name in this branch
  1. 5.x includes/database.pgsql.inc \db_fetch_array()
  2. 5.x includes/database.mysqli.inc \db_fetch_array()
  3. 5.x includes/database.mysql.inc \db_fetch_array()
Same name and namespace in other branches
  1. 4.6.x includes/database.pgsql.inc \db_fetch_array()
  2. 4.6.x includes/database.mysql.inc \db_fetch_array()
  3. 4.7.x includes/database.pgsql.inc \db_fetch_array()
  4. 4.7.x includes/database.mysqli.inc \db_fetch_array()
  5. 4.7.x includes/database.mysql.inc \db_fetch_array()
  6. 6.x includes/database.pgsql.inc \db_fetch_array()
  7. 6.x includes/database.mysqli.inc \db_fetch_array()
  8. 6.x includes/database.mysql.inc \db_fetch_array()

Fetch one result row from the previous query as an array.

Parameters

$result: A database query result resource, as returned from db_query().

Return value

An associative array representing the next row of the result. The keys of this object are the names of the table fields selected by the query, and the values are the field values for this result row.

Related topics

15 calls to db_fetch_array()
aggregator_get_category in modules/aggregator/aggregator.module
aggregator_get_feed in modules/aggregator/aggregator.module
block_admin_configure in modules/block/block.module
Menu callback; displays the block configuration form.
block_box_get in modules/block/block.module
contact_admin_edit in modules/contact/contact.module
Category edit page.

... See full list

File

includes/database.pgsql.inc, line 174
Database interface code for PostgreSQL database servers.

Code

function db_fetch_array($result) {
  if ($result) {
    return pg_fetch_assoc($result);
  }
}