SQLite3
SQLite3 is a lightweight, self-contained, serverless relational database management system that operates on a single file stored locally. It does not require a separate server process, making it ideal for embedded applications, mobile apps, and lightweight data storage.
SQLite3 follows SQL standards and provides ACID-compliant transactions, but it is designed for local storage rather than large-scale or concurrent operations. The entire database is stored in a single file so no server installation or setup is needed and is cross-platform.
The default name for a SQLite3 database is the name of the project with the .db extension, for example, data.db for a project named data.
Query Syntax
To interact with an SQLite database, you can use the command-line tool:
Last updated
Was this helpful?