ZedZip
ZedZip

Reputation: 6472

VC++ OLE DB: how to cancel query?

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

Answers (1)

Mark Wilkins
Mark Wilkins

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

Related Questions