Package org.apache.torque.criteria

Examples of org.apache.torque.criteria.Criterion


    public void testCriterionCustomNoString() throws Exception
    {
        Criteria criteria = new Criteria();
        criteria.addSelectColumn(new ColumnImpl("table.column"));
        Criterion criterion
                = new Criterion("A", 3, SqlEnum.CUSTOM);
        criteria.where(criterion);
        try
        {
            SqlBuilder.buildQuery(criteria);
            fail("Exception expected");
View Full Code Here

TOP

Related Classes of org.apache.torque.criteria.Criterion

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.