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 anima Show documentation
Show all versions of anima Show documentation
Operate the database like a stream
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, Converter>> converters) {
super(converters);
}
@Override
public boolean returnGeneratedKeysByDefault() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy