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)
1 call to db_affected_rows()
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);
}