$select = "SELECT * FROM `jos_users`";
$connection->setQuery($select);
$rows = $connection->getNumRows();
$rows does not work it throws the 'mysql_num_rows(): supplied argument is not a valid' error but...
$result = $connection->loadObjectList();
$result works fine.
Is this a Joomla bug?? Or what am i doing wrong?