mysql_affected_rows
Get number of affected rows in previous MySQL
operation
Description
intmysql_affected_rows
resource
link_identifier
mysql_affected_rows returns the number
of rows affected by the last INSERT, UPDATE or DELETE query
associated with link_identifier. If the
link identifier isn't specified, the last link opened by
mysql_connect is assumed.
If you are using transactions, you need to call
mysql_affected_rows after your INSERT,
UPDATE, or DELETE query, not after the commit.
If the last query was a DELETE query with no WHERE clause, all
of the records will have been deleted from the table but this
function will return zero.
When using UPDATE, MySQL will not update columns where the new
value is the same as the old value. This creates the possibility
that mysql_affected_rows may not actually
equal the number of rows matched, only the number of rows that
were literally affected by the query.
The REPLACE statement first deletes the record with the same primary key and
then inserts the new record. This function returns the number of deleted
records plus the number of inserted records.
To retrieve the number of rows returned by a SELECT, it is possible to
use also mysql_num_rows.
If the last query failed, this function will return -1.
Delete-Query
]]>
The above example would produce the following output:
Update-Query
]]>
The above example would produce the following output:
See also mysql_num_rows, and
mysql_info.