Connection.TransactionReadUncommitted Field

Definition

Caution

Use 'Java.Sql.IConnection.TransactionReadUncommitted'. This class will be removed in a future release.

A constant indicating that dirty reads, non-repeatable reads and phantom reads can occur.

[Android.Runtime.Register("TRANSACTION_READ_UNCOMMITTED")]
[System.Obsolete("Use 'Java.Sql.IConnection.TransactionReadUncommitted'. This class will be removed in a future release.")]
public const int TransactionReadUncommitted = 1;
[<Android.Runtime.Register("TRANSACTION_READ_UNCOMMITTED")>]
[<System.Obsolete("Use 'Java.Sql.IConnection.TransactionReadUncommitted'. This class will be removed in a future release.")>]
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.

Applies to