Getting the number of affected rows for a SQLite statement using the C API -
i'm executing delete
statement using sqlite 3 c api, , i'd know how fetch number of affected rows.
unfortunately, there no function such sqlite3_affected_rows
or similar.
try sqlite3_changes() and/or sqlite3_total_changes()
Comments
Post a Comment