Doctrine


Doctrine\ORM\Query\AST\SelectStatement
/Doctrine/ORM/Query/AST/SelectStatement.php at line 35

Class SelectStatement

Class:SelectStatement - Superclass: Node
Node
⌊ SelectStatement

public class SelectStatement
extends Node

SelectStatement = SelectClause FromClause [WhereClause] [GroupByClause] [HavingClause] [OrderByClause]

License:
http://www.opensource.org/licenses/lgpl-license.php LGPL
See Also:
www.doctrine-project.org
Since:
2.0
Version:
$Revision: 3938 $
Author:
Guilherme Blanco
Jonathan Wage
Roman Borschel

Field Summary
mixed

$fromClause

mixed

$groupByClause

mixed

$havingClause

mixed

$orderByClause

mixed

$selectClause

mixed

$whereClause

Constructor Summary

SelectStatement(mixed selectClause, mixed fromClause)

Method Summary
void

dispatch(mixed sqlWalker, mixed walker, $walker )

Double-dispatch method, supposed to dispatch back to the walker.

Methods inherited from Doctrine\ORM\Query\AST\Node
dispatch, dump

Field Detail

/Doctrine/ORM/Query/AST/SelectStatement.php at line 38

fromClause

public mixed $fromClause

/Doctrine/ORM/Query/AST/SelectStatement.php at line 40

groupByClause

public mixed $groupByClause

/Doctrine/ORM/Query/AST/SelectStatement.php at line 41

havingClause

public mixed $havingClause

/Doctrine/ORM/Query/AST/SelectStatement.php at line 42

orderByClause

public mixed $orderByClause

/Doctrine/ORM/Query/AST/SelectStatement.php at line 37

selectClause

public mixed $selectClause

/Doctrine/ORM/Query/AST/SelectStatement.php at line 39

whereClause

public mixed $whereClause

Constructor Detail

/Doctrine/ORM/Query/AST/SelectStatement.php at line 44

SelectStatement

public SelectStatement(mixed selectClause, mixed fromClause)

Method Detail

/Doctrine/ORM/Query/AST/SelectStatement.php at line 49

dispatch

public void dispatch(mixed sqlWalker, mixed walker, $walker )

Double-dispatch method, supposed to dispatch back to the walker.

Implementation is not mandatory for all nodes.


Doctrine