Package | Description |
---|---|
com.datastax.driver.core.schemabuilder |
A CQL3 schema builder.
|
Modifier and Type | Method and Description |
---|---|
static Drop |
SchemaBuilder.dropIndex(String indexName)
Start building a new DROP INDEX statement.
|
static Drop |
SchemaBuilder.dropIndex(String keyspaceName,
String indexName)
Start building a new DROP INDEX statement.
|
static Drop |
SchemaBuilder.dropTable(String tableName)
Start building a new DROP TABLE statement.
|
static Drop |
SchemaBuilder.dropTable(String keyspaceName,
String tableName)
Start building a new DROP TABLE statement.
|
static Drop |
SchemaBuilder.dropType(String typeName)
Start building a new DROP TYPE statement.
|
static Drop |
SchemaBuilder.dropType(String keyspaceName,
String typeName)
Start building a new DROP TYPE statement.
|
Drop |
Drop.ifExists()
Add the 'IF EXISTS' condition to this DROP statement.
|
Copyright © 2012–2020. All rights reserved.