Is there any benefit in a C program to wrapping a single insert via
sqlite3_exec() in a transaction?
In other words, is

INSERT INTO table1 VALUES(1,2);

any worse (or better) than doing:

BEGIN;
INSERT INTO table1 VALUES(1,2);
COMMIT;

Thanks,

Dave

Reply via email to