23.03.2014, 16:14
I'd link you to my thread, but it's currently a bit outdated (no caching).
That would be your basic structure. I don't know what you intend to do with the results, but you could also parse the results into a global array directly.
pawn Код:
for(new i, j = cache_get_row_count(); i < j; i++)
{
new result[MAX_PLAYER_NAME];
cache_get_row(i, 0, result);
printf("result %d: %s", i, result);
}