ADO UpdateBatch- Methode


❮ Vollständige Recordset-Objektreferenz

Die UpdateBatch-Methode wird verwendet, um alle Änderungen in einem Recordset in der Datenbank zu speichern. Diese Methode wird verwendet, wenn Sie an einem Recordset im Stapelaktualisierungsmodus arbeiten.

Wenn der Speichervorgang fehlschlägt, tritt ein Laufzeitfehler auf und die Fehler werden in der Errors-Auflistung gespeichert.

Tipp: Die CancelBatch-Methode bricht alle Stapelaktualisierungen ab.

Hinweis: Nicht alle Recordset-Objekte unterstützen die Stapelaktualisierung.

Syntax

bool=objRecordset.UpdateBatch affectrecords

Parameter Description
affectrecords Optional. An AffectEnum value that specifies which records this method will affect.

Note: The value adAffectGroup will generate an error if there are no visible records in the Recordset


AffectEnum-Werte

Constant Value Description
adAffectCurrent 1 Affects only the current record
adAffectGroup 2 Affects only records that satisfy the Filter setting (Filter must be set to a FilterGroupEnum value or an array of Bookmarks)
adAffectAll 3 Affects all records if there is no Filter. Affects only visible records in the current chapter if Filter is set to a string criteria. Affect all rows of the Recordset if Filter is set to a FilterGroupEnum value or an array of Bookmarks
adAffectAllChapters 4 Affects all records in all child Recordset, including those hidden by a currently applied filter

❮ Vollständige Recordset-Objektreferenz