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

Statements in stored procedures with holdable cursor should not be allowed to execute in xa global transaction

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Open
    • Major
    • Resolution: Unresolved
    • 10.2.1.6
    • None
    • JDBC
    • Normal
    • Deviation from standard

    Description

      Execution of statements with HOLD_CURSORS_OVER_COMMIT must not be allowed in a global transaction. Currently, this is allowed when the statement is inside a stored procedure.

      e.g: The following procedure should throw an error when executed inside a global transaction. However, no error is thrown when running with embedded or client drivers.

      //Java method for stored procedure with HOLD_CURSORS_OVER_COMMIT
      public static void testHoldCursorsProc(ResultSet[] rs) throws Exception

      { Connection conn = DriverManager.getConnection("jdbc:default:connection"); //HOLD_CURSORS_OVER_COMMIT Statement st = conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE , ResultSet.CONCUR_READ_ONLY, ResultSet.HOLD_CURSORS_OVER_COMMIT); rs[0] = st.executeQuery("select * from testtable1"); }

      Attachments

        1. d639.java
          0.5 kB
          Deepa
        2. d639.sql
          1 kB
          Deepa

        Issue Links

          Activity

            People

              Unassigned Unassigned
              deepa Deepa
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

              Dates

                Created:
                Updated: