return new JDBCFetchConfigurationImpl(state, jstate);
}
public void setContext(StoreContext ctx) {
super.setContext(ctx);
JDBCConfiguration conf = getJDBCConfiguration();
if (conf == null)
return;
setEagerFetchMode(conf.getEagerFetchModeConstant());
setSubclassFetchMode(conf.getSubclassFetchModeConstant());
setResultSetType(conf.getResultSetTypeConstant());
setFetchDirection(conf.getFetchDirectionConstant());
setLRSSize(conf.getLRSSizeConstant());
setJoinSyntax(conf.getDBDictionaryInstance().joinSyntax);
}