MySQL, SQLite, Y_INI, or other?
#2

SQLite, it's easy and everything is stored into 1 file( database ).

with a database browser you can select everything you want, way easier than manually going through every userfile with INI systems.

for example:

pawn Код:
SELECT * FROM \"Players\" WHERE \"adminlevel\" > 0;
selects EVERY player from the database that has an adminlevel greater than 0, meaning the person is admin.

you then can select one of them and delete it, or do other stuff with it.

or if you're looking for a specific person:

pawn Код:
SELECT * FROM \"Players\" WHERE \"name\" = 'yourname'
Reply


Messages In This Thread
MySQL, SQLite, Y_INI, or other? - by Galileo - 26.12.2013, 12:47
Re: MySQL, SQLite, Y_INI, or other? - by Smileys - 26.12.2013, 12:55
Re: MySQL, SQLite, Y_INI, or other? - by Kyl3 - 26.12.2013, 12:57
Re: MySQL, SQLite, Y_INI, or other? - by Cypress - 26.12.2013, 13:03
Re: MySQL, SQLite, Y_INI, or other? - by PT - 26.12.2013, 13:03
Re: MySQL, SQLite, Y_INI, or other? - by Galileo - 26.12.2013, 15:06
Re: MySQL, SQLite, Y_INI, or other? - by [WA]iRonan - 26.12.2013, 15:09
Re: MySQL, SQLite, Y_INI, or other? - by Vince - 26.12.2013, 15:38

Forum Jump:


Users browsing this thread: 1 Guest(s)