org.sql2o.ResultSetHandlerFactoryBuilder 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;
import org.sql2o.quirks.Quirks;
import java.util.Map;
/**
* Created with IntelliJ IDEA.
* User: dimzon
* Date: 4/7/14
* Time: 4:28 AM
* To change this template use File | Settings | File Templates.
*/
public interface ResultSetHandlerFactoryBuilder {
boolean isCaseSensitive();
void setCaseSensitive(boolean caseSensitive);
boolean isAutoDeriveColumnNames();
void setAutoDeriveColumnNames(boolean autoDeriveColumnNames);
boolean isThrowOnMappingError();
void throwOnMappingError(boolean throwOnMappingError);
Map getColumnMappings();
void setColumnMappings(Map columnMappings);
Quirks getQuirks();
void setQuirks(Quirks quirksMode);
ResultSetHandlerFactory newFactory(Class clazz);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy