function db_fetch_object
Search API
7.x db.inc | db_fetch_object($result_handler) |
6.x db.inc | db_fetch_object($result_handler) |
4.x db.inc | db_fetch_object($result_handler) |
5.x db.inc | db_fetch_object($result_handler) |
4 calls to db_fetch_object()
- 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.
- 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.
- student_search_display_majors_search in modules/
student_search/ student_search.module - Display the majors search sub-tab, where we can select a major and see the students assigned to it.
File
- includes/
db.inc, line 272 - 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);
}