function db_fetch_object
Search API
| 7.x db.inc | db_fetch_object($result_handler) |
| 6.x db.inc | db_fetch_object($result_handler) |
| 5.x db.inc | db_fetch_object($result_handler) |
7 calls to db_fetch_object()
- admin.module in modules/
admin/ admin.module - The administrative configurations for FlightPath.
- admin_display_watchdog in modules/
admin/ admin.module - Displays recent watchdog entries, from the watchdog table
- admin_display_watchdog_entry in modules/
admin/ admin.module - Display the details of a particular watchdog entry, specified by its table id.
- db.inc in includes/
db.inc - This file contains mostly db shortcuts.
- fp_load_user in includes/
db.inc - Returns back a user object for this user_id. If the user is not found in the users table, it will return NULL. If the user_id requested is 0, the anonymous user object is returned.
File
- includes/
db.inc, line 514 - This file contains mostly db shortcuts.
Code
function db_fetch_object($result_handler) {
$db = get_global_database_handler();
return $db->db_fetch_object($result_handler);
}
