Uploaded image for project: 'Derby'
  1. Derby
  2. DERBY-4778

In Client mode, holdable resultset cursor used in positioned update shouldn't access row with autocommit=true

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Open
    • Major
    • Resolution: Unresolved
    • 10.3.3.0
    • None
    • JDBC
    • Low
    • Embedded/Client difference

    Description

      Consider sql snippet below, which is from the tenth test in holdCursorIJ.sql:

      create table t1(c11 int, c12 int);
      insert into t1 values(1,1);
      insert into t1 values(2,2);
      autocommit on;
      get with hold cursor scrollCursor as 'select * from t1 for update of c12';
      next scrollCursor;
      update t1 set c12=c12+1 where current of scrollCursor;
      – clean up.
      close scrollCursor;

      look at 'update' line, in Embed mode, 'ERROR 24000: Invalid cursor state - no current row.' will be thrown, it's correct, just like SQL standard, and this behaviour is discussed in DERBY-610.

      'The SQL standard 2003, Part 2: Foundation
      (SQL/Foundation) p 827:

      > 6) If CR is a holdable cursor and a <fetch statement>has not been
      > issued against CR within the current SQL- transaction,then an
      > exception condition is raised: "invalid cursor state".

      That is, a positioning operation is required before the row can be
      updated or deleted. Derby implements rowUpdate and rowDelete using
      positioned cursor operations and has the same limitation, and will
      give the same exception for forward only, updatable result sets. For
      Scrollable, updatable insensitive result sets being implemented as
      DERBY-690 and DERBY-775, the behavior should be the same. JDBC
      doesn't address this requirement, as far as I can tell.'

      However, in Client mode, it will succeed. It's not correct!

      Attachments

        Issue Links

          Activity

            People

              Unassigned Unassigned
              yunlee Yun Lee
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

              Dates

                Created:
                Updated: