> update column in result row so I won't process it again. How exactly were you doing this? Building an SQL string and executing with sqlite3_exec, or did you prepare a parameterized UPDATE statement (using sqlite3_prepare) and executing it multiple times with sqlite3_step?
-Tom