Klasse CurrentDateTimePsPartBuilder

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

public class CurrentDateTimePsPartBuilder extends AbstractWhereClausePsPartBuilder
A WhereClausePsPartBuilder which handles SqlEnum.CURRENT_DATE and SqlEnum.CURRENT_TIME.
Version:
$Id: CurrentDateTimePsPartBuilder.java 1896195 2021-12-20 17:41:20Z gk $
  • Konstruktordetails

    • CurrentDateTimePsPartBuilder

      public CurrentDateTimePsPartBuilder()
  • Methodendetails

    • buildPs

      public PreparedStatementPart buildPs(WhereClauseExpression whereClauseExpression, boolean ignoreCase, Query query, Adapter adapter) throws TorqueException
      Builds a PreparedStatementPart from a WhereClauseExpression.
      Parameter:
      whereClauseExpression - the part of the where clause to build. Can be modified in this method.
      ignoreCase - If true and columns represent Strings, the appropriate function defined for the database will be used to ignore differences in case.
      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 PreparedStatementPart 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.
      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.