meta data for this page
  •  

ibec_ds_RecordCount

Description

No additional description…

Syntax

 function ibec_ds_RecordCount(Dataset : variant);

Example

execute ibeblock
returns (iCount integer)
as
begin
 stmnt = 'select FIRSTNAME, LASTNAME from CUSTOMER';
 execute statement stmnt as dataset dset;

 iCount = ibec_ds_RecordCount(dset);
 suspend;

end