Skip to main content

◆ dropSchema() [1/2]

DropSchemaResponse kinetica.Kinetica.dropSchema (DropSchemaRequestrequest_)
inline

Drops an existing SQL-style schema, specified in schema_name.

Parameters
request_Request object containing the parameters for the operation.
Returns
Response object containing the result of the operation.

Definition at line 33454 of file KineticaFunctions.cs.

◆ dropSchema() [2/2]

DropSchemaResponse kinetica.Kinetica.dropSchema (stringschema_name,
IDictionary< string, string >options = null )
inline

Drops an existing SQL-style schema, specified in schema_name .

Parameters
schema_nameName of the schema to be dropped. Must be an existing schema.
optionsOptional parameters.
  • NO_ERROR_IF_NOT_EXISTS: If TRUE and if the schema specified in schema_name does not exist, no error is returned. If FALSE and if the schema specified in schema_name 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.
The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 33543 of file KineticaFunctions.cs.

◆ DropSchemaAsync() [1/2]

async System.Threading.Tasks.Task< DropSchemaResponse > kinetica.Kinetica.DropSchemaAsync (DropSchemaRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Drops an existing SQL-style schema, specified in schema_name.

(async)

Parameters
request_Request object containing the parameters for the operation.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 33472 of file KineticaFunctions.cs.

◆ DropSchemaAsync() [2/2]

async System.Threading.Tasks.Task< DropSchemaResponse > kinetica.Kinetica.DropSchemaAsync (stringschema_name,
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Drops an existing SQL-style schema, specified in schema_name .

(async)

Parameters
schema_nameName of the schema to be dropped. Must be an existing schema.
optionsOptional parameters.
  • NO_ERROR_IF_NOT_EXISTS: If TRUE and if the schema specified in schema_name does not exist, no error is returned. If FALSE and if the schema specified in schema_name 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.
The default value is an empty Dictionary.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 33614 of file KineticaFunctions.cs.