Klasse VerbatimSqlConditionBuilder

java.lang.Object
org.apache.torque.sql.whereclausebuilder.VerbatimSqlConditionBuilder
Alle implementierten Schnittstellen:
WhereClausePsPartBuilder

public class VerbatimSqlConditionBuilder extends Object implements WhereClausePsPartBuilder
Builds a PreparedStatementPart from a WhereClauseExpression containing a verbatim SQL condition.
Version:
$Id: VerbatimSqlConditionBuilder.java 1839288 2018-08-27 09:48:33Z tv $
  • Konstruktordetails

    • VerbatimSqlConditionBuilder

      public VerbatimSqlConditionBuilder()
  • Methodendetails

    • 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.
      Angegeben von:
      buildPs in Schnittstelle WhereClausePsPartBuilder
      Parameter:
      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 built
      adapter - The adapter for the database for which the SQL should be created, not null.
      Gibt zurück:
      the rendered SQL for the WhereClauseExpression
      Löst aus:
      TorqueException - when rendering fails.
    • isApplicable

      public boolean isApplicable(WhereClauseExpression whereClauseExpression, Adapter adapter)
      Returns whether this WhereClausePsPartBuilder is applicable for a given WhereClauseExpression.
      Angegeben von:
      isApplicable in Schnittstelle WhereClausePsPartBuilder
      Parameter:
      whereClauseExpression - the WhereClauseExpression in question.
      adapter - The adapter for the database for which the SQL should be created, not null.
      Gibt zurück:
      true if applicable, false otherwise.