Are there any existing methods in the VB class to get a count of return rows.
As the moment my code iterates through each result and maintains a count using:
Code:
$sqlData = $db->query_read($sql);
$numrows = mysql_num_rows ( $sqlData );
However if VB has a wrapper for this method it would make sense to use that, for example
Code:
$rowcount = $db->row_count($sqlData))
EDIT: Found it:
Code:
$rowcount = $db->num_rows($sqlData))