Package oracle.toplink.essentials.queryframework

Examples of oracle.toplink.essentials.queryframework.UpdateAllQuery


     * INTERNAL
     * Returns a DatabaseQuery instance representing the owning
     * ParseTree. This implementation returns a UpdateAllQuery instance.
     */
    public DatabaseQuery createDatabaseQuery(ParseTreeContext context) {
        UpdateAllQuery query = new UpdateAllQuery();
        query.setShouldDeferExecutionInUOW(false);
        return query;
    }
View Full Code Here

TOP

Related Classes of oracle.toplink.essentials.queryframework.UpdateAllQuery

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.