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

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

The 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 - 2025 Weber Informatics LLC | Privacy Policy