Package org.javalite.activejdbc.dialects

Examples of org.javalite.activejdbc.dialects.OracleDialect.selectStarParametrized()


    @Test
    public void testSelectStarParametrized(){
        DefaultDialect dialect = new OracleDialect();
        a("SELECT * FROM people WHERE name = ? AND ssn = ? AND dob = ?").shouldBeEqual(
                dialect.selectStarParametrized("people", "name", "ssn", "dob"));
    }
}
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.