Package | Description |
---|---|
com.healthmarketscience.jackcess | |
com.healthmarketscience.jackcess.impl |
Modifier and Type | Method and Description |
---|---|
IndexBuilder |
IndexBuilder.addColumns(boolean ascending,
String... names)
Adds the columns with the given ordering to the index.
|
IndexBuilder |
IndexBuilder.addColumns(String... names)
Adds the columns with ASCENDING ordering to the index.
|
IndexBuilder |
IndexBuilder.setIgnoreNulls()
Sets this index to ignore null values.
|
IndexBuilder |
IndexBuilder.setName(String name)
Sets the name of the index.
|
IndexBuilder |
IndexBuilder.setPrimaryKey()
Sets this index to be a primary key index (additionally sets the index as
unique).
|
IndexBuilder |
IndexBuilder.setUnique()
Sets this index to enforce uniqueness.
|
Modifier and Type | Method and Description |
---|---|
TableBuilder |
TableBuilder.addIndex(IndexBuilder index)
Adds an IndexBuilder to the new table.
|
Modifier and Type | Method and Description |
---|---|
void |
DatabaseImpl.createTable(String name,
List<ColumnBuilder> columns,
List<IndexBuilder> indexes)
Create a new table in this database
|
Copyright © 2005–2018. All rights reserved.