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

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

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

Query.setQuery介绍

[英]The query string or template.
[中]查询字符串或模板。

代码示例

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

public boolean setQuery(Object query) {
  try {
    return _query.setQuery(query);
  } catch (RuntimeException re) {
    throw translate(re);
  }
}

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

/**
 * Pours the post-compilation state held by this receiver to the given
 * query.
 */
public void setInto(Query q) {
  q.setQuery(_id);
  q.setCandidateType(_candidate, _subclasses);
}

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

/**
 * Pours the post-compilation state held by this receiver to the given
 * query.
 */
public void setInto(Query q) {
  q.setQuery(_id);
  q.setCandidateType(_candidate, _subclasses);
}

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

public boolean setQuery(Object query) {
  try {
    return _query.setQuery(query);
  } catch (RuntimeException re) {
    throw translate(re);
  }
}

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

public boolean setQuery(Object query) {
  try {
    return _query.setQuery(query);
  } catch (RuntimeException re) {
    throw translate(re);
  }
}

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

public boolean setQuery(Object query) {
  try {
    return _query.setQuery(query);
  } catch (RuntimeException re) {
    throw translate(re);
  }
}

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

public boolean setQuery(Object query) {
  try {
    return _query.setQuery(query);
  } catch (RuntimeException re) {
    throw translate(re);
  }
}

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

/**
 * Pours the post-compilation state held by this receiver to the given
 * query.
 */
public void setInto(Query q) {
  q.setQuery(_id);
  q.setCandidateType(_candidate, _subclasses);
}

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

/**
 * Pours the post-compilation state held by this receiver to the given
 * query.
 */
public void setInto(Query q) {
  q.setQuery(_id);
  q.setCandidateType(_candidate, _subclasses);
}

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

/**
 * Set query template information into the given concrete
 * query instance. However, the language, query string, and
 * candidate class are assumed to be declared in the query
 * instantiation, and hints are not transferred.
 */
public void setInto(Query query) {
  if (_candidate != null)
    query.setCandidateType(_candidate, true);
  if (!StringUtils.isEmpty(_query))
    query.setQuery(_query);
  if (_res != null)
    query.setResultType(_res);
  if (_readOnly != null)
    query.setReadOnly(_readOnly.booleanValue());
  if (_resultSetMappingName != null)
    query.setResultMapping(null, _resultSetMappingName);
}

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

/**
 * Set query template information into the given concrete
 * query instance. However, the language, query string, and
 * candidate class are assumed to be declared in the query
 * instantiation, and hints are not transferred.
 */
public void setInto(Query query) {
  if (_candidate != null)
    query.setCandidateType(_candidate, true);
  if (!StringUtils.isEmpty(_query))
    query.setQuery(_query);
  if (_res != null)
    query.setResultType(_res);
  if (_readOnly != null)
    query.setReadOnly(_readOnly.booleanValue());
  if (_resultSetMappingName != null)
    query.setResultMapping(null, _resultSetMappingName);
}

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

/**
 * Set query template information into the given concrete
 * query instance. However, the language, query string, and
 * candidate class are assumed to be declared in the query
 * instantiation, and hints are not transferred.
 */
public void setInto(Query query) {
  if (_candidate != null)
    query.setCandidateType(_candidate, true);
  if (!StringUtils.isEmpty(_query))
    query.setQuery(_query);
  if (_res != null)
    query.setResultType(_res);
  if (_readOnly != null)
    query.setReadOnly(_readOnly.booleanValue());
  if (_resultSetMappingName != null)
    query.setResultMapping(null, _resultSetMappingName);
}

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

/**
 * Set query template information into the given concrete
 * query instance. However, the language, query string, and
 * candidate class are assumed to be declared in the query
 * instantiation, and hints are not transferred.
 */
public void setInto(Query query) {
  if (_candidate != null)
    query.setCandidateType(_candidate, true);
  if (!StringUtil.isEmpty(_query))
    query.setQuery(_query);
  if (_res != null)
    query.setResultType(_res);
  if (_readOnly != null)
    query.setReadOnly(_readOnly.booleanValue());
  if (_resultSetMappingName != null)
    query.setResultMapping(null, _resultSetMappingName);
}

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

/**
 * Set query template information into the given concrete
 * query instance. However, the language, query string, and
 * candidate class are assumed to be declared in the query
 * instantiation, and hints are not transferred.
 */
public void setInto(Query query) {
  if (_candidate != null)
    query.setCandidateType(_candidate, true);
  if (!StringUtil.isEmpty(_query))
    query.setQuery(_query);
  if (_res != null)
    query.setResultType(_res);
  if (_readOnly != null)
    query.setReadOnly(_readOnly.booleanValue());
  if (_resultSetMappingName != null)
    query.setResultMapping(null, _resultSetMappingName);
}

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

q.getContext().getQuery().setQuery(sql);
return result;

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

q.getContext().getQuery().setQuery(sql);
return result;

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

q.setIgnoreChanges(_ignoreChanges);
if (query != null)
  q.setQuery(query);

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

q.setIgnoreChanges(_ignoreChanges);
if (query != null)
  q.setQuery(query);

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

q.setIgnoreChanges(_ignoreChanges);
if (query != null)
  q.setQuery(query);

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

q.setIgnoreChanges(_ignoreChanges);
if (query != null)
  q.setQuery(query);

相关文章