Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 22170 invoked from network); 11 May 2006 15:19:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 11 May 2006 15:19:58 -0000 Received: (qmail 49939 invoked by uid 500); 11 May 2006 15:19:57 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 49907 invoked by uid 500); 11 May 2006 15:19:57 -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 49898 invoked by uid 99); 11 May 2006 15:19:57 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 May 2006 08:19:57 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [209.237.227.198] (HELO brutus.apache.org) (209.237.227.198) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 11 May 2006 08:19:56 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 9E6F77142AD for ; Thu, 11 May 2006 15:19:05 +0000 (GMT) Message-ID: <24919913.1147360745646.JavaMail.jira@brutus> Date: Thu, 11 May 2006 15:19:05 +0000 (GMT+00:00) From: "Andreas Korneliussen (JIRA)" To: derby-dev@db.apache.org Subject: [jira] Commented: (DERBY-1087) Updatable result sets behave different depending on the type of query used to generate the result set In-Reply-To: <294821727.1141817198974.JavaMail.jira@ajax> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/DERBY-1087?page=comments#action_12379084 ] Andreas Korneliussen commented on DERBY-1087: --------------------------------------------- Great, then I do not have any issues w.r.t this patch, and (again) recommend it being committed. > Updatable result sets behave different depending on the type of query used to generate the result set > ----------------------------------------------------------------------------------------------------- > > Key: DERBY-1087 > URL: http://issues.apache.org/jira/browse/DERBY-1087 > Project: Derby > Type: Bug > Components: JDBC, SQL > Reporter: Fernanda Pizzorno > Assignee: Fernanda Pizzorno > Attachments: derby-1087.diff, derby-1087.stat, derby-1087v2.diff, derby-1087v2.stat, derby-1087v3.diff, derby-1087v3.stat > > Running the following code with different queries in the first statement produces different results. > Where t1 has two columns: "a" of type int is the primary key, and "b" of type varchar(50); and contains 10 rows of data. > Statement st1 = conn.createStatement(ResultSet.TYPE_FORWARD_ONLY, > ResultSet.CONCUR_UPDATABLE); > Statement st2 = conn.createStatement(); > > ResultSet rs = st1.executeQuery("SELECT a, b FROM t1"); > rs.next(); > rs.next(); > st2.executeUpdate("UPDATE t1 SET a = a + 20 WHERE a = " + > rs.getInt(1)); > try { > rs.updateInt(1, rs.getInt(1) + 30); > rs.updateRow(); > } catch (SQLException se) { > System.out.println(se.getMessage()); > } > rs.close(); > > rs = st2.executeQuery("SELECT a FROM t1"); > while(rs.next()) { > System.out.println("A = " + rs.getInt(1)); > } > rs.close(); > > st2.close(); > st1.close(); > If the first query is "select a, b from t1", the output will be: > A = 1 > A = 3 > A = 4 > A = 5 > A = 6 > A = 7 > A = 8 > A = 9 > A = 10 > A = 32 > If the first query is "SELECT a, b FROM t1 WHERE a <= 5", the output will be: > Cursor 'SQLCUR0' is not on a row. > A = 1 > A = 3 > A = 4 > A = 5 > A = 6 > A = 7 > A = 8 > A = 9 > A = 10 > A = 22 > If the first query is "SELECT a FROM t1", the output will be: > Cursor 'SQLCUR0' is not on a row. > A = 1 > A = 3 > A = 4 > A = 5 > A = 6 > A = 7 > A = 8 > A = 9 > A = 10 > A = 22 -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira