Posts: 206
Threads: 31
Joined: Jul 2010
Reputation:
0
Whats better for saving player stats?
Y_ini, DJson, MySQL, or other _______?
Posts: 2,862
Threads: 11
Joined: Mar 2008
Reputation:
0
Depends on your needs. I prefer MySQL tho'.
Posts: 206
Threads: 31
Joined: Jul 2010
Reputation:
0
So the three mentioned have pros and cons on what they can do and certain ones do certain tasks better than the other?
So I should use all three?
Posts: 1,739
Threads: 53
Joined: Oct 2010
Reputation:
0
I recommend y_ini, as I've used it in the past and its an extremely simple system.
Although MySQL is more hard to understand, its also better like ****** said, for storing frequently-used data.
Posts: 371
Threads: 6
Joined: Feb 2011
Reputation:
0
I suggest you using MySQL.
But if you don't want to learn it then use y_ini.
Posts: 206
Threads: 31
Joined: Jul 2010
Reputation:
0
Send me to the nearest MySQL tutorial.
Posts: 944
Threads: 77
Joined: Dec 2010
Reputation:
0
I still use Dini. Why?
Its very easy and what i need, its not to fast but its ok.
Posts: 1,506
Threads: 69
Joined: Feb 2008
Quote:
Originally Posted by Markx
I still use Dini. Why?
Its very easy and what i need, its not to fast but its ok.
|
I use MX_Ini because none of the others i tested simply wouldn't work even if i tried the creators example xD
Don't know why, but I use It and It's simple.
pawn Код:
new file = ini_openFile("file.whatever");
ini_setFloat(file,"Set",Float);
ini_setString(file,"String","Set");
ini_setInteger(file,"Integer",100);
ini_getFloat(file,"Get",float);
ini_getString(file,"String",Get,32);
ini_getInteger(file,"Integer",get);
ini_closeFile(file);
As simple as that, and is much much faster then dini.
No troubles.
Posts: 206
Threads: 31
Joined: Jul 2010
Reputation:
0
I may just do DJson, since I already know it.
DJson is just Dini on steriods