Whats better for storing data?
#1

Whats better for saving player stats?
Y_ini, DJson, MySQL, or other _______?
Reply
#2

Depends on your needs. I prefer MySQL tho'.
Reply
#3

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?
Reply
#4

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.
Reply
#5

I suggest you using MySQL.

But if you don't want to learn it then use y_ini.
Reply
#6

Send me to the nearest MySQL tutorial.
Reply
#7

Quote:
Originally Posted by Desertsoulz
Посмотреть сообщение
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?
There will be certain aspects of your script which may be sped up by using a different storing method. Combining the use of the different methods for areas which they are best suited will be your best bet.
Reply
#8

I still use Dini. Why?

Its very easy and what i need, its not to fast but its ok.
Reply
#9

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.
Reply
#10

I may just do DJson, since I already know it.
DJson is just Dini on steriods
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)