function db_affected_rows

7.x db.inc db_affected_rows($result_handler)
6.x db.inc db_affected_rows($result_handler)
5.x db.inc db_affected_rows($result_handler)
8 calls to db_affected_rows()
admin.module in modules/admin/admin.module
The administrative configurations for FlightPath.
admin_cron in modules/admin/admin.module
hook_cron
advise.module in modules/advise/advise.module
advise_cron in modules/advise/advise.module
hook_cron
comments.module in modules/comments/comments.module

... See full list

File

includes/db.inc, line 832
This file contains mostly db shortcuts.

Code

function db_affected_rows($result_handler) {
  $db = get_global_database_handler();
  return $db->db_affected_rows($result_handler);
}