Uses of Class
velosurf.context.RowIterator

Packages that use RowIterator
velosurf.context Contains all classes that can be accessed from inside a Velocity template. 
velosurf.model Classes linked to the data model : entities, attributes and actions  
velosurf.sql Contains all core classes dealing with the database itself. 
 

Uses of RowIterator in velosurf.context
 

Fields in velosurf.context declared as RowIterator
protected  RowIterator Instance.mRowIterator
          the associated RowIterator
 

Methods in velosurf.context with parameters of type RowIterator
 void Instance.setRowIterator(RowIterator inRowIterator)
          Set the RowIterator this Instance is bound to, when used in a #foreach directive.
 

Uses of RowIterator in velosurf.model
 

Methods in velosurf.model that return RowIterator
 RowIterator Attribute.query(DataAccessor inSource)
          query the resultset for this multivalued attribute
 RowIterator Attribute.query(DataAccessor inSource, java.util.List inRefineCriteria, java.lang.String inOrder)
          query the rowset for this attribute
 RowIterator Entity.query()
          issue a query to iterate though all instances of this entity
 RowIterator Entity.query(java.util.List inRefineCriteria, java.lang.String inOrder)
          issue a query to iterate thought instances of this entity, with a facultative refining criteria and a facultative order by clause
 

Uses of RowIterator in velosurf.sql
 

Methods in velosurf.sql that return RowIterator
 RowIterator PooledStatement.query(java.lang.String inQuery)
          gets the resultset for this statement
 RowIterator PooledStatement.query(java.lang.String inQuery, Entity inResultEntity)
          gets the resultset for this statement, specifying the entity the results belong to
 RowIterator PooledPreparedStatement.query(java.util.List inParams)
          gets the rowset
 RowIterator PooledPreparedStatement.query(java.util.List inParams, Entity inResultEntity)
          gets the rowset
 RowIterator DBConnection.query(java.lang.String inQuery)
          issue a query
 RowIterator DBConnection.query(java.lang.String inQuery, Entity inEntity)
          issue a query, knowing the resulting entity
 



ooOoo