function db_affected_rows

6.x db.inc db_affected_rows($result_handler)
4.x db.inc db_affected_rows()
5.x db.inc db_affected_rows($result_handler)
4 calls to db_affected_rows()
admin_cron in modules/admin/admin.module
hook_cron
advise_cron in modules/advise/advise.module
hook_cron
comments_cron in modules/comments/comments.module
hook_cron
system_cron in modules/system/system.module
Implementation of hook_cron

File

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