Reputation: 6472
Sometimes user run long-time query to SQL Server in application (vc++ OLE DB). How to cancel this query on the client side during the execution?
Upvotes: 2
Views: 265
Reputation: 41222
The ICommand interface has a Cancel method that is specifically meant for cancelling a query. If you are using ADO, then the previously mentioned method is still available via Cancel.
Upvotes: 1