08.12.2014, 15:35
Quote:
There is some way to get cache fields result and sscanf it to an enum?
Like i was doing on R6 using mysql_store_result + retrieve row then sscanf all recieved data for enum... Or i have to do it manually? Ex: |
pawn Код:
enum Data
{
name[24],
pass[32],
money
}
new PlayerInfo[MAX_PLAYERS][Data];
function SQL_GetsInf(...){
for(new q; q < 1; q++){
sscanf(Data, "p<§>s[24]s[32]d",PlayerInfo[q]);
printf("%s",PlayerInfo[i][name]);
printf(...);
}
return true;
}