On 2/19/2016 8:16 PM, admin at shuling.net wrote: > No. Originally I think since task 2 and 3 are operations performed on the > same set of records, maybe they can be merged to improved the performance > though one is get and another is set.
Ah. Perhaps you are looking for sqlite3_changes() API function. It tells you how many rows where touched by the most recent data modification statement. So you can call it right after performing the UPDATE. -- Igor Tandetnik