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 |
---|---|
CreateIndexStep |
DSLContext.createIndex(Name index)
Create a new DSL
CREATE INDEX statement. |
CreateIndexStep |
DSLContext.createIndex(String index)
Create a new DSL
CREATE INDEX statement. |
CreateIndexStep |
DSLContext.createIndexIfNotExists(Name index)
Create a new DSL
CREATE INDEX IF NOT EXISTS statement. |
CreateIndexStep |
DSLContext.createIndexIfNotExists(String index)
Create a new DSL
CREATE INDEX IF NOT EXISTS statement. |
CreateIndexStep |
DSLContext.createUniqueIndex(Name index)
Create a new DSL
CREATE UNIQUE INDEX statement. |
CreateIndexStep |
DSLContext.createUniqueIndex(String index)
Create a new DSL
CREATE UNIQUE INDEX statement. |
CreateIndexStep |
DSLContext.createUniqueIndexIfNotExists(Name index)
Create a new DSL
CREATE UNIQUE INDEX statement. |
CreateIndexStep |
DSLContext.createUniqueIndexIfNotExists(String index)
Create a new DSL
CREATE UNIQUE INDEX statement. |
Modifier and Type | Method and Description |
---|---|
static CreateIndexStep |
DSL.createIndex(Name index)
Create a new DSL
CREATE INDEX statement. |
CreateIndexStep |
DefaultDSLContext.createIndex(Name index) |
static CreateIndexStep |
DSL.createIndex(String index)
Create a new DSL
CREATE INDEX statement. |
CreateIndexStep |
DefaultDSLContext.createIndex(String index) |
static CreateIndexStep |
DSL.createIndexIfNotExists(Name index)
Create a new DSL
CREATE INDEX IF NOT EXISTS statement. |
CreateIndexStep |
DefaultDSLContext.createIndexIfNotExists(Name index) |
static CreateIndexStep |
DSL.createIndexIfNotExists(String index)
Create a new DSL
CREATE INDEX IF NOT EXISTS statement. |
CreateIndexStep |
DefaultDSLContext.createIndexIfNotExists(String index) |
static CreateIndexStep |
DSL.createUniqueIndex(Name index)
Create a new DSL
CREATE UNIQUE INDEX statement. |
CreateIndexStep |
DefaultDSLContext.createUniqueIndex(Name index) |
static CreateIndexStep |
DSL.createUniqueIndex(String index)
Create a new DSL
CREATE UNIQUE INDEX statement. |
CreateIndexStep |
DefaultDSLContext.createUniqueIndex(String index) |
static CreateIndexStep |
DSL.createUniqueIndexIfNotExists(Name index)
Create a new DSL
CREATE UNIQUE INDEX IF NOT EXISTS statement. |
CreateIndexStep |
DefaultDSLContext.createUniqueIndexIfNotExists(Name index) |
static CreateIndexStep |
DSL.createUniqueIndexIfNotExists(String index)
Create a new DSL
CREATE UNIQUE INDEX IF NOT EXISTS statement. |
CreateIndexStep |
DefaultDSLContext.createUniqueIndexIfNotExists(String index) |
Copyright © 2016. All Rights Reserved.