The Change Inserted Rows property specifies whether an application can call the Delete or Update methods on a newly inserted row.
object.Properties("Change Inserted Rows") [= value]
object
Expression that evaluates to an object in the Applies To list.
value
Boolean that indicates whether an application can call the Delete or Update methods as specified in Settings.
Value | Description |
---|---|
True | The consumer can call the Delete or Update methods on newly inserted rows. |
False | If the consumer calls the Delete or Update method for newly inserted rows, Delete returns a status of DBROWSTATUS_E_NEWLYINSERTED for the row and Update returns DB_E_NEWLYINSERTED. |
adBoolean
Read/write
DBPROP_CHANGEINSERTEDROWS
A newly inserted row is defined to be a row for which the insertion has been transmitted to the data source, as opposed to a pending insert row.