In my programs I often use savepoints so in case of errors I can rollback leaving the db untouched.
I use savepoint instead of begin transaction because it fits more naturally in the nested structure of a C program. When I write a function I do not need to recall if the caller already opened the transaction. When the last savepoint is released the data is safely written in the db. First of all, did I understand correctly? Secondly, is there a significant difference of performance to use nested savepoints instead of a single transaction? Thanks Paolo _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

