Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 21461 invoked from network); 16 Aug 2010 11:59:41 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 16 Aug 2010 11:59:41 -0000 Received: (qmail 23499 invoked by uid 500); 16 Aug 2010 11:59:41 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 23292 invoked by uid 500); 16 Aug 2010 11:59:38 -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 23284 invoked by uid 99); 16 Aug 2010 11:59:37 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Aug 2010 11:59:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Aug 2010 11:59:36 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o7GBxG5g014208 for ; Mon, 16 Aug 2010 11:59:16 GMT Message-ID: <20373260.363161281959956198.JavaMail.jira@thor> Date: Mon, 16 Aug 2010 07:59:16 -0400 (EDT) From: "Yun Lee (JIRA)" To: derby-dev@db.apache.org Subject: [jira] Created: (DERBY-4777) perform different in Client and Embed modes when update on an invalid cursor MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 perform different in Client and Embed modes when update on an invalid cursor ---------------------------------------------------------------------------- Key: DERBY-4777 URL: https://issues.apache.org/jira/browse/DERBY-4777 Project: Derby Issue Type: Improvement Components: JDBC Reporter: Yun Lee Assignee: Yun Lee Consider the sql snippet below: create table test(c1 int, c2 int); insert into test values(1,1); update test set c1=2 where current of jdk4; for the 'update' line, we get 'ERROR XJ202: Invalid cursor name 'JDK4'. ' in Client mode, while 'ERROR 42X30: Cursor 'JDK4' not found. Verify that autocommit is OFF.' in Embed mode. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.