SQL statements that return no data
We will look first at UPDATE, DELETE and INSERT statements. Since they return no data from the database, they are easier to use.
The other important function that we will introduce here is a function to check the number of rows affected:
|
Probably the most obvious thing about this function is the rather unusual return result. For portability reasons, this is a special unsigned type. For use in printf, you're recommended to cast to unsigned long, with a format specification of %lu. This function returns the number of rows affected by the previous UPDATE, INSERT or DELETE query executed using mysql_query.
Unusually for mysql_ functions, a return code of zero indicates no rows affected; a positive number is the actual result, normally the number of affected rows.
As we mentioned earlier, there can be some 'unexpected' results when using mysql_affected_rows. Let's look first at the number of rows affected by INSERT statements, which do behave as expected. We add the following code to our connect2.c program, and call it insert1.c:
|
As expected, the number of rows inserted is one.
Now we change the code, so the 'insert' section is replaced with:
|
Now suppose our children table has data in it, like this:
childno | fname | age |
1
2 3 4 5 6 7 8 9 10 11 | Jenny
Andrew Gavin Duncan Emma Alex Adrian Ann Ann Ann Ann | 14
10 4 2 0 11 5 3 4 3 4 |
Where we execute update1, we would expect the number of rows affected to be reported as 4, but in practice the program reports 2, since it only had to change 2 rows, even though the WHERE clause identified 4 rows. If we want mysql_affected_rows to report the result as 4, which may be the result people familiar with other databases will expect, we need to remember to pass the CLIENT_FOUND_ROWS flag to mysql_real_connect , as in update2.c, like this:
|
If we reset the data in our database, then run the program with this modification, it reports the number of affected rows as 4.
The function mysql_affected_rows has one last oddity, which appears when we delete data from the database. If we delete data with a WHERE clause, then mysql_affected_rows returns the number of rows deleted, as we would expect. However, if there is no WHERE clause, and all rows are therefore deleted, the number of rows affected is reported as zero. This is because an optimization deletes the whole table for efficiency reasons. This behavior is not affected by the CLIENT_FOUND_ROWS option flag.
View Executing SQL statements in MySQL databases using C Discussion
Page: 1 2 3 4 5 Next Page: Statements that return data