Examples of GqlExtDynamic


Examples of com.spoledge.audao.parser.gql.GqlExtDynamic

    /**
     * Just test that the classpath contains all needed classes.
     */
    @Test
    public void testGqlExt() throws Exception {
        GqlExtDynamic gqlExt = new GqlExtDynamic( gae.getDatastoreService());
        PreparedGql pq = gqlExt.prepare( "SELECT cos(:1*3.1415/180) as 'cos' FROM dual");
        for (Entity ent : pq.executeQuery( 30 )) {
            log.debug("testGqlExt(): " + ent.getProperty("cos"));
        }
    }
View Full Code Here
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.