Uses of Class
gudusoft.gsqlparser.nodes.TJoinList

Packages that use TJoinList
gudusoft.gsqlparser   
gudusoft.gsqlparser.nodes   
gudusoft.gsqlparser.stmt   
 

Uses of TJoinList in gudusoft.gsqlparser
 

Fields in gudusoft.gsqlparser declared as TJoinList
 TJoinList TCustomSqlStatement.joins
          joins represents table sources in following clauses of SQL statement: from clause of select statement. from clause of delete statement, Specifies an additional FROM clause, This Transact-SQL extension to DELETE allows specifying data from table_source and deleting the corresponding rows from the table in the first FROM clause. from clause of update statement, Specifies that a table, view, or derived table source is used to provide the criteria for the update operation.
 

Uses of TJoinList in gudusoft.gsqlparser.nodes
 

Methods in gudusoft.gsqlparser.nodes with parameters of type TJoinList
 void TParseTreeVisitor.postVisit(TJoinList node)
           
 void TParseTreeVisitor.preVisit(TJoinList node)
           
 

Uses of TJoinList in gudusoft.gsqlparser.stmt
 

Methods in gudusoft.gsqlparser.stmt that return TJoinList
 TJoinList TDeleteSqlStatement.getReferenceJoins()
          MySQL syntax: delete table_name1.[*],table_name2.[*] ...
 TJoinList TUpdateSqlStatement.getReferenceJoins()
          Postgresql syntax: update table_name1 set f = 1 from table_references where f = 0