Skip to main content

A set of string constants for the parameter DropSchemaRequest.options. More…

Static Public Attributes

const string NO_ERROR_IF_NOT_EXISTS = “no_error_if_not_exists”
 If TRUE and if the schema specified in DropSchemaRequest.schema_name does not exist, no error is returned.
 
const string TRUE = “true”
 A boolean constant for the DropSchemaRequest.Options options.
 
const string FALSE = “false”
 A boolean constant for the DropSchemaRequest.Options options.
 
const string CASCADE = “cascade”
 If TRUE, all tables within the schema will be dropped.
 

Detailed Description

A set of string constants for the parameter DropSchemaRequest.options.

Optional parameters.

Definition at line 22 of file DropSchema.cs.

Member Data Documentation

◆ CASCADE

const string kinetica.DropSchemaRequest.Options.CASCADE = “cascade”
static

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.

Definition at line 75 of file DropSchema.cs.

◆ FALSE

const string kinetica.DropSchemaRequest.Options.FALSE = “false”
static

A boolean constant for the DropSchemaRequest.Options options.

Definition at line 54 of file DropSchema.cs.

◆ NO_ERROR_IF_NOT_EXISTS

const string kinetica.DropSchemaRequest.Options.NO_ERROR_IF_NOT_EXISTS = “no_error_if_not_exists”
static

If TRUE and if the schema specified in DropSchemaRequest.schema_name does not exist, no error is returned.

If FALSE and if the schema specified in DropSchemaRequest.schema_name does not exist, then an error is returned. Supported values:

The default value is FALSE.

Definition at line 46 of file DropSchema.cs.

◆ TRUE

const string kinetica.DropSchemaRequest.Options.TRUE = “true”
static

A boolean constant for the DropSchemaRequest.Options options.

Definition at line 50 of file DropSchema.cs.


The documentation for this struct was generated from the following files: