I am having a strange problem with sqlite3. I got different connections of the same database file using the open () method. connection 1 starts the transaction, and connection 2 starts another transaction, which should update several table entries. Then connection 1 commits the transaction, and then connection 2 completes the transaction. But I found that the connection update command 2 never updates the record in the database. An exception is not excluded during this procedure. I do not know why the problem arises. Can someone explain the reason to me?
sqlite transactions
user26404
source share