08.08.2014, 02:18
So I have been using R7 for a while and I decided to use R39-2.
So i'm wondering do I have to store the result, and free the result every time in an example like this?
or do I have to do
So i'm wondering do I have to store the result, and free the result every time in an example like this?
pawn Код:
format(query, sizeof(query), "SELECT * FROM `players` WHERE `Username` = '%s'", GetName(playerid));
mysql_tquery(chandle, query, "CheckAccount", "d", playerid);
pawn Код:
format(query, sizeof(query), "SELECT * FROM `players` WHERE `Username` = '%e'", GetName(playerid));
mysql_tquery(chandle, query, "CheckAccount", "d", playerid);