Vin?cius da Silva wrote: > Using BEGIN EXCLUSIVE TRANSACTION in place of BEGIN TRANSACTION does not > change the result
I meant, try executing them so that they are guaranteed to conflict, like this:
db1.init("same_file");
db2.init("same_file");
db1.beginTransactionExclusive();
db2.beginTransactionExclusive();
Regards,
Clemens

