Class CursorInfo

java.lang.Object
org.apache.derby.impl.sql.CursorInfo
All Implemented Interfaces:
Externalizable, Serializable, Formatable, TypedFormat

public class CursorInfo extends Object implements Formatable
A basic holder for information about cursors for execution.
See Also:
  • Field Details

    • targetTable

      This class implements Formatable. That means that it can write itself to and from a formatted stream. If you add more fields to this class, make sure that you also write/read them with the writeExternal()/readExternal() methods. If, inbetween releases, you add more fields to this class, then you should bump the version number emitted by the getTypeFormatId() method.
    • updateColumns

      List<String> updateColumns
    • updateMode

      int updateMode
  • Constructor Details

    • CursorInfo

      public CursorInfo()
      Niladic constructor for Formatable
    • CursorInfo

      public CursorInfo(int updateMode, ExecCursorTableReference targetTable, List<String> updateColumns)
  • Method Details