Simon Slavin <slav...@bigfraud.org> wrote:
> <http://www.sqlite.org/c3ref/total_changes.html>
> 
> int sqlite3_total_changes(sqlite3*);
> 
> My understanding (which might be wrong) is that this count includes all 
> changes made by all connections to that database: not
> only changes made using your connection but also chances made by another 
> computer, process, or thread. 

I'm 99% sure your understanding is wrong, and this function only reports 
changes made by the connection passed in as a parameter. There is simply no 
machinery in SQLite that would have allowed one connection to indicate to 
another how many changes it has made.
-- 
Igor Tandetnik

_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to