ADO - Abbruchmethode


❮ Vollständige Stream-Objektreferenz

Die Cancel-Methode bricht eine Ausführung eines Methodenaufrufs ab.

Die Cancel-Methode bricht verschiedene Aufgaben für jedes Objekt ab. Die folgende Tabelle zeigt, welche Aufgabe abgebrochen wird, wenn diese Methode aufgerufen wird:

Object Cancelled task
Command Execute.

Note: The Options parameter of the Execute method must be set to adAsyncExecute or adAsyncFetch, before the Cancel method is called, otherwise a run-time error will occur

Connection Execute or Open.

Note: The Options parameter of the Open method must be set to adSyncConnect, or the Options parameter of the Execute method be set to adAsyncExecute or adAsyncFetch, before the Cancel method is called, otherwise a run-time error will occur

Record CopyRecord, DeleteRecord, MoveRecord, or Open

Note: The Options parameter of the Execute method must be set to adAsyncExecute or adAsyncFetch, before the Cancel method is called, otherwise a run-time error will occur

Recordset Open
Stream Open

Syntax

object.Cancel

❮ Vollständige Stream-Objektreferenz