JOIN two tables together based on a relationship of columns
Namespace: Wiker.WIDatabaseAssembly:
Syntax
C# |
---|
public void Join( string joinTable, string joinColumn, eOperator conditionOperator, string table, string column, eJoinType joinType ) |
Visual Basic |
---|
Public Sub Join ( _ joinTable As String, _ joinColumn As String, _ conditionOperator As eOperator, _ table As String, _ column As String, _ joinType As eJoinType _ ) |
Visual C++ |
---|
public: void Join( String^ joinTable, String^ joinColumn, eOperator conditionOperator, String^ table, String^ column, eJoinType joinType ) |
Parameters
- joinTable
- Type: System..::..String
First table to JOIN
- joinColumn
- Type: System..::..String
Column in first table to base relationship on
- conditionOperator
- Type: Wiker.WIDatabase..::..eOperator
Relationship operator
- table
- Type: System..::..String
Second table to JOIN
- column
- Type: System..::..String
Column in second table to base relationship on
- joinType
- Type: Wiker.WIDatabase..::..eJoinType
Type of JOIN
Return Value
void
Remarks
Defaults to eJoinType.Normal