This commit is contained in:
Timo Westkämper 2010-03-08 20:30:18 +00:00
parent 5ea149316e
commit dab577e4e3
6 changed files with 12 additions and 2 deletions

View File

@ -38,7 +38,7 @@ import com.mysema.util.JDBCUtil;
import com.mysema.util.ResultSetAdapter;
/**
* AbstractSqlQuery is the base type for SQL query implementations
* AbstractSQLQuery is the base type for SQL query implementations
*
* @author tiwe
* @version $Id$

View File

@ -40,6 +40,8 @@ public class SQLQueryImpl extends AbstractSQLQuery<SQLQueryImpl> implements SQLQ
}
/**
* Create a new SQLQueryImpl instance
*
* @param conn
* @param templates
* @param metadata

View File

@ -16,6 +16,8 @@ import com.mysema.commons.lang.CloseableIterator;
import com.mysema.query.QueryException;
/**
* SQLResultIterator is an Iterator adapter for JDBC result sets with customizable projections
*
* @author tiwe
*
* @param <T>

View File

@ -13,7 +13,7 @@ import com.mysema.query.types.expr.EBoolean;
import com.mysema.query.types.path.PEntity;
/**
* SQLSubQuery is a SubQuery implementation for SQL queries
* SQLSubQuery is a subquery implementation for SQL queries
*
* @author tiwe
*

View File

@ -14,6 +14,8 @@ import java.util.Map;
import javax.annotation.Nullable;
/**
* SQLTypeMapping defines a mapping from JDBC types to Java classes.
*
* @author tiwe
*
*/

View File

@ -20,12 +20,16 @@ import com.mysema.query.types.OrderSpecifier;
public interface Union<RT> {
/**
* Define the ordering of the query results
*
* @param o
* @return
*/
Union<RT> orderBy(OrderSpecifier<?>... o);
/**
* Retrieve the results
*
* @return
* @throws SQLException
*/