Pavel Pereslegin created IGNITE-23464:
-----------------------------------------
Summary: Implement cancellation in JDBC
Key: IGNITE-23464
URL: https://issues.apache.org/jira/browse/IGNITE-23464
Project: Ignite
Issue Type: Improvement
Components: jdbc, sql
Reporter: Pavel Pereslegin
We need to support {{Statement#cancel()}} method.
{code:java}
/**
* Cancels this <code>Statement</code> object if both the DBMS and
* driver support aborting an SQL statement.
* This method can be used by one thread to cancel a statement that
* is being executed by another thread.
*
* @exception SQLException if a database access error occurs or
* this method is called on a closed <code>Statement</code>
* @exception SQLFeatureNotSupportedException if the JDBC driver does not
support
* this method
*/
void cancel() throws SQLException;
{code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)