接口 RecordExtractor<T>

    • 方法详细资料

      • extractData

        T extractData​(Record record)
               throws ResourceException,
                      SQLException,
                      DataAccessException
        Process the data in the given Record, creating a corresponding result object.
        参数:
        record - the Record to extract data from (possibly a CCI ResultSet)
        返回:
        an arbitrary result object, or null if none (the extractor will typically be stateful in the latter case)
        抛出:
        ResourceException - if thrown by a CCI method, to be auto-converted to a DataAccessException
        SQLException - if thrown by a ResultSet method, to be auto-converted to a DataAccessException
        DataAccessException - in case of custom exceptions
        另请参阅:
        ResultSet