Kinetica C# API
Version 7.2.3.0
|
A set of parameters for Kinetica.createTable. More...
Classes | |
struct | Options |
A set of string constants for the parameter options. More... | |
Public Member Functions | |
CreateTableRequest () | |
Constructs a CreateTableRequest object with default parameters. More... | |
CreateTableRequest (string table_name, string type_id, IDictionary< string, string > options=null) | |
Constructs a CreateTableRequest object with the specified parameters. More... | |
CreateTableRequest () | |
Constructs a CreateTableRequest object with default parameters. More... | |
CreateTableRequest (string table_name, string type_id, IDictionary< string, string > options=null) | |
Constructs a CreateTableRequest object with the specified parameters. More... | |
![]() | |
KineticaData (KineticaType type) | |
Constructor from Kinetica Type More... | |
KineticaData (System.Type type=null) | |
Default constructor, with optional System.Type More... | |
object | Get (int fieldPos) |
Retrieve a specific property from this object More... | |
void | Put (int fieldPos, object fieldValue) |
Write a specific property to this object More... | |
KineticaData (KineticaType type) | |
Constructor from Kinetica Type More... | |
KineticaData (System.Type type=null) | |
Default constructor, with optional System.Type More... | |
object | Get (int fieldPos) |
Retrieve a specific property from this object More... | |
void | Put (int fieldPos, object fieldValue) |
Write a specific property to this object More... | |
Properties | |
string | table_name [get, set] |
Name of the table to be created, in [schema_name. More... | |
string | type_id [get, set] |
The type for the table, specified as either an existing table's numerical type ID (as returned by Kinetica.createType) or a type definition (as described above). More... | |
IDictionary< string, string > | options = new Dictionary<string, string>() [get, set] |
Optional parameters. More... | |
![]() | |
Schema | Schema [get] |
Avro Schema for this class More... | |
![]() | |
Schema | Schema [get] |
Additional Inherited Members | |
![]() | |
static ? RecordSchema | SchemaFromType (System.Type t, KineticaType? ktype=null) |
Create an Avro Schema from a System.Type and a KineticaType. More... | |
static ? RecordSchema | SchemaFromType (System.Type t, KineticaType? ktype=null) |
Create an Avro Schema from a System.Type and a KineticaType. More... | |
A set of parameters for Kinetica.createTable.
Creates a new table with the given type (definition of columns). The type is specified in type_id as either a numerical type ID (as returned by Kinetica.createType) or as a list of columns, each specified as a list of the column name, data type, and any column attributes.
Example of a type definition with some parameters:
Each column definition consists of the column name (which should meet the standard column naming criteria), the column's specific type (int, long, float, double, string, bytes, or any of the properties map values from Kinetica.createType), and any data handling, data key, or data replacement properties.
A table may optionally be designated to use a replicated distribution scheme, or be assigned: foreign keys to other tables, a partitioning scheme, and/or a tier strategy.
Definition at line 54 of file CreateTable.cs.
|
inline |
Constructs a CreateTableRequest object with default parameters.
Definition at line 762 of file CreateTable.cs.
|
inline |
Constructs a CreateTableRequest object with the specified parameters.
table_name | Name of the table to be created, in [schema_name.]table_name format, using standard name resolution rules and meeting table naming criteria. Error for requests with existing table of the same name and type ID may be suppressed by using the NO_ERROR_IF_EXISTS option. |
type_id | The type for the table, specified as either an existing table's numerical type ID (as returned by Kinetica.createType) or a type definition (as described above). |
options | Optional parameters.
|
Definition at line 1145 of file CreateTable.cs.
|
inline |
Constructs a CreateTableRequest object with default parameters.
Definition at line 762 of file CreateTable.cs.
|
inline |
Constructs a CreateTableRequest object with the specified parameters.
table_name | Name of the table to be created, in [schema_name.]table_name format, using standard name resolution rules and meeting table naming criteria. Error for requests with existing table of the same name and type ID may be suppressed by using the NO_ERROR_IF_EXISTS option. |
type_id | The type for the table, specified as either an existing table's numerical type ID (as returned by Kinetica.createType) or a type definition (as described above). |
options | Optional parameters.
|
Definition at line 1145 of file CreateTable.cs.
|
getset |
Optional parameters.
The default value is an empty Dictionary.
Definition at line 758 of file CreateTable.cs.
|
getset |
Name of the table to be created, in [schema_name.
]table_name format, using standard name resolution rules and meeting table naming criteria.
Error for requests with existing table of the same name and type ID may be suppressed by using the NO_ERROR_IF_EXISTS option.
Definition at line 387 of file CreateTable.cs.
|
getset |
The type for the table, specified as either an existing table's numerical type ID (as returned by Kinetica.createType) or a type definition (as described above).
Definition at line 393 of file CreateTable.cs.