Sqlite

Learn how to use SQLite, the light SQL database system/format.

SQLite is a C library that implements a small, fast, reliable, self-contained and full-featured engine. The database format it uses can be stored in memory or on a single file.

There are many crates that can interface with SQLite. We’ll explore rusqlite, which is quite easy to use.

First steps with rusqlite

In our Cargo.toml, weneed to add:

rusqlite = "0.26.1"

If SQLite is ...