function db_num_rows

7.x db.inc db_num_rows($result_handler)
6.x db.inc db_num_rows($result_handler)
5.x db.inc db_num_rows($result_handler)
21 calls to db_num_rows()
admin.degrees.inc in modules/admin/admin.degrees.inc
admin.groups.inc in modules/admin/admin.groups.inc
admin.module in modules/admin/admin.module
The administrative configurations for FlightPath.
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

... See full list

File

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