Return-Path: Delivered-To: apmail-incubator-empire-db-commits-archive@minotaur.apache.org Received: (qmail 43149 invoked from network); 13 Feb 2011 15:02:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 13 Feb 2011 15:02:50 -0000 Received: (qmail 44208 invoked by uid 500); 13 Feb 2011 15:02:49 -0000 Delivered-To: apmail-incubator-empire-db-commits-archive@incubator.apache.org Received: (qmail 44184 invoked by uid 500); 13 Feb 2011 15:02:48 -0000 Mailing-List: contact empire-db-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: empire-db-dev@incubator.apache.org Delivered-To: mailing list empire-db-commits@incubator.apache.org Received: (qmail 44174 invoked by uid 99); 13 Feb 2011 15:02:47 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 13 Feb 2011 15:02:47 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 13 Feb 2011 15:02:47 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 53C9423888C2; Sun, 13 Feb 2011 15:02:27 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1070246 - /incubator/empire-db/trunk/empire-db/src/main/java/org/apache/empire/db/DBSQLScript.java Date: Sun, 13 Feb 2011 15:02:27 -0000 To: empire-db-commits@incubator.apache.org From: francisdb@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110213150227.53C9423888C2@eris.apache.org> Author: francisdb Date: Sun Feb 13 15:02:26 2011 New Revision: 1070246 URL: http://svn.apache.org/viewvc?rev=1070246&view=rev Log: not sure what the proper way to do this is, reverting to previous implementation Modified: incubator/empire-db/trunk/empire-db/src/main/java/org/apache/empire/db/DBSQLScript.java Modified: incubator/empire-db/trunk/empire-db/src/main/java/org/apache/empire/db/DBSQLScript.java URL: http://svn.apache.org/viewvc/incubator/empire-db/trunk/empire-db/src/main/java/org/apache/empire/db/DBSQLScript.java?rev=1070246&r1=1070245&r2=1070246&view=diff ============================================================================== --- incubator/empire-db/trunk/empire-db/src/main/java/org/apache/empire/db/DBSQLScript.java (original) +++ incubator/empire-db/trunk/empire-db/src/main/java/org/apache/empire/db/DBSQLScript.java Sun Feb 13 15:02:26 2011 @@ -117,7 +117,7 @@ public class DBSQLScript extends ErrorOb // SQLException log.error(e.toString(), e); if (ignoreErrors==false) - return error(DBErrors.SQLException, e.getClass().getSimpleName() + ": " + e.getMessage()); + return error(DBErrors.SQLException, e); // continue log.debug("Ignoring error. Continuing with script..."); }