IsRowLimitExceeded
Use this function to determine if the number of rows downloaded exceeds the RowLimit specified in the associated Data Table Definition. A value of 1 indicates that the row limit has been exceeded. A value of 0 indicates that the row limit has not been exceeded.
Note: This function must be called immediately after the DOWNLOAD DataTable command to ensure correct results.
Syntax
IsRowLimitExceeded("DataTableName")
where:
- DataTableName is the name of the DataTable object that was downloaded.
Syntax example
Create DataTable myTable Using "AllProducts.lvdtd"
Download myTable
Set Variable nFlag = IsRowLimitExceeded ("myTable")