function db_fetch_object in Drupal 6
Same name in this branch
- 6 includes/database.mysqli.inc \db_fetch_object()
- 6 includes/database.mysql.inc \db_fetch_object()
- 6 includes/database.pgsql.inc \db_fetch_object()
Same name and namespace in other branches
- 4 includes/database.mysqli.inc \db_fetch_object()
- 4 includes/database.mysql.inc \db_fetch_object()
- 4 includes/database.pgsql.inc \db_fetch_object()
- 5 includes/database.mysqli.inc \db_fetch_object()
- 5 includes/database.mysql.inc \db_fetch_object()
- 5 includes/database.pgsql.inc \db_fetch_object()
Fetch one result row from the previous query as an object.
Parameters
$result: A database query result resource, as returned from db_query().
Return value
An object representing the next row of the result, or FALSE. The attributes of this object are the table fields selected by the query.
Related topics
180 calls to db_fetch_object()
- actions_do in includes/
actions.inc - Perform a given list of actions by executing their callback functions.
- actions_get_all_actions in includes/
actions.inc - Retrieves all action instances from the database.
- actions_load in includes/
actions.inc - Retrieve a single action from the database.
- actions_synchronize in includes/
actions.inc - Synchronize actions that are provided by modules.
- aggregator_block in modules/
aggregator/ aggregator.module - Implementation of hook_block().
File
- includes/
database.pgsql.inc, line 173 - Database interface code for PostgreSQL database servers.
Code
function db_fetch_object($result) {
if ($result) {
return pg_fetch_object($result);
}
}