Interface TypeHandler<T>

    • Method Detail

      • setParameter

        void setParameter​(java.sql.PreparedStatement ps,
                          int i,
                          T parameter,
                          JdbcType jdbcType)
                   throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getResult

        T getResult​(java.sql.ResultSet rs,
                    java.lang.String columnName)
             throws java.sql.SQLException
        Parameters:
        columnName - Colunm name, when configuration useColumnLabel is false
        Throws:
        java.sql.SQLException
      • getResult

        T getResult​(java.sql.ResultSet rs,
                    int columnIndex)
             throws java.sql.SQLException
        Throws:
        java.sql.SQLException
      • getResult

        T getResult​(java.sql.CallableStatement cs,
                    int columnIndex)
             throws java.sql.SQLException
        Throws:
        java.sql.SQLException