10.01.2018, 16:03
How to write mysql_function_query today? (newest mysql plugin)
And how to turn cache to True / False ?
And how to turn cache to True / False ?
// mysql_tquery
mysql_tquery(db_handle, "SELECT * FROM `vehicles`", OnVehiclesLoad); // The vehicles load first.
mysql_tquery(db_handle, "SELECT * FROM `houses`", OnHousesLoad); // The houses load after the vehicles.
// mysql_pquery
mysql_pquery(db_handle, "SELECT * FROM `vehicles`", OnVehiclesLoad);
mysql_pquery(db_handle, "SELECT * FROM `houses`", OnHousesLoad);
// In this case the houses might load before the vehicles, you can't control the execution order here.