MindLake.DataLake
Last updated
Last updated
Execute a SQL query or command.
statement
- string
: the SQL statement used to query Mind Lake, such as SELECT, INSERT, UPDATE, and CREATE
.
An object of Promise<
>
. .
result
- QueryResult
: The result of query execution.
data
- Array<Array<any>>
: The query data result is presented as a 2D array, with rows and columns.
columnList
- Array<string>
: the column names in the specific order in which they appear.
Create a table in the user's own account in Mind Lake.
tableName
- string
: the name of the table to be created.
primaryKey
(Optional) - Array<string>|undefined
: defines the table's primary key by specifying one or more columns. Each column in the primary key should be identified by its column name.
If the primaryKey
parameter is omitted, no primary key will be defined for the table.
Column
type is used to represent a single column in a table. Each Column
instance encapsulates properties about the column, including its name, data type, and encryption status. By creating a Column
object, you can define the properties of a table column and use it to construct a table schema.
columnName
- string
: The name of the column.
encrypt
- boolean
: A flag that indicates whether the column should be encrypted or not.
Retrieve a list of names for the tables that belong to the user invoking the method, or in the specified cocoon.
cocoonName
(Optional) - string
: specifies the name of the cocoon for which a list of tables should be returned.
If the cocoonName
parameter is omitted, all the tables that belong to the method caller will be listed.
result
- Array<string>
: a list of names for the tables that belong to the user invoking the method, or in the specified cocoon.
Create a Cocoon in Mind Lake. Tables can be categorized into cocoons for classification purposes.
cocoonName
- string
: the name of the cocoon to be created.
Retrieve a list of names for the cocoons that belong to the user invoking the method.
result
- Array<string>
: a list of names for the cocoons that belong to the user invoking the method.
Assign the specified cocoon tag to the table.
tableName
- string
: the name of the table to be tagged with.
cocoonName
- string
: specifies the name of the cocoon for which the table should be tagged with.
Delete a Cocoon in Mind Lake.
cocoonName
- string
: the name of the cocoon to be dropped.
Drop a table in the user's own account in Mind Lake.
tableName
- string
: the name of the table to be dropped.
columns
- Array<
>
: defines the columns in the table. Each column should be defined as a object.
An object of Promise<
>
. .
type
- : The data type of the column, which should be define as
An object of Promise<
>
. .
An object of Promise<
>
. .
An object of Promise<
>
. .
An object of Promise<
>
. .
An object of Promise<
>
. .
An object of Promise<
>
. .