DmlStatisticsResponse

data class DmlStatisticsResponse(val deletedRowCount: String, val insertedRowCount: String, val updatedRowCount: String)

Constructors

Link copied to clipboard
fun DmlStatisticsResponse(deletedRowCount: String, insertedRowCount: String, updatedRowCount: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

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

Link copied to clipboard

Number of inserted Rows. Populated by DML INSERT and MERGE statements.

Link copied to clipboard

Number of updated Rows. Populated by DML UPDATE and MERGE statements.