-
-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support Query Cancellation #61
Comments
So far I've not found this to be necessary. Cancelling insert/update/delete queries isn't very practical. Unbuffered select queries can be effectively cancelled by not consuming the entire result set. There is the initial round-trip time to the server where a select query could be cancelled, but would require interface changes in this library as well |
You can use |
I understand there may be some advantage, particular with buffered select queries. I would be open to implementing this in the future, but first will require some investigation as the best way to go about it. As I mentioned in my prior comment, full support would either 1) require modifying the common components supplied by |
For example:
The text was updated successfully, but these errors were encountered: