src/evsql.h
changeset 34 460f995d3769
parent 31 7804cd7b5cd5
child 38 1fd4da071575
--- a/src/evsql.h	Fri Oct 17 18:53:05 2008 +0300
+++ b/src/evsql.h	Fri Oct 17 19:28:27 2008 +0300
@@ -240,6 +240,9 @@
 // number of columns in the result
 size_t evsql_result_cols (const struct evsql_result_info *res);
 
+// number of affected rows for UPDATE/INSERT
+size_t evsql_result_affected (const struct evsql_result_info *res);
+
 // fetch the raw binary value from a result set, and return it via ptr
 // if size is nonzero, check that the size of the field data matches
 int evsql_result_binary (const struct evsql_result_info *res, size_t row, size_t col, const char **ptr, size_t *size, int nullok);