Contains a value associated with debug events.
typedef union DB_value {
int integer;
char * utf8Str;
EVT_TimeStamp timeStamp;
DB_netAddress netAddress;
DB_binary binary;
DB_timeStampVector timeStampVector;
};
Contains the integer value of the parameter if the type field of the DB_Parameter structure is DB_PARAM_TYPE_INTEGER.
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.
Contains the EVT_TimeStamp value of the parameter if the type field of the DB_Parameter structure is DB_PARAM_TYPE_TIMESTAMP.
Contains the DB_netAddress value of the parameter if the type field of the DB_Parameter structure is DB_PARAM_TYPE_ADDRESS.
Contains the DB_binary value of the parameter if the type field of the DB_Parameter structure is DB_PARAM_TYPE_BINARY.
Contains the DB_timeStampVector value of the parameter if the type field of the DB_Parameter structure is DB_PARAM_TYPE_TIMEVECTOR.