company logo

PropertyHandle :: IsSensitive - Is property handle sensitive against modifications

A sensitive property is a property that is part of keys used in global indexes. In ODABA modifications on indexes will lock the index until the transaction is terminated. Thus, updating sensitive properties in long transactions may cause uncomfortable lock situations. Sensitive properties should not be allowed being updated in long transactions.

Return value:  Return value ( logical  )

The function returns YES when the question was answered positively. Otherwise it returns NO.

Implementation overview

Implementation details

  1. - internal feature (not documented)
    logical PropertyHandle  :: IsSensitive (  )
  2. to list
  3. - internal feature (not documented)
    logical PropertyHandle  :: IsSensitive ( NString &prop_path )
    • prop_path - Property path

      A property path is passed as 0-terminated string. It may contain an extent or property name but also a sequence of property names separated by dot.

      Property path may start with a dot (.), which indicates, that the path starts in an upper property handle. One dot indicates, that the path starts in the current property handle. This distinction becomes necessary, when a property has the same name as an extent. To access the property in this case, one dot must precede the property name. The first dot can be omitted, when the property name is not an extent name.

      Referring to a path starting in a parent property handle requires two dots (..), the parents parent three and so on.

      address.street

      .address.street

  4. to list