Interface SqlRowProcessor<E>

    • Method Detail

      • processRow

        boolean processRow​(E result,
                           int rownum)
                    throws SqlRuntimeException
        This method will be called once for database row.
        Parameters:
        result - The result class instance. The object representation of the database row.
        rownum - The database row number starting from 1.
        Returns:
        True to continue processing, false to stop.
        Throws:
        SqlRuntimeException