Class VerbatimSqlConditionBuilder
java.lang.Object
org.apache.torque.sql.whereclausebuilder.VerbatimSqlConditionBuilder
- All Implemented Interfaces:
WhereClausePsPartBuilder
Builds a PreparedStatementPart from a WhereClauseExpression containing
a verbatim SQL condition.
- Version:
- $Id: VerbatimSqlConditionBuilder.java 1839288 2018-08-27 09:48:33Z tv $
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbuildPs(WhereClauseExpression whereClausePart, boolean ignoreCase, Query query, Adapter adapter) Builds the PS part for a WhereClauseExpression with a verbatim SQL condition.booleanisApplicable(WhereClauseExpression whereClauseExpression, Adapter adapter) Returns whether this WhereClausePsPartBuilder is applicable for a given WhereClauseExpression.
-
Constructor Details
-
VerbatimSqlConditionBuilder
public VerbatimSqlConditionBuilder()
-
-
Method Details
-
buildPs
public PreparedStatementPart buildPs(WhereClauseExpression whereClausePart, boolean ignoreCase, Query query, Adapter adapter) throws TorqueException Builds the PS part for a WhereClauseExpression with a verbatim SQL condition.- Specified by:
buildPsin interfaceWhereClausePsPartBuilder- Parameters:
whereClausePart- the part of the where clause to build. Can be modified in this method.ignoreCase- is ignored here.query- the query which is currently builtadapter- The adapter for the database for which the SQL should be created, not null.- Returns:
- the rendered SQL for the WhereClauseExpression
- Throws:
TorqueException- when rendering fails.
-
isApplicable
Returns whether this WhereClausePsPartBuilder is applicable for a given WhereClauseExpression.- Specified by:
isApplicablein interfaceWhereClausePsPartBuilder- Parameters:
whereClauseExpression- the WhereClauseExpression in question.adapter- The adapter for the database for which the SQL should be created, not null.- Returns:
- true if applicable, false otherwise.
-