Added Ops.exists().

This commit is contained in:
Michael Bayne
2009-09-10 03:05:34 +00:00
parent 7a350474f5
commit ee1ced3f30
+8
View File
@@ -103,6 +103,14 @@ public class Ops
return new Exists(target);
}
/**
* Creates an EXISTS expression with the supplied select clause.
*/
public static SQLExpression exists (SelectClause target)
{
return new Exists(target);
}
/**
* Adds the supplied expressions together.
*/