mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-13 21:01:01 +08:00
This commit is contained in:
parent
5ea149316e
commit
dab577e4e3
@ -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$
|
||||
|
||||
@ -40,6 +40,8 @@ public class SQLQueryImpl extends AbstractSQLQuery<SQLQueryImpl> implements SQLQ
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new SQLQueryImpl instance
|
||||
*
|
||||
* @param conn
|
||||
* @param templates
|
||||
* @param metadata
|
||||
|
||||
@ -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>
|
||||
|
||||
@ -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
|
||||
*
|
||||
|
||||
@ -14,6 +14,8 @@ import java.util.Map;
|
||||
import javax.annotation.Nullable;
|
||||
|
||||
/**
|
||||
* SQLTypeMapping defines a mapping from JDBC types to Java classes.
|
||||
*
|
||||
* @author tiwe
|
||||
*
|
||||
*/
|
||||
|
||||
@ -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
|
||||
*/
|
||||
|
||||
Loading…
Reference in New Issue
Block a user