SQLCancel()
This function quits execution of a command you've passed to the server. It's relevant only when you're in asynchronous mode.
Usage |
nSuccess = SQLCancel( nConnectionHandle ) |
Example |
nHandle = SQLConnect("Northwinds") = SQLSetProp(nHandle, "Asynchronous", .T.) = SQLExec(nHandle, "Select * FROM Customers,Orders") * Oh, my goodness, it has no join condition! = SQLCancel(nHandle) |
See Also |