Package com.spoledge.audao.parser.gql

Examples of com.spoledge.audao.parser.gql.PreparedGql.executeQuery()


     */
    @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.