options.addOption(optFileHandlingQueryPaging);
LocalizedOptionDefinition readerProfileCreation = new LocalizedOptionDefinition(WGDatabase.COPTION_READERPROFILECREATION, BooleanOptionType.INSTANCE, _bundleLoader);
readerProfileCreation.setOptional(true);
readerProfileCreation.setDefaultValue(Boolean.TRUE.toString());
options.addOption(readerProfileCreation);
PredefinedValuesOptionType hqlFetchType = new PredefinedValuesOptionType(_bundleLoader, WGDatabaseImpl.COPTION_HQL_FETCH_TYPE);
hqlFetchType.addValue(WGDatabaseImpl.HQL_FETCHTYPE_LAZY);
hqlFetchType.addValue(WGDatabaseImpl.HQL_FETCHTYPE_STRAIGHT);
LocalizedOptionDefinition hqlFetch = new LocalizedOptionDefinition(WGDatabaseImpl.COPTION_HQL_FETCH_TYPE, hqlFetchType, _bundleLoader);