Return-Path: X-Original-To: apmail-db-derby-dev-archive@www.apache.org Delivered-To: apmail-db-derby-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 652C998BA for ; Mon, 21 May 2012 11:18:44 +0000 (UTC) Received: (qmail 71328 invoked by uid 500); 21 May 2012 11:18:44 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 71273 invoked by uid 500); 21 May 2012 11:18:43 -0000 Mailing-List: contact derby-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: Delivered-To: mailing list derby-dev@db.apache.org Received: (qmail 70402 invoked by uid 99); 21 May 2012 11:18:41 -0000 Received: from issues-vm.apache.org (HELO issues-vm) (140.211.11.160) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 May 2012 11:18:41 +0000 Received: from isssues-vm.apache.org (localhost [127.0.0.1]) by issues-vm (Postfix) with ESMTP id 79A96141887 for ; Mon, 21 May 2012 11:18:41 +0000 (UTC) Date: Mon, 21 May 2012 11:18:41 +0000 (UTC) From: "Knut Anders Hatlen (JIRA)" To: derby-dev@db.apache.org Message-ID: <1122998997.2912.1337599121500.JavaMail.jiratomcat@issues-vm> Subject: [jira] [Created] (DERBY-5773) SQLException.getErrorCode() returns -1 on client MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Knut Anders Hatlen created DERBY-5773: ----------------------------------------- Summary: SQLException.getErrorCode() returns -1 on client Key: DERBY-5773 URL: https://issues.apache.org/jira/browse/DERBY-5773 Project: Derby Issue Type: Bug Components: JDBC, Network Client, Network Server Affects Versions: 10.8.2.2 Reporter: Knut Anders Hatlen On the embedded driver, SQLException.getErrorCode() returns a value representing the severity of the error. On the client driver, it returns -1 for almost all exceptions. (It has some logic to make session-severity errors return 40000, but the other errors return -1. And SQLWarnings will preserve their error code, which is 10000.) The error code gets lost when DRDAConnThread calls getSqlCode(getExceptionSeverity(e)), as getSqlCode() always returns -1 for exceptions: private int getSqlCode(int severity) { if (severity == CodePoint.SVRCOD_WARNING) // warning return 100; //CLI likes it else if (severity == CodePoint.SVRCOD_INFO) return 0; else return -1; } It's not just its returning -1 for exceptions that's problematic in the above method. Returning 100 for warnings causes them to be ignored by the client, since that error code is interpreted as end-of-data. After the changes for DERBY-129 DRDAConnThread.getSqlCode() won't be called for warnings, though, so it should be safe to remove the SVRCOD_WARNING case from the method. (The real end-of-data warnings use a different code path, from DRDAConnThread.doneData().) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira