function db_affected_rows
Search API
7.x db.inc | db_affected_rows($result_handler) |
6.x db.inc | db_affected_rows( |
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 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);
}