java.lang.Object
org.litebridge.db.spi.expression.SubselectExpression
- All Implemented Interfaces:
ConnectionProviderExpression,SelectExpression
- Direct Known Subclasses:
Subselect
A query expression that represents a subselect.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionSubselectExpression(Select subselect) Constructs a newSubselectExpressionwith the given subselect query. -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.litebridge.db.spi.expression.ConnectionProviderExpression
toSql, toSqlMethods inherited from interface org.litebridge.db.spi.expression.SelectExpression
toSql
-
Field Details
-
subselect
The subselect query.
-
-
Constructor Details
-
SubselectExpression
Constructs a newSubselectExpressionwith the given subselect query.- Parameters:
subselect- the subselect query to be wrapped
-