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 |
---|---|
AlterSequenceRestartStep<java.math.BigInteger> |
DSLContext.alterSequence(Name sequence)
Create a new DSL
ALTER SEQUENCE statement. |
AlterTableStep |
DSLContext.alterTable(Name table)
Create a new DSL
ALTER TABLE statement. |
CreateTableAsStep<Record> |
DSLContext.createGlobalTemporaryTable(Name table)
Create a new DSL
CREATE GLOBAL TEMPORARY TABLE statement. |
CreateIndexStep |
DSLContext.createIndex(Name index)
Create a new DSL
CREATE INDEX statement. |
CreateSequenceFinalStep |
DSLContext.createSequence(Name sequence)
Create a new DSL
CREATE SEQUENCE statement. |
CreateTableAsStep<Record> |
DSLContext.createTable(Name table)
Create a new DSL
CREATE TABLE statement. |
CreateTableAsStep<Record> |
DSLContext.createTemporaryTable(Name table)
Create a new DSL
CREATE TEMPORARY TABLE statement. |
CreateViewAsStep<Record> |
DSLContext.createView(Name view,
Name... fields)
Create a new DSL
CREATE VIEW statement. |
CreateViewAsStep<Record> |
DSLContext.createView(Name view,
Name... fields)
Create a new DSL
CREATE VIEW statement. |
DropIndexOnStep |
DSLContext.dropIndex(Name index)
Create a new DSL
DROP INDEX statement. |
DropIndexOnStep |
DSLContext.dropIndexIfExists(Name index)
Create a new DSL
DROP INDEX IF EXISTS statement. |
DropSequenceFinalStep |
DSLContext.dropSequence(Name sequence)
Create a new DSL
DROP SEQUENCE statement. |
DropSequenceFinalStep |
DSLContext.dropSequenceIfExists(Name sequence)
Create a new DSL
DROP SEQUENCE IF EXISTS statement. |
DropTableStep |
DSLContext.dropTable(Name table)
Create a new DSL
ALTER TABLE statement. |
DropTableStep |
DSLContext.dropTableIfExists(Name table)
Create a new DSL
ALTER TABLE IF EXISTS statement. |
DropViewFinalStep |
DSLContext.dropView(Name view)
Create a new DSL
DROP VIEW statement. |
DropViewFinalStep |
DSLContext.dropViewIfExists(Name view)
Create a new DSL
DROP VIEW IF EXISTS statement. |
DropIndexFinalStep |
DropIndexOnStep.on(Name tableName)
Specify the table and column expressions on which to drop an index.
|
WindowFinalStep<T> |
WindowOverStep.over(Name name)
Turn this aggregate function into a window function referencing a window
name.
|
TruncateIdentityStep<Record> |
DSLContext.truncate(Name table)
Create a new DSL truncate statement.
|
Modifier and Type | Method and Description |
---|---|
static Name |
DSL.name(java.lang.String... qualifiedName)
Create a new SQL identifier using a qualified name.
|
Modifier and Type | Method and Description |
---|---|
static AlterSequenceRestartStep<java.math.BigInteger> |
DSL.alterSequence(Name sequence)
Create a new DSL
ALTER SEQUENCE statement. |
AlterSequenceRestartStep<java.math.BigInteger> |
DefaultDSLContext.alterSequence(Name sequence) |
static AlterTableStep |
DSL.alterTable(Name table)
Create a new DSL
ALTER TABLE statement. |
AlterTableStep |
DefaultDSLContext.alterTable(Name table) |
static CreateTableAsStep<Record> |
DSL.createGlobalTemporaryTable(Name table)
Create a new DSL
CREATE GLOBAL TEMPORARY TABLE statement. |
CreateTableAsStep<Record> |
DefaultDSLContext.createGlobalTemporaryTable(Name table) |
static CreateIndexStep |
DSL.createIndex(Name index)
Create a new DSL
CREATE INDEX statement. |
CreateIndexStep |
DefaultDSLContext.createIndex(Name index) |
static CreateSequenceFinalStep |
DSL.createSequence(Name sequence)
Create a new DSL
CREATE SEQUENCE statement. |
CreateSequenceFinalStep |
DefaultDSLContext.createSequence(Name sequence) |
static CreateTableAsStep<Record> |
DSL.createTable(Name table)
Create a new DSL
CREATE TABLE statement. |
CreateTableAsStep<Record> |
DefaultDSLContext.createTable(Name table) |
static CreateTableAsStep<Record> |
DSL.createTemporaryTable(Name table)
Create a new DSL
CREATE GLOBAL TEMPORARY TABLE statement. |
CreateTableAsStep<Record> |
DefaultDSLContext.createTemporaryTable(Name table) |
static CreateViewAsStep |
DSL.createView(Name view,
Name... fields)
Create a new DSL
CREATE VIEW statement. |
static CreateViewAsStep |
DSL.createView(Name view,
Name... fields)
Create a new DSL
CREATE VIEW statement. |
CreateViewAsStep<Record> |
DefaultDSLContext.createView(Name view,
Name... fields) |
CreateViewAsStep<Record> |
DefaultDSLContext.createView(Name view,
Name... fields) |
static DropIndexOnStep |
DSL.dropIndex(Name index)
Create a new DSL
DROP INDEX statement. |
DropIndexOnStep |
DefaultDSLContext.dropIndex(Name index) |
static DropIndexOnStep |
DSL.dropIndexIfExists(Name index)
Create a new DSL
DROP INDEX IF EXISTS statement. |
DropIndexOnStep |
DefaultDSLContext.dropIndexIfExists(Name index) |
DropSequenceFinalStep |
DefaultDSLContext.dropSequence(Name sequence) |
static <T extends java.lang.Number> |
DSL.dropSequence(Name sequence)
Create a new DSL
DROP SEQUENCE statement. |
DropSequenceFinalStep |
DefaultDSLContext.dropSequenceIfExists(Name sequence) |
static <T extends java.lang.Number> |
DSL.dropSequenceIfExists(Name sequence)
Create a new DSL
DROP SEQUENCE IF EXISTS statement. |
static DropTableStep |
DSL.dropTable(Name table)
Create a new DSL
DROP TABLE IF EXISTS statement. |
DropTableStep |
DefaultDSLContext.dropTable(Name table) |
static DropTableStep |
DSL.dropTableIfExists(Name table)
Create a new DSL
DROP TABLE statement. |
DropTableStep |
DefaultDSLContext.dropTableIfExists(Name table) |
static DropViewFinalStep |
DSL.dropView(Name view)
Create a new DSL
DROP VIEW statement. |
DropViewFinalStep |
DefaultDSLContext.dropView(Name view) |
static DropViewFinalStep |
DSL.dropViewIfExists(Name view)
Create a new DSL
DROP VIEW IF EXISTS statement. |
DropViewFinalStep |
DefaultDSLContext.dropViewIfExists(Name view) |
static Field<java.lang.Object> |
DSL.field(Name name)
Create a qualified field, given its (qualified) field name.
|
static <T> Field<T> |
DSL.field(Name name,
java.lang.Class<T> type)
Create a qualified field, given its (qualified) field name.
|
static <T> Field<T> |
DSL.field(Name name,
DataType<T> type)
Create a qualified field, given its (qualified) field name.
|
static <T> Field<T> |
DSL.function(Name name,
java.lang.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. |
static Schema |
DSL.schema(Name name)
Create a qualified schema, given its schema name.
|
static Sequence<java.math.BigInteger> |
DSL.sequence(Name name)
Create a qualified sequence, given its sequence name.
|
static <T extends java.lang.Number> |
DSL.sequence(Name name,
java.lang.Class<T> type)
Create a qualified sequence, given its sequence name.
|
static <T extends java.lang.Number> |
DSL.sequence(Name name,
DataType<T> type)
Create a qualified sequence, given its sequence name.
|
static Table<Record> |
DSL.table(Name name)
Create a qualified table, given its table name.
|
static TruncateIdentityStep<Record> |
DSL.truncate(Name table)
Create a new DSL truncate statement.
|
TruncateIdentityStep<Record> |
DefaultDSLContext.truncate(Name table) |
Copyright © 2015. All Rights Reserved.