All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sql2o.quirks.PostgresQuirks Maven / Gradle / Ivy

There is a newer version: 1.9.0-RC1
Show newest version
package org.sql2o.quirks;

import org.sql2o.converters.Converter;

import java.util.Map;

/**
 * @author [email protected]
 * @since 4/6/14
 */
public class PostgresQuirks extends NoQuirks {
    public PostgresQuirks() {
        super();
    }

    public PostgresQuirks(Map converters) {
        super(converters);
    }

    @Override
    public boolean returnGeneratedKeysByDefault() {
        return false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy