This code is used to get Info of how many records left in Record
Example after deleting how number records left in that Data source or After Adding records how many are there in the datasource
public void init()
{
QueryRun queryRun;
super();
queryRun = new QueryRun(Student_ds.query());
info(strfmt("Total Records in Student Datasource %1",SysQuery::countTotal(queryRun)));
}
Comments
Post a Comment