18.07.2012, 11:34
Thank you for the time that you spend for us,
i got an another question is it possible to not call and callback with the mysql func query?
like this
Max
i got an another question is it possible to not call and callback with the mysql func query?
like this
Код:
new query[768]; format(query, sizeof(query), "SELECT * FROM `"db_players"` WHERE ID = %d LIMIT 1", id); mysql_function_query(MySQL_Handle, query, false,"",""); mysql_store_result(MySQL_Handle); new resultat = mysql_num_rows(MySQL_Handle); mysql_free_result(MySQL_Handle); if(resultat >= 1) { return 1; } return 0;