In a multi-threaded environment I have a SQLQuery that sometimes takes too long to execute completely.
I cant find a way to close neither the SQLQuery nor the associated SQLConnection. The SQLConnection "close" method seems to wait until the SQLQuery is done completely.
Is there a way to do this? I mean, to kill the execution of the SQLQuery and close the associated SQLConnection?