Return-Path: X-Original-To: apmail-db-torque-dev-archive@www.apache.org Delivered-To: apmail-db-torque-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D831FD4B7 for ; Mon, 24 Sep 2012 07:08:20 +0000 (UTC) Received: (qmail 67598 invoked by uid 500); 24 Sep 2012 07:08:20 -0000 Delivered-To: apmail-db-torque-dev-archive@db.apache.org Received: (qmail 67534 invoked by uid 500); 24 Sep 2012 07:08:20 -0000 Mailing-List: contact torque-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Apache Torque Developers List" Reply-To: "Apache Torque Developers List" Delivered-To: mailing list torque-dev@db.apache.org Received: (qmail 64817 invoked by uid 99); 24 Sep 2012 07:08:13 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Sep 2012 07:08:13 +0000 Date: Mon, 24 Sep 2012 18:08:13 +1100 (NCT) From: "Thomas Fox (JIRA)" To: torque-dev@db.apache.org Message-ID: <290689291.115466.1348470493341.JavaMail.jiratomcat@arcas> Subject: [jira] [Closed] (TORQUE-111) Thrown RuntimeExceptions cause database connections to remain open MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/TORQUE-111?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Fox closed TORQUE-111. ----------------------------- > Thrown RuntimeExceptions cause database connections to remain open > ------------------------------------------------------------------ > > Key: TORQUE-111 > URL: https://issues.apache.org/jira/browse/TORQUE-111 > Project: Torque > Issue Type: Bug > Components: Runtime > Affects Versions: 3.2, 3.3 > Reporter: Neil Weber > Assignee: Thomas Fox > Priority: Critical > Fix For: 4.0-beta1 > > Original Estimate: 0.25h > Remaining Estimate: 0.25h > > In the doSelect(), doDelete(), doInsert(), and doUpdate() methods in BasePeer a database connection is obtained, some work performed, and then, if successful, the work is committed and the database connection is closed. If a TorqueException is thrown while performing the work, the work is rolled back and the database connection is closed. If a RuntimeException is thrown while performing the work, the work is *not* rolled back and the database connection remains open. > The fix is simple: catch Exception (or Throwable) instead of TorqueException. This will ensure that, no matter what the problem is, Torque ensures the database connection is closed. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: torque-dev-unsubscribe@db.apache.org For additional commands, e-mail: torque-dev-help@db.apache.org