| Package | Description |
|---|---|
| com.mysql.cj.xdevapi |
Java classes for X DevAPI support.
|
| Modifier and Type | Method and Description |
|---|---|
static Statement.LockContention |
Statement.LockContention.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Statement.LockContention[] |
Statement.LockContention.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
FindStatement |
FindStatementImpl.lockExclusive(Statement.LockContention lockContention) |
SelectStatement |
SelectStatementImpl.lockExclusive(Statement.LockContention lockContention) |
FindStatement |
FindStatement.lockExclusive(Statement.LockContention lockContention)
Locks matching rows exclusively so no other transactions can read or write to them, using the provided lock contention option.
|
SelectStatement |
SelectStatement.lockExclusive(Statement.LockContention lockContention)
Locks matching rows exclusively so no other transactions can read or write to them, using the provided lock contention option.
|
FindStatement |
FindStatementImpl.lockShared(Statement.LockContention lockContention) |
SelectStatement |
SelectStatementImpl.lockShared(Statement.LockContention lockContention) |
FindStatement |
FindStatement.lockShared(Statement.LockContention lockContention)
Locks matching rows against updates using the provided lock contention option.
|
SelectStatement |
SelectStatement.lockShared(Statement.LockContention lockContention)
Locks matching rows against updates using the provided lock contention option.
|