Examples of PostgresQuirks


Examples of org.sql2o.quirks.PostgresQuirks

    public PostgresTest(String url, String user, String pass, String testName) {

        logger.info(testName);

        sql2o = new Sql2o(url, user, pass, new PostgresQuirks(){
            {
                // make sure we use default UUID converter.
                converters.put(UUID.class, new UUIDConverter());
            }
        });
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.