pub unsafe extern "C" fn duckdb_rows_changed(
result: *mut duckdb_result,
) -> idx_t
Expand description
Returns the number of rows changed by the query stored in the result. This is relevant only for INSERT/UPDATE/DELETE queries. For other queries the rows_changed will be 0.
@param result The result object. @return The number of rows changed.