Utility Functions : List of Utility Functions : stm_list_length

stm_list_length
Function Type
int
Description
Returns the length of the specified list.
Syntax
stm_list_length (list, &status)
Arguments
Input/Output
 
Status Codes
Example
To verify that an extracted list of all the events from the database whose name matched a certain pattern (assigned to st_list) contains no more than 3000 elements, use the following statements:

 

stm_list st_list;
int status;
.
.
if (stm_list_length (st_list, &status) < 3000)
.
.