Database

From Multi Theft Auto: Wiki
Revision as of 03:04, 24 May 2012 by Kzman (talk | contribs) (Page about db files created. Please expand it)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

MTA uses a database system based on files. This system is sqlite, an embedded relational database management system.

Files

There are two main database files for storing data:

  • internal.db: this contains user account data (usernames, passwords and account data stored by using the setAccountData and getAccountData functions.
  • regystry.db: this is the main database file, all the executeSQL* scrtipting functions work with this file.

Functions