18.07.2017, 18:59
Using ini will be easier because the principle isn't that hard either
just a file with headers/tags and key=value under it
filename.ini
In my opinion, SQL might be a harder way to go, because it contains terms which need more understanding, reading and practice.
ini is a more familiar approach in my opinion because people are more familiar with creating a .txt file and editing them.
the only thing you might be stuck with getting around is "headers" aka "tags"
which as I wrote in the example above, just groups the key and value.
Nevertheless, after learning ini, it might serve as a gate to learning the basics of sql
just a file with headers/tags and key=value under it
filename.ini
pawn Код:
[users]
name=Ramboi
password=unsafePassword
ini is a more familiar approach in my opinion because people are more familiar with creating a .txt file and editing them.
the only thing you might be stuck with getting around is "headers" aka "tags"
which as I wrote in the example above, just groups the key and value.
Nevertheless, after learning ini, it might serve as a gate to learning the basics of sql