org.apache.openjpa.kernel.Query.getFetchConfiguration()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(3.9k)|赞(0)|评价(0)|浏览(176)

本文整理了Java中org.apache.openjpa.kernel.Query.getFetchConfiguration方法的一些代码示例,展示了Query.getFetchConfiguration的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.getFetchConfiguration方法的具体详情如下:
包路径:org.apache.openjpa.kernel.Query
类名称:Query
方法名:getFetchConfiguration

Query.getFetchConfiguration介绍

暂无

代码示例

代码示例来源:origin: org.apache.openjpa/openjpa-all

public FetchConfiguration getFetchConfiguration() {
  try {
    return _query.getFetchConfiguration();
  } catch (RuntimeException re) {
    throw translate(re);
  }
}

代码示例来源:origin: org.apache.openjpa/com.springsource.org.apache.openjpa

public FetchConfiguration getFetchConfiguration() {
  try {
    return _query.getFetchConfiguration();
  } catch (RuntimeException re) {
    throw translate(re);
  }
}

代码示例来源:origin: org.apache.openejb.patch/openjpa

public FetchConfiguration getFetchConfiguration() {
  try {
    return _query.getFetchConfiguration();
  } catch (RuntimeException re) {
    throw translate(re);
  }
}

代码示例来源:origin: org.apache.openjpa/openjpa-kernel

public FetchConfiguration getFetchConfiguration() {
  try {
    return _query.getFetchConfiguration();
  } catch (RuntimeException re) {
    throw translate(re);
  }
}

代码示例来源:origin: org.apache.openejb.patch/openjpa-kernel

public FetchConfiguration getFetchConfiguration() {
  try {
    return _query.getFetchConfiguration();
  } catch (RuntimeException re) {
    throw translate(re);
  }
}

代码示例来源:origin: org.apache.openejb.patch/openjpa-persistence

/**
 * Ignores this query from PreparedQueryCache by recreating the original
 * query if it has been cached. 
 */
void ignorePreparedQuery() {
  PreparedQuery cached = _em.getPreparedQuery(_id);
  if (cached == null)
    return;
  Broker broker = _em.getBroker();
  // Critical assumption: Only JPQL queries are cached and more 
  // importantly, the identifier of the prepared query is the original
  // JPQL String
  String JPQL = JPQLParser.LANG_JPQL;
  String jpql = _id;
  
  org.apache.openjpa.kernel.Query newQuery = broker.newQuery(JPQL, jpql);
  newQuery.getFetchConfiguration().copy(_query.getFetchConfiguration());
  newQuery.compile();
  _query = new DelegatingQuery(newQuery, _em.getExceptionTranslator());
}

代码示例来源:origin: org.apache.openejb.patch/openjpa

/**
 * Ignores this query from PreparedQueryCache by recreating the original
 * query if it has been cached. 
 */
void ignorePreparedQuery() {
  PreparedQuery cached = _em.getPreparedQuery(_id);
  if (cached == null)
    return;
  Broker broker = _em.getBroker();
  // Critical assumption: Only JPQL queries are cached and more 
  // importantly, the identifier of the prepared query is the original
  // JPQL String
  String JPQL = JPQLParser.LANG_JPQL;
  String jpql = _id;
  
  org.apache.openjpa.kernel.Query newQuery = broker.newQuery(JPQL, jpql);
  newQuery.getFetchConfiguration().copy(_query.getFetchConfiguration());
  newQuery.compile();
  _query = new DelegatingQuery(newQuery, _em.getExceptionTranslator());
}

代码示例来源:origin: org.apache.openjpa/openjpa-persistence

/**
 * Ignores this query from PreparedQueryCache by recreating the original
 * query if it has been cached. 
 */
void ignorePreparedQuery() {
  PreparedQuery cached = _em.getPreparedQuery(_id);
  if (cached == null)
    return;
  Broker broker = _em.getBroker();
  // Critical assumption: Only JPQL queries are cached and more 
  // importantly, the identifier of the prepared query is the original
  // JPQL String
  String JPQL = JPQLParser.LANG_JPQL;
  String jpql = _id;
  
  org.apache.openjpa.kernel.Query newQuery = broker.newQuery(JPQL, jpql);
  newQuery.getFetchConfiguration().copy(_query.getFetchConfiguration());
  newQuery.compile();
  _query = new DelegatingQuery(newQuery, _em.getExceptionTranslator());
}

代码示例来源:origin: org.apache.openjpa/openjpa-all

/**
 * Ignores this query from PreparedQueryCache by recreating the original
 * query if it has been cached. 
 */
void ignorePreparedQuery() {
  PreparedQuery cached = _em.getPreparedQuery(_id);
  if (cached == null)
    return;
  Broker broker = _em.getBroker();
  // Critical assumption: Only JPQL queries are cached and more 
  // importantly, the identifier of the prepared query is the original
  // JPQL String
  String JPQL = JPQLParser.LANG_JPQL;
  String jpql = _id;
  
  org.apache.openjpa.kernel.Query newQuery = broker.newQuery(JPQL, jpql);
  newQuery.getFetchConfiguration().copy(_query.getFetchConfiguration());
  newQuery.compile();
  _query = new DelegatingQuery(newQuery, _em.getExceptionTranslator());
}

相关文章