Package org.sql2o

Interface ResultSetHandlerFactoryBuilder

All Known Implementing Classes:
DefaultResultSetHandlerFactoryBuilder

public interface ResultSetHandlerFactoryBuilder
Created with IntelliJ IDEA. User: dimzon Date: 4/7/14 Time: 4:28 AM To change this template use File | Settings | File Templates.
  • Method Details

    • isCaseSensitive

      boolean isCaseSensitive()
    • setCaseSensitive

      void setCaseSensitive(boolean caseSensitive)
    • isAutoDeriveColumnNames

      boolean isAutoDeriveColumnNames()
    • setAutoDeriveColumnNames

      void setAutoDeriveColumnNames(boolean autoDeriveColumnNames)
    • isThrowOnMappingError

      boolean isThrowOnMappingError()
    • throwOnMappingError

      void throwOnMappingError(boolean throwOnMappingError)
    • getColumnMappings

      Map<String,String> getColumnMappings()
    • setColumnMappings

      void setColumnMappings(Map<String,String> columnMappings)
    • getQuirks

      Quirks getQuirks()
    • setQuirks

      void setQuirks(Quirks quirksMode)
    • newFactory

      <E> ResultSetHandlerFactory<E> newFactory(Class<E> clazz)