objectReadUncommitted extends TransactionIsolation with Product with Serializable
A transaction isolation level indicating that dirty reads, non-repeatable reads and phantom
reads can occur. This level allows a row changed by one transaction to be readby another
transaction before any changes in that row have been committed (a "dirty read"). If any of
the changes are rolled back, the second transaction will have retrieved an invalid row.
A transaction isolation level indicating that dirty reads, non-repeatable reads and phantom reads can occur. This level allows a row changed by one transaction to be readby another transaction before any changes in that row have been committed (a "dirty read"). If any of the changes are rolled back, the second transaction will have retrieved an invalid row.