Difference between revisions of "OpenDBX/C API/odbx rows affected"

From Linuxnetworks
< OpenDBX‎ | C API
Jump to: navigation, search
(Parameters:)
(Description:)
Line 6: Line 6:
 
= Description: =
 
= Description: =
  
Returns the number of rows changed by the last non SELECT-like query. Zero is returned if nothing was changed, either due to the statement or due to an error.  
+
Returns the number of rows changed by the last non SELECT-like query. Zero is returned if no rows have been changed, either due to the statement or due to an error.
  
 
= Parameters: =
 
= Parameters: =

Revision as of 18:04, 5 June 2006


uint64_t odbx_rows_affected(
    odbx_result_t* result )

Description:

Returns the number of rows changed by the last non SELECT-like query. Zero is returned if no rows have been changed, either due to the statement or due to an error.

Parameters:

Return values:

  • Number of rows affected by the last statement

Errors:

  • None



Back to Overview