25.01.2014, 12:30
Because, am not rushing... And is it true, can i use thread and non-threaded queries? And now two qustions more:
When i use query with threaded query, and in callback i can do anything i want, can i without more ado make another query? ex:
When i use query with threaded query, and in callback i can do anything i want, can i without more ado make another query? ex:
Код:
mysql_pquery(1, "SELECT Name FROM players", "PlayerNassewqe", "d", playerid); forward PlayerNassewqe( playerid ); public PlayerNassewqe( playerid ) { if(cache_num_rows() == 1) { mysql_pquery(1, "SELECT Name FROM zombies", "PlayerNassewqerrr", "d", playerid); // I CAN MAKE A QUERY JUST NOW? } }