top | item 36464263 (no title) Avery3R | 2 years ago BEGIN TRANSACTION;... ; Modify DB... ; Inspect StateROLLBACK TRANSACTION;and then switch the rollback to commit when satisfied discuss order hn newest jagtstronaut|2 years ago This is cool I probably will do this. wnolens|2 years ago Just mind the isolation level of concurrent queries which may be running. By default you are probably fine since it's usually snapshot isolation mode (will only see committed results as of query start) but there are other modes that break this.
jagtstronaut|2 years ago This is cool I probably will do this. wnolens|2 years ago Just mind the isolation level of concurrent queries which may be running. By default you are probably fine since it's usually snapshot isolation mode (will only see committed results as of query start) but there are other modes that break this.
wnolens|2 years ago Just mind the isolation level of concurrent queries which may be running. By default you are probably fine since it's usually snapshot isolation mode (will only see committed results as of query start) but there are other modes that break this.
jagtstronaut|2 years ago
wnolens|2 years ago