22.05.2016, 14:18
mysql_function_query is a threaded function which receives data through a callback rather than halt the server while performing the query.
Код:
mysql_function_query(dbhandle, query3, "OnSuspend", "");
forward OnSuspend();
public OnSuspend()
{
// get the cache data and do whatever other needed operations
return true;
}

