Skip to main content

◆ createSchema() [1/2]

CreateSchemaResponse kinetica.Kinetica.createSchema (CreateSchemaRequestrequest_)
inline

Creates a SQL-style schema.

Schemas are containers for tables and views. Multiple tables and views can be defined with the same name in different schemas.

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

Definition at line 23584 of file KineticaFunctions.cs.

◆ createSchema() [2/2]

CreateSchemaResponse kinetica.Kinetica.createSchema (stringschema_name,
IDictionary< string, string >options = null )
inline

Creates a SQL-style schema.

Schemas are containers for tables and views. Multiple tables and views can be defined with the same name in different schemas.

Parameters
schema_nameName of the schema to be created. Has the same naming restrictions as tables.
optionsOptional parameters.The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 23650 of file KineticaFunctions.cs.

◆ CreateSchemaAsync() [1/2]

async System.Threading.Tasks.Task< CreateSchemaResponse > kinetica.Kinetica.CreateSchemaAsync (CreateSchemaRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Creates a SQL-style schema.

(async)

Schemas are containers for tables and views. Multiple tables and views can be defined with the same name in different schemas.

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 23603 of file KineticaFunctions.cs.

◆ CreateSchemaAsync() [2/2]

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

Creates a SQL-style schema.

(async)

Schemas are containers for tables and views. Multiple tables and views can be defined with the same name in different schemas.

Parameters
schema_nameName of the schema to be created. Has the same naming restrictions as tables.
optionsOptional parameters.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 23697 of file KineticaFunctions.cs.