Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 93732 invoked from network); 2 Apr 2007 23:47:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 2 Apr 2007 23:47:54 -0000 Received: (qmail 84019 invoked by uid 500); 2 Apr 2007 23:48:00 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 83988 invoked by uid 500); 2 Apr 2007 23:48:00 -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 83979 invoked by uid 99); 2 Apr 2007 23:48:00 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 Apr 2007 16:48:00 -0700 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, 02 Apr 2007 16:47:52 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 64E1471403D for ; Mon, 2 Apr 2007 16:47:32 -0700 (PDT) Message-ID: <13600510.1175557652361.JavaMail.jira@brutus> Date: Mon, 2 Apr 2007 16:47:32 -0700 (PDT) From: "Kathey Marsden (JIRA)" To: derby-dev@db.apache.org Subject: [jira] Created: (DERBY-2516) Network Client allows execution of callable statement when one of the parameters is not set MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Network Client allows execution of callable statement when one of the parameters is not set ------------------------------------------------------------------------------------------- Key: DERBY-2516 URL: https://issues.apache.org/jira/browse/DERBY-2516 Project: Derby Issue Type: Bug Affects Versions: 10.3.0.0 Reporter: Kathey Marsden Priority: Minor If the second input parameter is set and the first is not. Client allows execution of the stored procedure. See the following code in LangProcedureTest.java with a reference to this bug. op.clearParameters(); op.setString(2, "2"); try { // a not set op.execute(); fail("FAIL - a not set"); } catch (SQLException sqle) { assertSQLState("07000", sqle); } -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.