webCOMAND

row_set::count()

Returns the number of rows in the row set.

Prototype

integer count()

Example

$row_set = $repo->get( "SELECT Identifier WHERE Identifier LIKE '%System%'" );
$num_rows = $row_set->count();
echo( "$num_rows matches found.\n" );