Class DmlStats

    • Constructor Detail

      • DmlStats

        public DmlStats()
    • Method Detail

      • getDeletedRowCount

        @Nullable
        public abstract Long getDeletedRowCount()
        Returns number of deleted Rows. populated by DML DELETE, MERGE and TRUNCATE statements.
        Returns:
        value or null for none
      • getInsertedRowCount

        @Nullable
        public abstract Long getInsertedRowCount()
        Returns number of inserted Rows. Populated by DML INSERT and MERGE statements.
        Returns:
        value or null for none
      • getUpdatedRowCount

        @Nullable
        public abstract Long getUpdatedRowCount()
        Returns number of updated Rows. Populated by DML UPDATE and MERGE statements.
        Returns:
        value or null for none