public abstract static class DmlStats.BuilderConstructors
Builder()
public Builder()Methods
build()
public abstract DmlStats build()Creates a DmlStats object.
| Returns | |
|---|---|
| Type | Description |
DmlStats |
|
setDeletedRowCount(Long deletedRowCount)
public abstract DmlStats.Builder setDeletedRowCount(Long deletedRowCount)Number of deleted Rows. populated by DML DELETE, MERGE and TRUNCATE statements.
| Parameter | |
|---|---|
| Name | Description |
deletedRowCount |
LongdeletedRowCount or |
| Returns | |
|---|---|
| Type | Description |
DmlStats.Builder |
|
setInsertedRowCount(Long insertedRowCount)
public abstract DmlStats.Builder setInsertedRowCount(Long insertedRowCount)Number of inserted Rows. Populated by DML INSERT and MERGE statements.
| Parameter | |
|---|---|
| Name | Description |
insertedRowCount |
LonginsertedRowCount or |
| Returns | |
|---|---|
| Type | Description |
DmlStats.Builder |
|
setUpdatedRowCount(Long updatedRowCount)
public abstract DmlStats.Builder setUpdatedRowCount(Long updatedRowCount)Number of updated Rows. Populated by DML UPDATE and MERGE statements.
| Parameter | |
|---|---|
| Name | Description |
updatedRowCount |
LongupdatedRowCount or |
| Returns | |
|---|---|
| Type | Description |
DmlStats.Builder |
|