Write and query SQLite databases in a cloud workspace.
Start coding free →SQLite is a lightweight, open-source database that runs as a library inside your application rather than as a separate server. It stores data in a local file and supports standard SQL: queries, transactions, indexes, and data types including integers, floats, strings, and BLOBs. Language bindings cover C, C++, Java, Python, and most others. Open a RunCode workspace and SQLite is ready in under a minute.
Open a SQLite workspace →SQLite is widely used in mobile apps, desktop software, and web browsers because there is no server to install or configure. Your application links the library, opens a file, and queries it. That makes it a natural fit for prototypes, local scripts, and apps where a full server database would be overkill. Transactions keep writes consistent, and the SQL feature set covers joins, subqueries, and common aggregate functions.