Package com.javaeye.jert.domain.query.impl

Examples of com.javaeye.jert.domain.query.impl.StaticQuery


        QUERY_TYPES.add(QUERY_TYPE_DYNAMIC_PARAMETER);
    }
   
    public static Query getQuery(String sql, String queryType){
        if(QUERY_TYPE_STATIC.equals(queryType)){
            return new StaticQuery(sql);
        }else if(QUERY_TYPE_SIMPLE_PARAMETER.equals(queryType)){
            return new SimpleParameterQuery(sql);
        }else if(QUERY_TYPE_DYNAMIC_PARAMETER.equals(queryType)){
            return new DynamicParameterQuery(sql);
        }else{
View Full Code Here

TOP

Related Classes of com.javaeye.jert.domain.query.impl.StaticQuery

Copyright © 2018 www.massapicom. 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.