Google.Cloud.Spanner.Data - Enum TransactionMode (4.4.0)

Stay organized with collections Save and categorize content based on your preferences.
public enum TransactionMode

Reference documentation and code samples for the Google.Cloud.Spanner.Data enum TransactionMode.

Indicates the mode for the transaction.

Namespace

GoogleCloudGoogle.Cloud.SpannerData

Assembly

Google.Cloud.Spanner.Data.dll

Fields

NameDescription
ReadOnly

Read-only transactions provide guaranteed consistency across several reads, but do not allow writes. Read-only transactions can be configured to read at timestamps in the past. Read-only transactions do not need to be committed and do not take locks.

ReadWrite

Locking read-write transactions are the only transaction type that support writing data into Cloud Spanner. These transactions rely on pessimistic locking and, if necessary, two-phase commit. Locking read-write transactions may abort, requiring the application to retry.