function db_num_rows
Search API
7.x db.inc | db_num_rows($result_handler) |
6.x db.inc | db_num_rows($result_handler) |
4.x db.inc | db_num_rows($result_handler) |
5.x db.inc | db_num_rows($result_handler) |
12 calls to db_num_rows()
- admin_add_degree_form_submit in modules/
admin/ admin.degrees.inc - Submit handler for the add_degree_form.
- admin_copy_degree_form_submit in modules/
admin/ admin.degrees.inc - admin_display_degrees in modules/
admin/ admin.degrees.inc - admin_display_groups in modules/
admin/ admin.groups.inc - This function will display a list of all our groups.
- admin_display_main in modules/
admin/ admin.module - This is the "main" page for the admin module. It's what the user first sees when the click to go to the Admin page.
File
- includes/
db.inc, line 277 - This file contains mostly db shortcuts.
Code
function db_num_rows($result_handler) {
$db = get_global_database_handler();
return $db->db_num_rows($result_handler);
}