public final class LockMode
extends java.lang.Object
Modifier and Type | Field | Description |
---|---|---|
static LockMode |
DEFAULT |
Acquire read locks for read operations and write locks for write
operations.
|
static LockMode |
DEGREE_2 |
Deprecated.
This has been replaced by
READ_COMMITTED to conform to ANSI
database isolation terminology. |
static LockMode |
DIRTY_READ |
Deprecated.
This has been replaced by
READ_UNCOMMITTED to conform to ANSI
database isolation terminology. |
static LockMode |
IGNORE_LEASES |
Return the data item irrespective of the state of master leases.
|
static LockMode |
READ_COMMITTED |
Read committed isolation provides for cursor stability but not repeatable
reads.
|
static LockMode |
READ_UNCOMMITTED |
Read modified but not yet committed data.
|
static LockMode |
RMW |
Acquire write locks instead of read locks when doing the retrieval.
|
Modifier and Type | Method | Description |
---|---|---|
java.lang.String |
toString() |
public static final LockMode DEFAULT
public static final LockMode READ_UNCOMMITTED
public static final LockMode READ_COMMITTED
Note that this LockMode may only be passed to Database
get
methods, not to Cursor
methods. To configure a cursor for
Read committed isolation, use CursorConfig.setReadCommitted(boolean)
.
public static final LockMode RMW
@Deprecated public static final LockMode DIRTY_READ
READ_UNCOMMITTED
to conform to ANSI
database isolation terminology.@Deprecated public static final LockMode DEGREE_2
READ_COMMITTED
to conform to ANSI
database isolation terminology.
Note that this LockMode may only be passed to Database
get
methods, not to Cursor
methods. To configure a cursor for
Read committed isolation, use CursorConfig.setReadCommitted(boolean)
.
public static final LockMode IGNORE_LEASES
Copyright (c) 1996, 2020 Oracle and/or its affiliates. All rights reserved.