| 
    QGIS API Documentation
    2.18.21-Las Palmas (9fba24a)
    
   | 
 
Join definition. More...
#include <qgssqlstatement.h>

Public Member Functions | |
| NodeJoin (NodeTableDef *tabledef, Node *onExpr, JoinType type) | |
| Constructor with table definition, ON expression.  More... | |
| NodeJoin (NodeTableDef *tabledef, QList< QString > usingColumns, JoinType type) | |
| Constructor with table definition and USING columns.  More... | |
| virtual | ~NodeJoin () | 
| virtual void | accept (Visitor &v) const override | 
| Support the visitor pattern.  More... | |
| virtual Node * | clone () const override | 
| Generate a clone of this node.  More... | |
| NodeJoin * | cloneThis () const | 
| Clone with same type return.  More... | |
| virtual QString | dump () const override | 
| Abstract virtual dump method.  More... | |
| virtual NodeType | nodeType () const override | 
| Abstract virtual that returns the type of this node.  More... | |
| Node * | onExpr () const | 
| On expression.  More... | |
| NodeTableDef * | tableDef () const | 
| Table definition.  More... | |
| JoinType | type () const | 
| Join type.  More... | |
| QList< QString > | usingColumns () const | 
| Columns referenced by USING.  More... | |
  Public Member Functions inherited from QgsSQLStatement::Node | |
| virtual | ~Node () | 
Protected Attributes | |
| Node * | mOnExpr | 
| NodeTableDef * | mTableDef | 
| JoinType | mType | 
| QList< QString > | mUsingColumns | 
Join definition.
Definition at line 576 of file qgssqlstatement.h.
      
  | 
  inline | 
Constructor with table definition, ON expression.
Definition at line 580 of file qgssqlstatement.h.
      
  | 
  inline | 
Constructor with table definition and USING columns.
Definition at line 582 of file qgssqlstatement.h.
      
  | 
  inlinevirtual | 
Definition at line 583 of file qgssqlstatement.h.
      
  | 
  inlineoverridevirtual | 
Support the visitor pattern.
For any implementation this should look like
C++:
v.visit( *this );
Python:
v.visit( self)
| v | A visitor that visits this node. | 
Implements QgsSQLStatement::Node.
Definition at line 600 of file qgssqlstatement.h.
      
  | 
  overridevirtual | 
Generate a clone of this node.
Make sure that the clone does not contain any information which is generated in prepare and context related. Ownership is transferred to the caller.
Implements QgsSQLStatement::Node.
Definition at line 659 of file qgssqlstatement.cpp.
| QgsSQLStatement::NodeJoin * QgsSQLStatement::NodeJoin::cloneThis | ( | ) | const | 
Clone with same type return.
Definition at line 664 of file qgssqlstatement.cpp.
      
  | 
  overridevirtual | 
Abstract virtual dump method.
Implements QgsSQLStatement::Node.
Definition at line 628 of file qgssqlstatement.cpp.
      
  | 
  inlineoverridevirtual | 
Abstract virtual that returns the type of this node.
Implements QgsSQLStatement::Node.
Definition at line 597 of file qgssqlstatement.h.
      
  | 
  inline | 
On expression.
Will be nullptr if usingColumns() is not empty
Definition at line 589 of file qgssqlstatement.h.
      
  | 
  inline | 
Table definition.
Definition at line 586 of file qgssqlstatement.h.
      
  | 
  inline | 
Join type.
Definition at line 595 of file qgssqlstatement.h.
Columns referenced by USING.
Definition at line 592 of file qgssqlstatement.h.
      
  | 
  protected | 
Definition at line 607 of file qgssqlstatement.h.
      
  | 
  protected | 
Definition at line 606 of file qgssqlstatement.h.
      
  | 
  protected | 
Definition at line 609 of file qgssqlstatement.h.
Definition at line 608 of file qgssqlstatement.h.
 1.8.13