SQLite

SQLite

SQLite is a relational database that’s compatible with SQL. Unlike other SQL-based systems such as MySQL and PostgreSQL, SQLite doesn’t use a client-server architecture. The whole program is contained in a C library, which gets embedded into applications. The database becomes an integral part of the program, eliminating resource-intensive standalone processes.

SQLite stores its data in a single cross-platform file. As there’s no dedicated server or specialized filesystem, “deploying” SQLite is as simple as linking its library and creating a new regular file.


1.png2.png3.png