Examples of sortByDescending()


Examples of org.odbms.Query.sortByDescending()

    q1.constrain("DTITLE", OP.CONTAINS, FUNCTION.TO_UPPER, "the");
    q1.constrain("DYEAR", OP.RANGE, 2000, 2009);

    q1.sortBy("DTITLE");
    q1.sortBy("DGENRE");
    q1.sortByDescending("DYEAR");

    ObjectSet<Disc> discs = q1.execute();
    int discsSize = discs.size();

    int age = Integer.MIN_VALUE;
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.