Difference between revisions of "OpenDBX/C API/odbx rows affected"
From Linuxnetworks
(see also) |
(header) |
||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
− | uint64_t odbx_rows_affected( | + | '''#include <odbx.h>''' |
− | odbx_result_t* result ) | + | |
+ | uint64_t '''odbx_rows_affected'''( | ||
+ | odbx_result_t* '''result''' ) | ||
= Description: = | = Description: = |
Revision as of 00:23, 15 February 2007
#include <odbx.h> 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:
- result: Object created by odbx_result()
Return values:
- Number of rows affected by the last statement
Errors:
- None
See also:
Back to Overview