Cupara
Well-known member
I have no use of limit in my results so I don't understand why it is only grabbing 10 results when there is 24 results total for the table. It should be running through them to update them based on data I received from a JSON request to Blizzard's WoW API.
Here is my finder:
Here is my query I tried with after the finder only did 10 results:
Thanks in advance for the help and taking a look for me.
Here is my finder:
PHP:
$guildRoster = $guildFinder->where('char_level', '>', '10')->fetch();
Here is my query I tried with after the finder only did 10 results:
PHP:
public function getRoster()
{
$db = \XF::db();
return $db->fetchAll('
SELECT * FROM xwow_roster
WHERE char_level > 10');
}
Thanks in advance for the help and taking a look for me.