Interface TableMappingResult


  • public interface TableMappingResult
    Result for a TableMapping after performing a data integration execution.
    Since:
    4.1.0
    • Method Detail

      • getSourceTable

        Table getSourceTable()
        Returns the source table.
        Since:
        4.2.0
      • getTargetTable

        Table getTargetTable()
        Returns the target table.
        Since:
        4.2.0
      • getNumberOfProcessedRecords

        int getNumberOfProcessedRecords()
        Returns the total number of processed records from the source table.

        This number is irrelevant if a fatal error happens during the data integration execution.

        See Also:
        hasFatalError()
      • getNumberOfInsertedRecords

        int getNumberOfInsertedRecords()
        Returns the number of inserted records in the target table.

        This number is irrelevant if a fatal error happens during the data integration execution.

        See Also:
        hasFatalError()
      • getNumberOfUpdatedRecords

        int getNumberOfUpdatedRecords()
        Returns the number of updated records in the target table.

        This number is irrelevant if a fatal error happens during the data integration execution.

        See Also:
        hasFatalError()
      • getNumberOfDeletedRecords

        int getNumberOfDeletedRecords()
        Returns the number of deleted records in the target table.

        This number is irrelevant if a fatal error happens during the data integration execution.

        See Also:
        hasFatalError()
      • getNumberOfUnchangedRecords

        int getNumberOfUnchangedRecords()
        Returns the number of unchanged records in the target table.

        This number is irrelevant if a fatal error happens during the data integration execution.

        See Also:
        hasFatalError()
      • getNumberOfFailedRecords

        int getNumberOfFailedRecords()
        Returns the number of failed records when persisting in the target table.

        This number is irrelevant if a fatal error happens during the data integration execution.

        See Also:
        hasFatalError()
      • getNumberOfSkippedRecords

        int getNumberOfSkippedRecords()
        Returns the number of skipped records when persisting in the target table.

        This number is irrelevant if a fatal error happens during the data integration execution.

        Since:
        6.2.0
        See Also:
        hasFatalError()
      • getErrorMessages

        java.util.Iterator<com.onwbp.base.text.UserMessage> getErrorMessages()
        Returns the error messages during the data integration execution.
      • hasFatalError

        boolean hasFatalError()
        Returns true if a fatal error happens during the data integration execution.
        Since:
        4.5.0
      • getFatalErrorMessage

        com.onwbp.base.text.UserMessage getFatalErrorMessage()
        Returns the fatal error or null.
        Since:
        4.5.0
        See Also:
        hasFatalError()