03.03.2012, 11:03
Here's something that I wrote yesterday to circumvent this problem. Requires you to have the cache enabled for that particular select query!
Not yet tested, so use at your own risk!
pawn Код:
stock mysql_fetch_int(connectionHandle)
{
new
rows,
fields,
storage[12];
cache_get_data(rows, fields, connectionHandle);
if(!rows)
return cellmin;
cache_get_row(0, 0, storage, connectionHandle);
return strval(storage);
}
stock Float:mysql_fetch_float(connectionHandle)
{
new
rows,
fields,
storage[12];
cache_get_data(rows, fields, connectionHandle);
if(!rows)
return Float:cellmin;
cache_get_row(0, 0, storage, connectionHandle);
return floatstr(storage);
}