Package org.sql2o.quirks

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

Related Classes of org.sql2o.quirks.PostgresQuirks

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.