DB_value

Contains a value associated with debug events.

Structure

  typedef union DB_value {
      int                 integer;
      char               *      utf8Str;
      EVT_TimeStamp       timeStamp;
      DB_netAddress       netAddress;
      DB_binary           binary;
      DB_timeStampVector  timeStampVector;
  };
  

Fields

integer

Contains the integer value of the parameter if the type field of the DB_Parameter structure is DB_PARAM_TYPE_INTEGER.

utf8Str

Contains a pointer to the UTF-8 encoded string value of the parameter if the type field of the DB_Parameter structure is DB_PARAM_TYPE_STRING.

timeStamp

Contains the EVT_TimeStamp value of the parameter if the type field of the DB_Parameter structure is DB_PARAM_TYPE_TIMESTAMP.

netAddress

Contains the DB_netAddress value of the parameter if the type field of the DB_Parameter structure is DB_PARAM_TYPE_ADDRESS.

binary

Contains the DB_binary value of the parameter if the type field of the DB_Parameter structure is DB_PARAM_TYPE_BINARY.

timeStampVector

Contains the DB_timeStampVector value of the parameter if the type field of the DB_Parameter structure is DB_PARAM_TYPE_TIMEVECTOR.