function db_result in Drupal 4
Same name in this branch
- 4 includes/database.mysqli.inc \db_result()
- 4 includes/database.mysql.inc \db_result()
- 4 includes/database.pgsql.inc \db_result()
Same name and namespace in other branches
- 5 includes/database.mysqli.inc \db_result()
- 5 includes/database.mysql.inc \db_result()
- 5 includes/database.pgsql.inc \db_result()
- 6 includes/database.mysqli.inc \db_result()
- 6 includes/database.mysql.inc \db_result()
- 6 includes/database.pgsql.inc \db_result()
Return an individual result field from the previous query.
Only use this function if exactly one field is being selected; otherwise, use db_fetch_object() or db_fetch_array().
Parameters
$result: A database query result resource, as returned from db_query().
$row: The index of the row whose result is needed.
Return value
The resulting field.
Related topics
56 calls to db_result()
- aggregator_block in modules/
aggregator.module - Implementation of hook_block().
- comment_multiple_delete_confirm in modules/
comment.module - List the selected comments and verify that the admin really wants to delete them.
- comment_nodeapi in modules/
comment.module - Implementation of hook_nodeapi().
- comment_num_all in modules/
comment.module - comment_num_new in modules/
comment.module - get number of new comments for current user and specified node
File
- includes/
database.mysql.inc, line 183 - Database interface code for MySQL database servers.
Code
function db_result($result, $row = 0) {
if ($result && mysql_num_rows($result) > $row) {
return mysql_result($result, $row);
}
}