org.sql2o.quirks.PostgresQuirks Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sql2o-postgres Show documentation
Show all versions of sql2o-postgres Show documentation
Postgres extension for sql2o
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