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

org.sql2o.ResultSetHandlerFactoryBuilder Maven / Gradle / Ivy

There is a newer version: 0.2.6
Show newest version
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