![JAR search and dependency download from the Maven repository](/logo.png)
org.hibernate.criterion.RowCountProjection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate Show documentation
Show all versions of hibernate Show documentation
Relational Persistence for Java
//$Id: RowCountProjection.java 9908 2006-05-08 20:59:20Z [email protected] $
package org.hibernate.criterion;
import org.hibernate.Criteria;
import org.hibernate.Hibernate;
import org.hibernate.HibernateException;
import org.hibernate.type.Type;
/**
* A row count
* @author Gavin King
*/
public class RowCountProjection extends SimpleProjection {
protected RowCountProjection() {}
public String toString() {
return "count(*)";
}
public Type[] getTypes(Criteria criteria, CriteriaQuery criteriaQuery)
throws HibernateException {
return new Type[] { Hibernate.INTEGER };
}
public String toSqlString(Criteria criteria, int position, CriteriaQuery criteriaQuery)
throws HibernateException {
return new StringBuffer()
.append("count(*) as y")
.append(position)
.append('_')
.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy