Class IDXNO

Object
IDXNO

public class IDXNO extends Object
Internal index numbers
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    Force a physical data table traversal without using any indices.
    static final int
    RECBYT indices were introduced in the c-treeACE ISAM API to provide improved space management for variable length records in a table and to permit backward physical traversal of data files that contain resources and variable length records.
    static final int
    The ROWID index holds the auto increment value generated automatically by c-tree every time a new record is added to the table.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Methods inherited from class Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • RECBYT

      public static final int RECBYT
      RECBYT indices were introduced in the c-treeACE ISAM API to provide improved space management for variable length records in a table and to permit backward physical traversal of data files that contain resources and variable length records. A RECBYT index is an index based on the byte offset (recbyt) of the record being indexed.
      See Also:
    • ROWID

      public static final int ROWID
      The ROWID index holds the auto increment value generated automatically by c-tree every time a new record is added to the table.
      See Also:
    • DATA

      public static final int DATA
      Force a physical data table traversal without using any indices.
      See Also:
  • Constructor Details

    • IDXNO

      public IDXNO()