public static final class DropSchemaRequest.Options extends Object
NO_ERROR_IF_NOT_EXISTS
: If true
and if the schema specified in
schemaName
does not exist, no error is returned. If false
and if the schema specified in schemaName
does not exist,
then an error is returned.
Supported values:
The default value is FALSE
.
CASCADE
: If true
, all tables within the schema will be dropped.
If false
, the schema will be dropped only if empty.
Supported values:
The default value is FALSE
.
Map
.
A set of string constants for the parameter options
.Modifier and Type | Field and Description |
---|---|
static String |
CASCADE
If
true , all tables within the schema will be dropped. |
static String |
FALSE |
static String |
NO_ERROR_IF_NOT_EXISTS
If
true and if the schema specified in schemaName
does not exist, no error is returned. |
static String |
TRUE |
public static final String NO_ERROR_IF_NOT_EXISTS
true
and if the schema specified in schemaName
does not exist, no error is returned. If false
and if the
schema specified in schemaName
does not exist, then an error
is returned.
Supported values:
The default value is FALSE
.public static final String TRUE
public static final String FALSE
public static final String CASCADE
true
, all tables within the schema will be dropped. If
false
, the schema will be dropped only if empty.
Supported values:
The default value is FALSE
.Copyright © 2024. All rights reserved.