Interface QueryPass


  • public interface QueryPass
    • Method Detail

      • getPassNum

        int getPassNum()
        Returns the pass number
        Returns:
        the pass number
      • getSqlType

        int getSqlType()
        Returns the SQL type
        Returns:
        the SQL type
      • getStartTime

        java.util.Date getStartTime()
        Returns the start time
        Returns:
        the start time
      • getFinishTime

        java.util.Date getFinishTime()
        Returns the finish time
        Returns:
        the finish time
      • getDuration

        int getDuration()
        Returns the duration
        Returns:
        the duration
      • getNumRows

        int getNumRows()
        Returns the number of rows
        Returns:
        the number of rows
      • getNumCols

        int getNumCols()
        Returns the number of columns
        Returns:
        the number of columns
      • getPassTableCount

        int getPassTableCount()
        Returns the pass table count
        Returns:
        the pass table count
      • getQuery

        java.lang.String getQuery()
        Returns the query string
        Returns:
        the query string
      • getDataFetchingAndProcessingDuration

        java.util.OptionalInt getDataFetchingAndProcessingDuration()
        Returns the data fetching and processing time. Unit: ms
        Returns:
        the data fetching and processing time The OptionalInt type is set for backward compatibility. When the user uses an old iServer version, the XML response doesn't contain the corresponding attribute, then the function would return OptionalInt.empty().
      • getDataTransferFromDatasourceDuration

        java.util.OptionalInt getDataTransferFromDatasourceDuration()
        Returns the data transfer from datasource time. Unit: ms
        Returns:
        the data transfer from datasource time The OptionalInt type is set for backward compatibility. When the user uses an old iServer version, the XML response doesn't contain the corresponding attribute, then the function would return OptionalInt.empty().
      • getOtherProcessingDuration

        java.util.OptionalInt getOtherProcessingDuration()
        Returns the other processing time. Unit: ms
        Returns:
        the other processing time The OptionalInt type is set for backward compatibility. When the user uses an old iServer version, the XML response doesn't contain the corresponding attribute, then the function would return OptionalInt.empty().