Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
Modifier and Type | Method and Description |
---|---|
CreateIndexIncludeStep |
CreateIndexStep.on(Name tableName,
Collection<? extends Name> fieldNames)
Specify the table and column expressions on which to create an index.
|
CreateIndexIncludeStep |
CreateIndexStep.on(Name tableName,
Name... fieldNames)
Specify the table and column expressions on which to create an index.
|
CreateIndexIncludeStep |
CreateIndexStep.on(String tableName,
Collection<? extends String> fieldNames)
Specify the table and column expressions on which to create an index.
|
CreateIndexIncludeStep |
CreateIndexStep.on(String tableName,
String... fieldNames)
Specify the table and column expressions on which to create an index.
|
CreateIndexIncludeStep |
CreateIndexStep.on(Table<?> table,
Collection<? extends OrderField<?>> fields)
Specify the table and column expressions on which to create an index.
|
CreateIndexIncludeStep |
CreateIndexStep.on(Table<?> table,
OrderField<?>... fields)
Specify the table and column expressions on which to create an index.
|
Copyright © 2019. All rights reserved.