There are various advantages in a using a SQLite as a database with the best being that it’s small, fast and reliable.
The best way to use SQLite is to embed it in the game using the recommended amalgamation source code available on sqlite.org, but it is also available as a library for Windows (DLL) or Linux (shared-library .so ) .
From a licensing point of view, using SQLite in any commercial game is also VERY safe since SQLite’s source has been released into the public domain.
The following steps should allow C++ programmers to embed SQLite into their games.
>>> Read more here <<<
