If I do: sqlite3_exec(..."UPDATE foo..."...)
and then: numChanges = sqlite3_changes(....) I get the number of updated rows back. My question is, if I changed the statement in the single exec call to "BEGIN IMMEDIATE;UPDATE foo...;COMMIT", will sqlite3_changes still return the same value as before? Or do I need to make the BEGIN/COMMIT in separate exec calls from the UPDATE to get my count? _______________________________________________ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users