| Package | Description |
|---|---|
| com.mysql.cj.xdevapi |
Java classes for X DevAPI support.
|
| Modifier and Type | Class and Description |
|---|---|
class |
SelectStatementImpl
SelectStatement implementation. |
| Modifier and Type | Method and Description |
|---|---|
SelectStatement |
SelectStatementImpl.groupBy(java.lang.String... groupBy) |
SelectStatement |
SelectStatement.groupBy(java.lang.String... groupBy)
Add/replace the aggregation fields for this query.
|
SelectStatement |
SelectStatementImpl.having(java.lang.String having) |
SelectStatement |
SelectStatement.having(java.lang.String having)
Add/replace the aggregate criteria for this query.
|
SelectStatement |
SelectStatement.limit(long numberOfRows)
Add/replace the row limit for this query.
|
SelectStatement |
SelectStatementImpl.lockExclusive() |
SelectStatement |
SelectStatement.lockExclusive()
Locks matching rows exclusively so no other transactions can read or write to them.
|
SelectStatement |
SelectStatementImpl.lockExclusive(Statement.LockContention lockContention) |
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.
|
SelectStatement |
SelectStatementImpl.lockShared() |
SelectStatement |
SelectStatement.lockShared()
Locks matching rows against updates.
|
SelectStatement |
SelectStatementImpl.lockShared(Statement.LockContention lockContention) |
SelectStatement |
SelectStatement.lockShared(Statement.LockContention lockContention)
Locks matching rows against updates using the provided lock contention option.
|
SelectStatement |
SelectStatement.offset(long limitOffset)
Add/replace the row offset for this query.
|
SelectStatement |
SelectStatement.orderBy(java.lang.String... sortFields)
Add/replace the order specification for this query.
|
SelectStatement |
TableImpl.select(java.lang.String... projection) |
SelectStatement |
Table.select(java.lang.String... projections)
Create a new select statement using the given projections.
|
SelectStatement |
SelectStatement.where(java.lang.String searchCondition)
Add/replace the search condition for this query.
|