本文整理汇总了Java中org.hibernate.Query.setReadOnly方法的典型用法代码示例。如果您正苦于以下问题:Java Query.setReadOnly方法的具体用法?Java Query.setReadOnly怎么用?Java Query.setReadOnly使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.hibernate.Query
的用法示例。
在下文中一共展示了Query.setReadOnly方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: executeHQLQuery
import org.hibernate.Query; //导入方法依赖的package包/类
@SuppressWarnings("unchecked")
public List<T> executeHQLQuery(final String hql,
final List<SQLVisitor.SQLVisitorParameter> parameters,
final int skip, final int top)
{
Session session = getSessionFactory().getCurrentSession();
Query query = session.createQuery(hql);
for (int i = 0; i < parameters.size(); i++)
{
SQLVisitor.SQLVisitorParameter param = parameters.get(i);
query.setParameter(i, param.getValue(), param.getType());
}
if (skip > -1)
{
query.setFirstResult(skip);
}
if (top > -1)
{
query.setMaxResults(top);
}
query.setReadOnly(true);
return (List<T>) query.list();
}
示例2: countHQLQuery
import org.hibernate.Query; //导入方法依赖的package包/类
public int countHQLQuery(String hql,
List<SQLVisitor.SQLVisitorParameter> parameters)
{
String hqlQuery = "SELECT COUNT(*) " + hql;
Session session = getSessionFactory().getCurrentSession();
Query query = session.createQuery(hqlQuery);
for (int i = 0; i < parameters.size(); i++)
{
SQLVisitor.SQLVisitorParameter param = parameters.get(i);
query.setParameter(i, param.getValue(), param.getType());
}
query.setReadOnly(true);
Object obj = query.uniqueResult();
int result;
if (obj instanceof Long)
{
result = ((Long) obj).intValue();
}
else
{
result = (int) obj;
}
return result;
}
示例3: initQuery
import org.hibernate.Query; //导入方法依赖的package包/类
private void initQuery(Query query, NamedQueryDefinition nqd) {
// todo : cacheable and readonly should be Boolean rather than boolean...
query.setCacheable( nqd.isCacheable() );
query.setCacheRegion( nqd.getCacheRegion() );
query.setReadOnly( nqd.isReadOnly() );
if ( nqd.getTimeout() != null ) {
query.setTimeout( nqd.getTimeout() );
}
if ( nqd.getFetchSize() != null ) {
query.setFetchSize( nqd.getFetchSize() );
}
if ( nqd.getCacheMode() != null ) {
query.setCacheMode( nqd.getCacheMode() );
}
if ( nqd.getComment() != null ) {
query.setComment( nqd.getComment() );
}
if ( nqd.getFirstResult() != null ) {
query.setFirstResult( nqd.getFirstResult() );
}
if ( nqd.getMaxResults() != null ) {
query.setMaxResults( nqd.getMaxResults() );
}
if ( nqd.getFlushMode() != null ) {
query.setFlushMode( nqd.getFlushMode() );
}
}