company logo

DBExtend :: GetDerivedExtent - Get derived extent

The function returns the derived extent at the position passed in extent_pos. The first derived extent is returned for extent_pos=0;

Return value:  Internal extent definition ( DBExtend * )

Implementation overview

Implementation details

  1. Get derived extent by position
    DBExtend * DBExtend  :: GetDerivedExtent ( int16 extent_pos )

    This implementation searches for the extent in the extent list at the position in the list. This function can be used to list all derived extents for an extent. The function returns NULL, when no (more) extents could be found at the given position.

    • extent_pos - Extent position in the list

      This is the relative position of an extent in a list. The first extent in the list has position 0.

  2. to list
  3. Get derived extent by name
    DBExtend * DBExtend  :: GetDerivedExtent ( NString &cnstring )

    This implementation searches for the extent in the extent list with the name passed to the function. The function returns NULL, when no extent with the given name has been found in the list of derived extents.

    • cnstring - String containing the text
  4. to list