|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use SQLQuery | |
---|---|
com.mysema.query.sql | SQL/JDBC support for Querydsl |
Uses of SQLQuery in com.mysema.query.sql |
---|
Classes in com.mysema.query.sql that implement SQLQuery | |
---|---|
class |
SQLQueryImpl
SQLQueryImpl is a JDBC based implementation of the Querydsl SQLQuery interface |
Methods in com.mysema.query.sql that return SQLQuery | ||
---|---|---|
SQLQuery |
SQLQuery.clone(java.sql.Connection conn)
Clone the state of the Query for the given Connection |
|
SQLQuery |
SQLQuery.from(Expr<?>... o)
Defines the sources of the query |
|
|
SQLQuery.fullJoin(ForeignKey<E> key,
PEntity<E> entity)
Adds a full join to the given target |
|
SQLQuery |
SQLQuery.fullJoin(PEntity<?> o)
Adds a full join to the given target |
|
SQLQuery |
SQLQuery.fullJoin(SubQuery<?> o,
Path<?> alias)
Adds a full join to the given target |
|
|
SQLQuery.innerJoin(ForeignKey<E> foreign,
PEntity<E> entity)
Adds an inner join to the given target |
|
SQLQuery |
SQLQuery.innerJoin(PEntity<?> o)
Adds an inner join to the given target |
|
SQLQuery |
SQLQuery.innerJoin(SubQuery<?> o,
Path<?> alias)
Adds an inner join to the given target |
|
|
SQLQuery.join(ForeignKey<E> foreign,
PEntity<E> entity)
Adds a join to the given target |
|
SQLQuery |
SQLQuery.join(PEntity<?> o)
Adds a join to the given target |
|
SQLQuery |
SQLQuery.join(SubQuery<?> o,
Path<?> alias)
Adds a join to the given target |
|
|
SQLQuery.leftJoin(ForeignKey<E> foreign,
PEntity<E> entity)
Adds a left join to the given target |
|
SQLQuery |
SQLQuery.leftJoin(PEntity<?> o)
Adds a left join to the given target |
|
SQLQuery |
SQLQuery.leftJoin(SubQuery<?> o,
Path<?> alias)
Adds a left join to the given target |
|
SQLQuery |
SQLQuery.on(EBoolean... conditions)
Defines a filter to the last added join |
|
|
SQLQuery.rightJoin(ForeignKey<E> foreign,
PEntity<E> entity)
Adds a right join to the given target |
|
SQLQuery |
SQLQuery.rightJoin(PEntity<?> o)
Adds a right join to the given target |
|
SQLQuery |
SQLQuery.rightJoin(SubQuery<?> o,
Path<?> alias)
Adds a right join to the given target |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |