function db_num_rows

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)
13 calls to db_num_rows()
admin_add_degree_form_submit in modules/admin/admin.degrees.inc
Submit handler for the add_degree_form.
admin_add_degree_form_validate in modules/admin/admin.degrees.inc
Validate handler for add_degree_form
admin_copy_degree_form_submit in modules/admin/admin.degrees.inc
admin_copy_degree_form_validate in modules/admin/admin.degrees.inc
Validate handler. Make sure our allow_overwrite setting is working. Check for existing major code.
admin_display_degrees in modules/admin/admin.degrees.inc

... See full list

File

includes/db.inc, line 822
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);
}