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)
2 calls to db_affected_rows()
system.module in modules/system/system.module
system_cron in modules/system/system.module
Implementation of hook_cron

File

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