Package org.relique.jdbc.csv
Interface SubQueryRowMatcher
-
- All Known Implementing Classes:
ExistsExpressionSubQueryRowMatcher
,InExpressionSubQueryRowMatcher
,SubQueryEqualsRowMatcher
public interface SubQueryRowMatcher
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
matches(java.lang.Object expr)
Called with value for each row of sub-query, to determine whether outer/parent SQL expression is evaluated.
-
-
-
Method Detail
-
matches
boolean matches(java.lang.Object expr) throws java.sql.SQLException
Called with value for each row of sub-query, to determine whether outer/parent SQL expression is evaluated.- Parameters:
expr
- value for current row.- Returns:
- true if value completes SQL sub-query evaluation and sub-query should stop.
- Throws:
java.sql.SQLException
- if there is an error evaluating the expression.
-
-