Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API
This package mostly contains interfaces that are implemented by the
org.jooq.impl package. |
Modifier and Type | Interface and Description |
---|---|
interface |
SimpleSelectConditionStep<R extends Record>
|
interface |
SimpleSelectForUpdateOfStep<R extends Record>
|
interface |
SimpleSelectForUpdateStep<R extends Record>
|
interface |
SimpleSelectForUpdateWaitStep<R extends Record>
|
interface |
SimpleSelectLimitStep<R extends Record>
|
interface |
SimpleSelectOffsetStep<R extends Record>
|
interface |
SimpleSelectOrderByStep<R extends Record>
|
interface |
SimpleSelectWhereStep<R extends Record>
|
Modifier and Type | Method and Description |
---|---|
SimpleSelectFinalStep<R> |
SimpleSelectForUpdateStep.forShare()
Add a
FOR SHARE clause to the end of the query. |
SimpleSelectFinalStep<R> |
SimpleSelectForUpdateWaitStep.noWait()
Add a
WAIT clause to the FOR UPDATE clause at
the end of the query. |
SimpleSelectFinalStep<R> |
SimpleSelectForUpdateWaitStep.skipLocked()
Add a
WAIT clause to the FOR UPDATE clause at
the end of the query. |
SimpleSelectFinalStep<R> |
SimpleSelectForUpdateWaitStep.wait(int seconds)
Add a
WAIT clause to the FOR UPDATE clause at
the end of the query. |
Copyright © 2013. All Rights Reserved.