Package org.apache.torque.sql.whereclausebuilder

Source Code of org.apache.torque.sql.whereclausebuilder.CurrentDateTimePsPartBuilder

package org.apache.torque.sql.whereclausebuilder;

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.  You may obtain a copy of the License at
*
*   http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied.  See the License for the
* specific language governing permissions and limitations
* under the License.
*/

import org.apache.torque.TorqueException;
import org.apache.torque.adapter.Adapter;
import org.apache.torque.criteria.PreparedStatementPart;
import org.apache.torque.criteria.SqlEnum;
import org.apache.torque.sql.WhereClauseExpression;

/**
* A WhereClausePsPartBuilder which handles <code>SqlEnum.CURRENT_DATE</code>
* and <code>SqlEnum.CURRENT_TIME</code>.
*
* @version $Id: CurrentDateTimePsPartBuilder.java 1448414 2013-02-20 21:06:35Z tfischer $
*/
public class CurrentDateTimePsPartBuilder
        extends AbstractWhereClausePsPartBuilder
{
    /**
     * {@inheritDoc}
     */
    public PreparedStatementPart buildPs(
            WhereClauseExpression whereClauseExpression,
            boolean ignoreCase,
            Adapter adapter)
        throws TorqueException
    {
        PreparedStatementPart result
            = getObjectOrColumnPsPartBuilder().buildPs(
                    whereClauseExpression.getLValue(),
                    ignoreCase,
                    adapter);
        result.getSql().append(whereClauseExpression.getOperator());
        result .append(getObjectOrColumnPsPartBuilder().buildPs(
                whereClauseExpression.getRValue(),
                ignoreCase,
                adapter));
        return result;
    }

    /**
     * {@inheritDoc}
     */
    public boolean isApplicable(
            WhereClauseExpression whereClauseExpression,
            Adapter adapter)
    {
        if (whereClauseExpression.getOperator().equals(
                        SqlEnum.CURRENT_DATE)
                || whereClauseExpression.getOperator().equals(
                        SqlEnum.CURRENT_TIME)
                || whereClauseExpression.getOperator().equals(
                        SqlEnum.CURRENT_TIMESTAMP))
            {
                return true;
            }
            return false;
    }
}
TOP

Related Classes of org.apache.torque.sql.whereclausebuilder.CurrentDateTimePsPartBuilder

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.