Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes. |
Modifier and Type | Method and Description |
---|---|
WindowFinalStep<T> |
WindowOverStep.over(Name name)
Turn this aggregate function into a window function referencing a window
name.
|
WindowFinalStep<T> |
AggregateFunction.over(Name name)
Turn this aggregate function into a window function referencing a window
name.
|
Modifier and Type | Method and Description |
---|---|
static Name |
DSL.name(String... qualifiedName)
Create a new SQL identifier using a qualified name.
|
Modifier and Type | Method and Description |
---|---|
static <T> Field<T> |
DSL.function(Name name,
Class<T> type,
Field<?>... arguments)
function() can be used to access native or user-defined
functions that are not yet or insufficiently supported by jOOQ. |
static <T> Field<T> |
DSL.function(Name name,
DataType<T> type,
Field<?>... arguments)
function() can be used to access native or user-defined
functions that are not yet or insufficiently supported by jOOQ. |
Copyright © 2014. All Rights Reserved.