| |
|
| java.lang.Object org.xorm.query.QueryContext org.xorm.query.BoundExpression
BoundExpression | public class BoundExpression extends QueryContext implements ExpressionVisitor,I15d(Code) | | Represents a Query where parameters have been bound to specific
values and mapped against the datastore. This object bridges the
gap between the object query model (Expression) and the data query
model (Selector). The task of a DatastoreDriver is to take a
Selector and convert it to a native query representation.
Currently only a limited set of Expressions can be transformed
to Selectors.
Note that once bound, a BoundExpression does not require any knowledge
of JDO interfaces.
|
BoundExpression | public BoundExpression(QueryLanguage query, PersistenceManager mgr)(Code) | | Creates a new BoundExpression for the given query.
|
bindParameter | public void bindParameter(int index, Object value)(Code) | | |
getSelector | public Selector getSelector()(Code) | | Creates or retrieves the Selector tree for this query.
|
|
|
|