Return-Path: Delivered-To: apmail-commons-issues-archive@locus.apache.org Received: (qmail 92430 invoked from network); 4 Feb 2008 04:01:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 4 Feb 2008 04:01:48 -0000 Received: (qmail 10599 invoked by uid 500); 4 Feb 2008 04:01:39 -0000 Delivered-To: apmail-commons-issues-archive@commons.apache.org Received: (qmail 10499 invoked by uid 500); 4 Feb 2008 04:01:39 -0000 Mailing-List: contact issues-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: issues@commons.apache.org Delivered-To: mailing list issues@commons.apache.org Received: (qmail 10490 invoked by uid 99); 4 Feb 2008 04:01:39 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 03 Feb 2008 20:01:39 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Feb 2008 04:01:19 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id E4BCC71406E for ; Sun, 3 Feb 2008 20:01:20 -0800 (PST) Message-ID: <5230355.1202097680934.JavaMail.jira@brutus> Date: Sun, 3 Feb 2008 20:01:20 -0800 (PST) From: "Phil Steitz (JIRA)" To: issues@commons.apache.org Subject: [jira] Resolved: (DBCP-237) InstanceKeyDataSource.getConnection, exception during setup Defaults() In-Reply-To: <6854219.1187608890572.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DBCP-237?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Phil Steitz resolved DBCP-237. ------------------------------ Resolution: Fixed Patch with tests applied in r618163. Thanks! > InstanceKeyDataSource.getConnection, exception during setup Defaults() > ---------------------------------------------------------------------- > > Key: DBCP-237 > URL: https://issues.apache.org/jira/browse/DBCP-237 > Project: Commons Dbcp > Issue Type: Bug > Affects Versions: 1.2.1, 1.2.2 > Environment: Sybase jConnect2 5.5, spring framework 2.0.1 > Reporter: Oliver Matz > Fix For: 1.3 > > > Problem in > org.apache.commons.dbcp.datasources.InstanceKeyDataSource.getConnection(String username, String password) > if setupDefaults() throws an Exception, the connection will not get closed. > After a while, this will cause the following exception: > org.apache.commons.dbcp.SQLNestedException: Could not retrieve connection info from pool > This scenario can happen for Sybase jConnect2 5.5. The exception that may be thrown by jConnect2 is: > com.sybase.jdbc2.jdbc.SybConnectionDeadException: JZ0C0: Connection is already closed. > More details: > The last lines of the method are as follows: > ------- > Connection con = info.getPooledConnection().getConnection(); > setupDefaults(con, username); > con.clearWarnings(); > return con; > ------- > In my case, the exception happens in the second line of this snippet, > so no code gets the chance close con and release the resources. > I propose to change it to: > ------- > Connection con = info.getPooledConnection().getConnection(); > try > { > setupDefaults(con, username); > con.clearWarnings(); > return con; > } > catch (Exception exc) > { > try > { > con.close(); > } > catch (Exception exc) > { > getLogWriter().println("ignoring exception during close: " + exc); // uncertain here. > } > throw exc; > } -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.