38     m_select(static_cast<
Select*>(s.clone()))
 
   71   return m_select.get();
 
A Select models a query to be used when retrieving data from a data source. 
 
A Select models a query to be used when retrieving data from a DataSource. 
 
A Select can be used as a source of information in another query. 
 
SubSelect & operator=(const SubSelect &rhs)
 
FromItem * clone() const 
It creates a new copy of this FromItem. 
 
An abstract class that models a source of data in a query. 
 
std::auto_ptr< Select > m_select
The associated SubSelect. 
 
Select * getSelect() const 
It returns the associated subselect. 
 
FromItem & operator=(const FromItem &rhs)
 
A Select can be used as a source of information in another query. 
 
void setSelect(Select *s)
It sets the real SubSelect associated to this object. 
 
TE_DEFINE_VISITABLE SubSelect(Select *s, const std::string &alias)
Constructor.