IConnection.TransactionReadUncommitted Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A constant indicating that dirty reads, non-repeatable reads and phantom reads can occur.
[Android.Runtime.Register("TRANSACTION_READ_UNCOMMITTED")]
public const int TransactionReadUncommitted = 1;
[<Android.Runtime.Register("TRANSACTION_READ_UNCOMMITTED")>]
val mutable TransactionReadUncommitted : int
Field Value
Value = 1- Attributes
Remarks
A constant indicating that dirty reads, non-repeatable reads and phantom reads can occur. This level allows a row changed by one transaction to be read by 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.
Java documentation for java.sql.Connection.TRANSACTION_READ_UNCOMMITTED
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.