mysql_affected_rows
Syntax
my_ulonglong mysql_affected_rows(MYSQL * mysql);
mysql
is a connection identifier, which was previously allocated by mysql_init() or mysql_real_connect().
Description
Returns the number of affected rows by the last operation associated with mysql, if the operation was an "upsert" (INSERT, UPDATE, DELETE or REPLACE) statement, or UINT64_MAX
(0xffffffffffffffff) if the last query failed.
See also
Last updated
Was this helpful?