Re: [GENERAL] ERROR: canceling query due to user request - Mailing list pgsql-jdbc

From Oliver Jowett
Subject Re: [GENERAL] ERROR: canceling query due to user request
Date
Msg-id 41402533.2080702@opencloud.com
Whole thread Raw
In response to Re: [GENERAL] ERROR: canceling query due to user request  (Paul Thomas <paul@tmsl.demon.co.uk>)
Responses Re: [GENERAL] ERROR: canceling query due to user request  (Paul Thomas <paul@tmsl.demon.co.uk>)
List pgsql-jdbc
Paul Thomas wrote:

> Given that statement.cancel() should only be used to cancel a running
> query, I think the problem is more in your framework's misuse of
> cancel() rather than in the driver itself.

JDBC gives you no way to ensure you only call cancel() on a running
query (there's a race between query execution returning and the call to
cancel()). Calling cancel() on a statement that's not currently
executing should do nothing; if it ends up cancelling a future query,
it's a driver bug.

-O

pgsql-jdbc by date:

Previous
From: Paul Thomas
Date:
Subject: Re: [GENERAL] ERROR: canceling query due to user request
Next
From: Paul Thomas
Date:
Subject: Re: [GENERAL] ERROR: canceling query due to user request