| |
|
| java.lang.Object com.versant.core.jdbc.fetch.FetchOptions
FetchOptions | public class FetchOptions (Code) | | Flags etc to control fetching.
|
Method Summary | |
public boolean | isUseOneToManyJoin() | public boolean | isUseParallelQueries() | public void | setUseOneToManyJoin(boolean useOneToManyJoin) Set if the plan may prefetch one to many relationships by joining
them to the main query to fetch the data. | public void | setUseParallelQueries(boolean useParallelQueries) Set if the plan may consist of multiple separate SQL queries processed
in parallel i.e. |
isUseOneToManyJoin | public boolean isUseOneToManyJoin()(Code) | | |
isUseParallelQueries | public boolean isUseParallelQueries()(Code) | | |
setUseOneToManyJoin | public void setUseOneToManyJoin(boolean useOneToManyJoin)(Code) | | Set if the plan may prefetch one to many relationships by joining
them to the main query to fetch the data. The main query will return
n * m rows but a separate query will not need to be done to fetch
the relationships.
|
setUseParallelQueries | public void setUseParallelQueries(boolean useParallelQueries)(Code) | | Set if the plan may consist of multiple separate SQL queries processed
in parallel i.e. several ResultSet's will be open at once. Each query
will have essentially the same where clause.
|
|
|
|