Package org.datanucleus.query.compiler

Examples of org.datanucleus.query.compiler.JPQLParser


     * @param compilation  possibly {@code null}, contains components of a query string
     * @param options  JPQL parser options
     * @param params  parameters for the parser
     */
    public JPQLPartialCompiler(ExecutionContext ec, QueryCompilation compilation, Map options, Map params) {
        parser = new JPQLParser(options, params);
        this.symbolTable = compilation != null ? compilation.getSymbolTable() : new SymbolTable(ec.getClassLoaderResolver());
    }
View Full Code Here

TOP

Related Classes of org.datanucleus.query.compiler.JPQLParser

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.