03.12.2013, 15:37
I use sscanf to read data from mysql, it's like this (example):
That was just an example, I have much more variables and they are stored at PlayerInfo[playerid][Variable].
The problem is I want to put more data in mysql but then I can't read it because I oversize.
Is there a solution to read more variables with sscanf like breaking a part or something?
Код:
sscanf(linestring, "iiis[24]iiiifff", var1, var2, var3, var4, var5, var6, var7, var8, var9, var10, var11);
The problem is I want to put more data in mysql but then I can't read it because I oversize.
Is there a solution to read more variables with sscanf like breaking a part or something?