Méthode d' annulation ADO


❮ Référence complète de l'objet de commande

La méthode Cancel annule l'exécution d'un appel de méthode.

La méthode Cancel annule différentes tâches pour chaque objet. Le tableau ci-dessous montre quelle tâche est annulée lorsque cette méthode est appelée :

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

Syntaxe

object.Cancel

❮ Référence complète de l'objet de commande