Uses of Interface
org.apache.openjpa.jdbc.sql.Result
-
Packages that use Result Package Description org.apache.openjpa.jdbc.kernel OpenJPA-JDBC Runtime Kernelorg.apache.openjpa.jdbc.kernel.exps OpenJPA-JDBC Expression Treeorg.apache.openjpa.jdbc.meta OpenJPA-JDBC ORM Metadataorg.apache.openjpa.jdbc.meta.strats OpenJPA-JDBC ORM Strategiesorg.apache.openjpa.jdbc.sql OpenJPA-JDBC SQL Abstraction -
-
Uses of Result in org.apache.openjpa.jdbc.kernel
Fields in org.apache.openjpa.jdbc.kernel declared as Result Modifier and Type Field Description protected Result
SelectResultObjectProvider. _res
Result
ConnectionInfo. result
Methods in org.apache.openjpa.jdbc.kernel that return Result Modifier and Type Method Description Result
FinderQueryImpl. execute(OpenJPAStateManager sm, StoreManager store, FetchConfiguration fetch)
Result
SelectResultObjectProvider. getResult()
Methods in org.apache.openjpa.jdbc.kernel that return types with arguments of type Result Modifier and Type Method Description FinderQuery<ClassMapping,SelectExecutor,Result>
FinderCacheImpl. cache(ClassMapping mapping, SelectExecutor select, FetchConfiguration fetch)
Cache a Finder Query for the given mapping and select.FinderQuery<ClassMapping,SelectExecutor,Result>
FinderCacheImpl. get(ClassMapping mapping, FetchConfiguration fetch)
Gets the finder query for the given mapping.FinderQuery<ClassMapping,SelectExecutor,Result>
FinderCacheImpl. markUncachable(java.lang.String id)
FinderQuery<ClassMapping,SelectExecutor,Result>
FinderCacheImpl. markUncachable(ClassMapping mapping)
Methods in org.apache.openjpa.jdbc.kernel with parameters of type Result Modifier and Type Method Description protected java.lang.Class<?>
JDBCStoreManager. getType(Result res, ClassMapping mapping)
This method is to provide override for non-JDBC or JDBC-like implementation of getting type from the result set.protected void
JDBCStoreManager. getVersion(ClassMapping mapping, OpenJPAStateManager sm, Result res)
This method is to provide override for non-JDBC or JDBC-like implementation of getting version from the result set.protected boolean
JDBCStoreManager. isEmptyResult(Result res)
This method is to provide override for non-JDBC or JDBC-like implementation of checking whether the result set is empty or not.java.lang.Object
JDBCStoreManager. load(ClassMapping mapping, JDBCFetchConfiguration fetch, java.util.BitSet exclude, Result result)
Load the object in the current row of the given result.Constructors in org.apache.openjpa.jdbc.kernel with parameters of type Result Constructor Description GenericResultObjectProvider(java.lang.Class<?> pcClass, JDBCStore store, JDBCFetchConfiguration fetch, Result res)
Constructor.GenericResultObjectProvider(ClassMapping mapping, JDBCStore store, JDBCFetchConfiguration fetch, Result res)
Constructor.PreparedResultObjectProvider(SelectExecutor sel, ClassMapping mapping, JDBCStore store, JDBCFetchConfiguration fetch, Result res)
Constructor. -
Uses of Result in org.apache.openjpa.jdbc.kernel.exps
Methods in org.apache.openjpa.jdbc.kernel.exps with parameters of type Result Modifier and Type Method Description java.lang.Object
Args. load(ExpContext ctx, ExpState state, Result res)
java.lang.Object
CoalesceExpression. load(ExpContext ctx, ExpState state, Result res)
java.lang.Object
Concat. load(ExpContext ctx, ExpState state, Result res)
java.lang.Object
GeneralCaseExpression. load(ExpContext ctx, ExpState state, Result res)
java.lang.Object
IndexOf. load(ExpContext ctx, ExpState state, Result res)
java.lang.Object
MapEntry. load(ExpContext ctx, ExpState state, Result res)
java.lang.Object
MapKey. load(ExpContext ctx, ExpState state, Result res)
java.lang.Object
Math. load(ExpContext ctx, ExpState state, Result res)
java.lang.Object
NullIfExpression. load(ExpContext ctx, ExpState state, Result res)
java.lang.Object
PCPath. load(ExpContext ctx, ExpState state, Result res)
java.lang.Object
SimpleCaseExpression. load(ExpContext ctx, ExpState state, Result res)
java.lang.Object
SubQ. load(ExpContext ctx, ExpState state, Result res)
java.lang.Object
Substring. load(ExpContext ctx, ExpState state, Result res)
java.lang.Object
Trim. load(ExpContext ctx, ExpState state, Result res)
java.lang.Object
Val. load(ExpContext ctx, ExpState state, Result res)
Load the data for this value. -
Uses of Result in org.apache.openjpa.jdbc.meta
Methods in org.apache.openjpa.jdbc.meta with parameters of type Result Modifier and Type Method Description boolean
ClassMapping. customLoad(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result result)
boolean
ClassStrategy. customLoad(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result result)
Implement this method to customize loading from aResult
into an instance.java.lang.Class<?>
Discriminator. getClass(JDBCStore store, ClassMapping base, Result result)
java.lang.Class<?>
DiscriminatorStrategy. getClass(JDBCStore store, ClassMapping base, Result result)
Return the class for the current result row.java.lang.Object
ClassMapping. getObjectId(JDBCStore store, Result res, ForeignKey fk, boolean subs, Joins joins)
Return the oid value stored in the result.java.lang.Object
DelegatingJoinable. getPrimaryKeyValue(Result res, Column[] cols, ForeignKey fk, JDBCStore store, Joins joins)
java.lang.Object
Joinable. getPrimaryKeyValue(Result res, Column[] cols, ForeignKey fk, JDBCStore store, Joins joins)
Return the value for this joinable from the given result, using the given columns.void
FieldMapping. load(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res)
void
FieldStrategy. load(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res)
Load virtual row data; the given result is not guaranteed to contain data for this field, so the field mapping should make sure the result contains its needed column data before loading.java.lang.Object
Version. load(OpenJPAStateManager sm, JDBCStore store, Result res)
java.lang.Object
Version. load(OpenJPAStateManager sm, JDBCStore store, Result res, Joins joins)
java.lang.Object
VersionStrategy. load(OpenJPAStateManager sm, JDBCStore store, Result res)
Load data.java.lang.Object
VersionStrategy. load(OpenJPAStateManager sm, JDBCStore store, Result res, Joins joins)
Load data.void
FieldMapping. loadEagerJoin(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res)
void
FieldStrategy. loadEagerJoin(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res)
Load the joined eager result.java.lang.Object
FieldMapping. loadKeyProjection(JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
java.lang.Object
FieldStrategy. loadKeyProjection(JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
Load this field's key value using the given result.java.lang.Object
FieldMapping. loadProjection(JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
java.lang.Object
FieldStrategy. loadProjection(JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
Load this field value using the given result. -
Uses of Result in org.apache.openjpa.jdbc.meta.strats
Methods in org.apache.openjpa.jdbc.meta.strats that return Result Modifier and Type Method Description Result[]
HandlerHandlerMapTableFieldStrategy. getResults(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, int eagerMode, Joins[] joins, boolean lrs)
Result[]
HandlerRelationMapTableFieldStrategy. getResults(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, int eagerMode, Joins[] resJoins, boolean lrs)
Result[]
LRSMapFieldStrategy. getResults(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, int eagerMode, Joins[] joins, boolean lrs)
Return results containing all keys and values for this map.Result[]
RelationHandlerMapTableFieldStrategy. getResults(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, int eagerMode, Joins[] resJoins, boolean lrs)
Result[]
RelationMapInverseKeyFieldStrategy. getResults(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, int eagerMode, Joins[] joins, boolean lrs)
Result[]
RelationMapTableFieldStrategy. getResults(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, int eagerMode, Joins[] joins, boolean lrs)
Result[]
RelationRelationMapTableFieldStrategy. getResults(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, int eagerMode, Joins[] resJoins, boolean lrs)
Methods in org.apache.openjpa.jdbc.meta.strats with parameters of type Result Modifier and Type Method Description boolean
AbstractClassStrategy. customLoad(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result result)
java.lang.Class
AbstractDiscriminatorStrategy. getClass(JDBCStore store, ClassMapping base, Result result)
java.lang.Class
InValueDiscriminatorStrategy. getClass(JDBCStore store, ClassMapping base, Result res)
java.lang.Class
SubclassJoinDiscriminatorStrategy. getClass(JDBCStore store, ClassMapping base, Result res)
java.lang.Class
SuperclassDiscriminatorStrategy. getClass(JDBCStore store, ClassMapping base, Result res)
java.lang.Object
HandlerFieldStrategy. getPrimaryKeyValue(Result res, Column[] cols, ForeignKey fk, JDBCStore store, Joins joins)
java.lang.Object
PrimitiveFieldStrategy. getPrimaryKeyValue(Result res, Column[] cols, ForeignKey fk, JDBCStore store, Joins joins)
java.lang.Object
RelationFieldStrategy. getPrimaryKeyValue(Result res, Column[] cols, ForeignKey fk, JDBCStore store, Joins joins)
java.lang.Object
StringFieldStrategy. getPrimaryKeyValue(Result res, Column[] cols, ForeignKey fk, JDBCStore store, Joins joins)
void
AbstractFieldStrategy. load(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res)
java.lang.Object
AbstractVersionStrategy. load(OpenJPAStateManager sm, JDBCStore store, Result res)
java.lang.Object
AbstractVersionStrategy. load(OpenJPAStateManager sm, JDBCStore store, Result res, Joins joins)
java.lang.Object
ColumnVersionStrategy. load(OpenJPAStateManager sm, JDBCStore store, Result res)
java.lang.Object
ColumnVersionStrategy. load(OpenJPAStateManager sm, JDBCStore store, Result res, Joins joins)
void
EmbedFieldStrategy. load(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res)
void
HandlerFieldStrategy. load(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res)
void
LobFieldStrategy. load(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res)
protected java.lang.Object
MaxEmbeddedByteArrayFieldStrategy. load(Column col, Result res, Joins joins)
protected java.lang.Object
MaxEmbeddedCharArrayFieldStrategy. load(Column col, Result res, Joins joins)
void
PrimitiveFieldStrategy. load(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res)
void
RelationFieldStrategy. load(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res)
void
StringFieldStrategy. load(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res)
static java.lang.Object
HandlerStrategies. loadDataStore(ValueMapping vm, Result res, Joins joins, Column[] cols)
Load the datastore value from the given result.void
AbstractFieldStrategy. loadEagerJoin(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res)
void
RelationFieldStrategy. loadEagerJoin(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res)
void
StoreCollectionFieldStrategy. loadEagerJoin(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res)
java.lang.Object
HandlerCollectionTableFieldStrategy. loadElement(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
java.lang.Object
LRSCollectionFieldStrategy. loadElement(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
Load an element of the collection.java.lang.Object
RelationCollectionInverseKeyFieldStrategy. loadElement(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
java.lang.Object
RelationCollectionTableFieldStrategy. loadElement(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
protected java.lang.Object
RelationToManyInverseKeyFieldStrategy. loadElement(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
protected java.lang.Object
RelationToManyTableFieldStrategy. loadElement(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
protected abstract java.lang.Object
StoreCollectionFieldStrategy. loadElement(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
Load an element of the collection.java.lang.Object
HandlerHandlerMapTableFieldStrategy. loadKey(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
java.lang.Object
HandlerRelationMapTableFieldStrategy. loadKey(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
java.lang.Object
LRSMapFieldStrategy. loadKey(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
Load a key from the given result.java.lang.Object
RelationHandlerMapTableFieldStrategy. loadKey(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
java.lang.Object
RelationMapInverseKeyFieldStrategy. loadKey(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
java.lang.Object
RelationMapTableFieldStrategy. loadKey(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
java.lang.Object
RelationRelationMapTableFieldStrategy. loadKey(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
java.lang.Object
AbstractFieldStrategy. loadKeyProjection(JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
java.lang.Object
MapTableFieldStrategy. loadKeyProjection(JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
static java.lang.Object
HandlerStrategies. loadObject(ValueMapping vm, OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins, Column[] cols, boolean objectValueRequiresLoad)
Load the Object value from the given result.java.lang.Object
AbstractFieldStrategy. loadProjection(JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
java.lang.Object
EmbedFieldStrategy. loadProjection(JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
Loading embed object without instantiating owner entityjava.lang.Object
HandlerFieldStrategy. loadProjection(JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
java.lang.Object
MapTableFieldStrategy. loadProjection(JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
java.lang.Object
PrimitiveFieldStrategy. loadProjection(JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
java.lang.Object
StoreCollectionFieldStrategy. loadProjection(JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
java.lang.Object
StringFieldStrategy. loadProjection(JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
java.lang.Object
HandlerHandlerMapTableFieldStrategy. loadValue(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
java.lang.Object
HandlerRelationMapTableFieldStrategy. loadValue(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
java.lang.Object
LRSMapFieldStrategy. loadValue(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
Load a value from the given result.java.lang.Object
RelationHandlerMapTableFieldStrategy. loadValue(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
java.lang.Object
RelationMapInverseKeyFieldStrategy. loadValue(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
java.lang.Object
RelationMapTableFieldStrategy. loadValue(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
java.lang.Object
RelationRelationMapTableFieldStrategy. loadValue(OpenJPAStateManager sm, JDBCStore store, JDBCFetchConfiguration fetch, Result res, Joins joins)
-
Uses of Result in org.apache.openjpa.jdbc.sql
Classes in org.apache.openjpa.jdbc.sql that implement Result Modifier and Type Class Description class
AbstractResult
AResult
implementation designed to be subclassed easily by implementations.class
MergedResult
Result that merges multiple result delegates.class
ResultSetResult
BaseResult
implementation wrapped around a result set.static class
SelectImpl.SelectResult
AResult
implementation wrapped around this select.Methods in org.apache.openjpa.jdbc.sql that return Result Modifier and Type Method Description Result
LogicalUnion. execute(JDBCStore store, JDBCFetchConfiguration fetch)
Result
LogicalUnion. execute(JDBCStore store, JDBCFetchConfiguration fetch, int lockLevel)
Result
LogicalUnion.UnionSelect. execute(JDBCStore store, JDBCFetchConfiguration fetch)
Result
LogicalUnion.UnionSelect. execute(JDBCStore store, JDBCFetchConfiguration fetch, int lockLevel)
Result
SelectExecutor. execute(JDBCStore store, JDBCFetchConfiguration fetch)
Execute this select in the context of the given store manager.Result
SelectExecutor. execute(JDBCStore store, JDBCFetchConfiguration fetch, int lockLevel)
Execute this select in the context of the given store manager.Result
SelectImpl. execute(JDBCStore store, JDBCFetchConfiguration fetch)
Result
SelectImpl. execute(JDBCStore store, JDBCFetchConfiguration fetch, int lockLevel)
protected Result
SelectImpl. execute(StoreContext ctx, JDBCStore store, JDBCFetchConfiguration fetch, int lockLevel)
Execute this select in the context of the given store manager.Result
SelectImpl. getEagerResult(java.sql.Connection conn, java.sql.PreparedStatement stmnt, java.sql.ResultSet rs, JDBCStore store, JDBCFetchConfiguration fetch, boolean forUpdate, SQLBuffer sql)
This method is to provide override for non-JDBC or JDBC-like implementation of executing eager selects.Methods in org.apache.openjpa.jdbc.sql with parameters of type Result Modifier and Type Method Description java.lang.Object
MergedResult.ResultComparator. getOrderingValue(Result res, int idx)
Return the ordering value of the current row of the given result.Constructors in org.apache.openjpa.jdbc.sql with parameters of type Result Constructor Description MergedResult(Result[] res)
Constructor; supply delegates.MergedResult(Result[] res, MergedResult.ResultComparator comp)
Constructor; supply delegates and comparator for ordering results.
-