3 unstable releases

0.2.1 Mar 8, 2024
0.2.0 Mar 7, 2024
0.1.0 Jan 4, 2024

#1033 in Database interfaces

Download history 4/week @ 2023-12-30 23/week @ 2024-01-06 72/week @ 2024-01-13 87/week @ 2024-01-20 136/week @ 2024-01-27 125/week @ 2024-02-03 165/week @ 2024-02-10 133/week @ 2024-02-17 152/week @ 2024-02-24 383/week @ 2024-03-02 453/week @ 2024-03-09 363/week @ 2024-03-16 423/week @ 2024-03-23 624/week @ 2024-03-30 367/week @ 2024-04-06

1,857 downloads per month
Used in 6 crates (2 directly)

MIT license

30MB
594K SLoC

C 570K SLoC // 0.3% comments Rust 8K SLoC // 0.0% comments Shell 7.5K SLoC // 0.2% comments M4 7K SLoC // 0.2% comments Lua 536 SLoC // 0.1% comments Python 393 SLoC // 0.2% comments Automake 120 SLoC // 0.2% comments

Contains (obscure autoconf code, 6KB) configure.ac

License Discord Ask AI

What is libSQL?

libSQL is an open source, open contribution fork of SQLite, created and maintained by Turso. We aim to evolve it to suit many more use cases than SQLite was originally designed for, and plan to use third-party OSS code wherever it makes sense.

libSQL is licensed under an Open Source License, and we adhere to a clear Code of Conduct

Features

  • Embedded replicas that allow you to have replicated database inside your app.
  • libSQL server for remote SQLite access, similar to PostgreSQL or MySQL
  • Supports Rust, JavaScript, Python, Go, and more.

There are also various improvements and extensions to the core SQLite:

The comprehensive description can be found here

Getting Started

The project provides two interfaces: the libSQL API, which supports all the features, and the SQLite C API for compatibility.

To get started with the libSQL API:

To build the SQLite-compatible C library and tools, run:

cargo xtask build

To run the SQL shell, launch the libsql program:

$ cd libsql-sqlite3 && ./libsql
libSQL version 0.2.1 (based on SQLite version 3.43.0) 2023-05-23 11:47:56
Enter ".help" for usage hints.
Connected to a transient in-memory database.
Use ".open FILENAME" to reopen on a persistent database.
libsql>

Docker

To run libSQL using docker, refer to the Docker Docs

Why a fork?

SQLite has solidified its place in modern technology stacks, embedded in nearly any computing device you can think of. Its open source nature and public domain availability make it a popular choice for modification to meet specific use cases.

But despite having its code available, SQLite famously doesn't accept external contributors and doesn't adhere to a code of conduct. So community improvements cannot be widely enjoyed.

There have been other forks in the past, but they all focus on a specific technical difference. We aim to be a community where people can contribute from many different angles and motivations.

We want to see a world where everyone can benefit from all of the great ideas and hard work that the SQLite community contributes back to the codebase. Community contributions work well, because we’ve done it before. If this was possible, what do you think SQLite could become?

You can read more about our goals and motivation in our product vision and our announcement article

Compatibility with SQLite

Compatibility with SQLite is of great importance for us. But it can mean many things. So here's our stance:

  • The file format: libSQL will always be able to ingest and write the SQLite file format. We would love to add extensions like encryption, and CRC that require the file to be changed. But we commit to always doing so in a way that generates standard sqlite files if those features are not used.
  • The API: libSQL will keep 100% compatibility with the SQLite API, but we may add additional APIs.
  • Embedded: SQLite is an embedded database that can be consumed as a single .c file with its accompanying header. libSQL will always be embeddable, meaning it runs inside your process without needing a network connection. But we may change the distribution, so that object files are generated, instead of a single .c file.

Dependencies

~0.6–17MB
~210K SLoC