Interface MergedResult

All Known Implementing Classes:
DecoratorMergedResult, EnumerableMergedResult, MemoryMergedResult, StreamMergedResult, TransparentMergedResult

public interface MergedResult
Merged result after merge engine.
  • Method Details

    • next

      boolean next() throws SQLException
      Iterate next data.
      Returns:
      has next data
      Throws:
      SQLException - SQL exception
    • getValue

      Object getValue(int columnIndex, Class<?> type) throws SQLException
      Get data value.
      Parameters:
      columnIndex - column index
      type - class type of data value
      Returns:
      data value
      Throws:
      SQLException - SQL exception
    • getCalendarValue

      Object getCalendarValue(int columnIndex, Class<?> type, Calendar calendar) throws SQLException
      Get calendar value.
      Parameters:
      columnIndex - column index
      type - class type of data value
      calendar - calendar
      Returns:
      calendar value
      Throws:
      SQLException - SQL exception
    • getInputStream

      InputStream getInputStream(int columnIndex, String type) throws SQLException
      Get InputStream.
      Parameters:
      columnIndex - column index
      type - class type of data value
      Returns:
      InputStream
      Throws:
      SQLException - SQL exception
    • wasNull

      boolean wasNull() throws SQLException
      Judge ResultSet is null or not.
      Returns:
      ResultSet is null or not
      Throws:
      SQLException - SQL exception