bidvertiser

Wednesday, October 22, 2008

MySQL Function Reference contd..

int mysql_affected_rows ([ resource $link_identifier ] )
Gets the number of affected rows by the last INSERT, UPDATE, REPLACE or DELETE query associated with link_identifier.
Return Values
Returns the number of affected rows on success, and -1 if the last query failed.
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 with MySQL versions prior to 4.1.2.
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.

No comments: