Class DmlStats (2.38.2)

public abstract class DmlStats implements Serializable

Represents DML statistics information.

Inheritance

java.lang.Object > DmlStats

Implements

Serializable

Static Methods

newBuilder()

public static DmlStats.Builder newBuilder()
Returns
TypeDescription
DmlStats.Builder

Constructors

DmlStats()

public DmlStats()

Methods

getDeletedRowCount()

public abstract Long getDeletedRowCount()

Returns number of deleted Rows. populated by DML DELETE, MERGE and TRUNCATE statements.

Returns
TypeDescription
Long

value or null for none

getInsertedRowCount()

public abstract Long getInsertedRowCount()

Returns number of inserted Rows. Populated by DML INSERT and MERGE statements.

Returns
TypeDescription
Long

value or null for none

getUpdatedRowCount()

public abstract Long getUpdatedRowCount()

Returns number of updated Rows. Populated by DML UPDATE and MERGE statements.

Returns
TypeDescription
Long

value or null for none

toBuilder()

public abstract DmlStats.Builder toBuilder()
Returns
TypeDescription
DmlStats.Builder