01.06.2012, 22:46
Rows is the number of rows that were returned. It couldn't be anymore clear, really. cache_get_data has the same functionality as mysql_num_rows and mysql_num_fields combined. To get the data you'll need to call cache_get_row.
pawn Код:
new
store[12],
value;
cache_get_row(0 /* first row */, 0 /* first field */, store);
value = strval(store);
printf("%d zaideju", value);