Kinetica C# API
Version 7.2.3.0
|
A set of parameters for Kinetica.createJoinTable. More...
Classes | |
struct | Options |
A set of string constants for the parameter options. More... | |
Public Member Functions | |
CreateJoinTableRequest () | |
Constructs a CreateJoinTableRequest object with default parameters. More... | |
CreateJoinTableRequest (string join_table_name, IList< string > table_names, IList< string > column_names, IList< string > expressions=null, IDictionary< string, string > options=null) | |
Constructs a CreateJoinTableRequest 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... | |
Properties | |
string | join_table_name [get, set] |
Name of the join table to be created, in [schema_name. More... | |
IList< string > | table_names = new List<string>() [get, set] |
The list of table names composing the join, each in [schema_name. More... | |
IList< string > | column_names = new List<string>() [get, set] |
List of member table columns or column expressions to be included in the join. More... | |
IList< string > | expressions = new List<string>() [get, set] |
An optional list of expressions to combine and filter the joined tables. More... | |
IDictionary< string, string > | options = new Dictionary<string, string>() [get, set] |
Optional parameters. More... | |
![]() | |
Schema | Schema [get] |
Avro Schema for this class More... | |
Additional Inherited Members | |
![]() | |
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.createJoinTable.
Creates a table that is the result of a SQL JOIN.
For join details and examples see: Joins. For limitations, see Join Limitations and Cautions.
Definition at line 20 of file CreateJoinTable.cs.
|
inline |
Constructs a CreateJoinTableRequest object with default parameters.
Definition at line 266 of file CreateJoinTable.cs.
|
inline |
Constructs a CreateJoinTableRequest object with the specified parameters.
join_table_name | Name of the join table to be created, in [schema_name.]table_name format, using standard name resolution rules and meeting table naming criteria. |
table_names | The list of table names composing the join, each in [schema_name.]table_name format, using standard name resolution rules. Corresponds to a SQL statement FROM clause. |
column_names | List of member table columns or column expressions to be included in the join. Columns can be prefixed with 'table_id.column_name', where 'table_id' is the table name or alias. Columns can be aliased via the syntax 'column_name as alias'. Wild cards '*' can be used to include all columns across member tables or 'table_id.*' for all of a single table's columns. Columns and column expressions composing the join must be uniquely named or aliased–therefore, the '*' wild card cannot be used if column names aren't unique across all tables. |
expressions | An optional list of expressions to combine and filter the joined tables. Corresponds to a SQL statement WHERE clause. For details see: expressions. The default value is an empty List. |
options | Optional parameters.
|
Definition at line 411 of file CreateJoinTable.cs.
|
getset |
List of member table columns or column expressions to be included in the join.
Columns can be prefixed with 'table_id.column_name', where 'table_id' is the table name or alias. Columns can be aliased via the syntax 'column_name as alias'. Wild cards '*' can be used to include all columns across member tables or 'table_id.*' for all of a single table's columns. Columns and column expressions composing the join must be uniquely named or aliased–therefore, the '*' wild card cannot be used if column names aren't unique across all tables.
Definition at line 138 of file CreateJoinTable.cs.
|
getset |
An optional list of expressions to combine and filter the joined tables.
Corresponds to a SQL statement WHERE clause. For details see: expressions. The default value is an empty List.
Definition at line 146 of file CreateJoinTable.cs.
|
getset |
Name of the join table to be created, in [schema_name.
]table_name format, using standard name resolution rules and meeting table naming criteria.
Definition at line 118 of file CreateJoinTable.cs.
|
getset |
Optional parameters.
The default value is an empty Dictionary.
Definition at line 262 of file CreateJoinTable.cs.
|
getset |
The list of table names composing the join, each in [schema_name.
]table_name format, using standard name resolution rules.
Corresponds to a SQL statement FROM clause.
Definition at line 126 of file CreateJoinTable.cs.