Package org.apache.openjpa.jdbc.kernel
Interface LRSSizes
- All Known Subinterfaces:
JDBCFetchConfiguration
- All Known Implementing Classes:
DelegatingJDBCFetchConfiguration,JDBCFetchConfigurationImpl,TargetFetchConfiguration
public interface LRSSizes
Ways of calculating the size of large result sets.
- Author:
- Abe White
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intMode for usingResultSet.last()to calcualte the size of large result sets.static final intMode for using a query to calculate the size of large result sets.static final intMode for returningInteger.MAX_VALUEfor the size of large result sets.
-
Field Details
-
SIZE_UNKNOWN
static final int SIZE_UNKNOWNMode for returningInteger.MAX_VALUEfor the size of large result sets.- See Also:
-
SIZE_LAST
static final int SIZE_LASTMode for usingResultSet.last()to calcualte the size of large result sets.- See Also:
-
SIZE_QUERY
static final int SIZE_QUERYMode for using a query to calculate the size of large result sets.- See Also:
-