function db_fetch_array
6.x database.pgsql.inc | db_fetch_array($result) |
6.x database.mysqli.inc | db_fetch_array($result) |
6.x database.mysql.inc | db_fetch_array($result) |
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, or FALSE. 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
56 calls to db_fetch_array()
- aggregator_category_load in drupal-6.x/
modules/ aggregator/ aggregator.module - Load an aggregator category.
- aggregator_cron in drupal-6.x/
modules/ aggregator/ aggregator.module - Implementation of hook_cron().
- aggregator_feed_load in drupal-6.x/
modules/ aggregator/ aggregator.module - Load an aggregator feed.
- block_admin_configure in drupal-6.x/
modules/ block/ block.admin.inc - Menu callback; displays the block configuration form.
- block_box_get in drupal-6.x/
modules/ block/ block.module - Returns information from database about a user-created (custom) block.
File
- drupal-6.x/
includes/ database.pgsql.inc, line 189 - Database interface code for PostgreSQL database servers.
Code
function db_fetch_array($result) {
if ($result) {
return pg_fetch_assoc($result);
}
}