06.02.2015, 14:23
I have problems understanding MySQL threaded querries.
I am trying to convert the code above from non threaded to threaded.
How to make this with threaded querries?
I am trying to convert the code above from non threaded to threaded.
How to make this with threaded querries?
pawn Код:
new row[128];
new field[2][32];
mysql_fetch_row_format(row, "|");
explode(row, field, "|");
mysql_free_result();
format(UserStats[playerid][Password], 32, "%s", field[0]);
UserStats[playerid][Money] = strval(field[1]);
GivePlayerMoney(playerid, UserStats[playerid][Money]);