You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-dev@db.apache.org by "Bernt M. Johnsen (JIRA)" <ji...@apache.org> on 2006/11/17 10:20:40 UTC

[jira] Reopened: (DERBY-2084) getTransactionIsolation() in network client should not activate a transaction

     [ http://issues.apache.org/jira/browse/DERBY-2084?page=all ]

Bernt M. Johnsen reopened DERBY-2084:
-------------------------------------

             
Merge to 10.2

> getTransactionIsolation() in network client should not activate a transaction
> -----------------------------------------------------------------------------
>
>                 Key: DERBY-2084
>                 URL: http://issues.apache.org/jira/browse/DERBY-2084
>             Project: Derby
>          Issue Type: Bug
>          Components: Network Client
>    Affects Versions: 10.2.1.6, 10.1.3.1, 10.3.0.0
>            Reporter: Bernt M. Johnsen
>         Assigned To: Bernt M. Johnsen
>             Fix For: 10.3.0.0
>
>         Attachments: DERBY-2084.diff
>
>
> getTransactionIsolation() is implemented by means of             
>      rs = getTransactionIsolationStmt.executeQuery("values current isolation");
> This will activate a transaction. Thus the code snippet
>         Connection conn = 
>             DriverManager.getConnection(url);
>         conn.setAutoCommit(false);
>         int tx = conn.getTransactionIsolation();
>         conn.close();
> will fail with
> java.sql.SQLException: Cannot close a connection while a transaction is still active.
>         at org.apache.derby.client.am.SQLExceptionFactory.getSQLException(Unknown Source)
>         at org.apache.derby.client.am.SqlException.getSQLException(Unknown Source)
>         at org.apache.derby.client.am.Connection.closeResourcesX(Unknown Source)
>         at org.apache.derby.client.am.Connection.closeX(Unknown Source)
>         at org.apache.derby.client.net.NetConnection.closeX(Unknown Source)
>         at org.apache.derby.client.am.Connection.close(Unknown Source)
>         at org.apache.derby.client.net.NetConnection.close(Unknown Source)
>         at GetTransactionIsolation.test(GetTransactionIsolation.java:12)
>         at GetTransactionIsolation.main(GetTransactionIsolation.java:22)
> Caused by: org.apache.derby.client.am.SqlException: Cannot close a connection while a transaction is still active.
>         at org.apache.derby.client.am.Connection.checkForTransactionInProgress(Unknown Source)
>         ... 7 more

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira