#sqlite #sqlx #database-driver #direct #necessary

sqlx-sqlite

SQLite driver implementation for SQLx. Not for direct use; see the sqlx crate for details.

9 releases

0.7.4 Mar 12, 2024
0.7.3 Nov 23, 2023
0.7.2 Sep 26, 2023
0.7.1 Jul 15, 2023
0.0.0 Nov 27, 2019

#870 in Database interfaces

Download history 158063/week @ 2024-01-23 160490/week @ 2024-01-30 164120/week @ 2024-02-06 154669/week @ 2024-02-13 169796/week @ 2024-02-20 177280/week @ 2024-02-27 186716/week @ 2024-03-05 190156/week @ 2024-03-12 178155/week @ 2024-03-19 168745/week @ 2024-03-26 196593/week @ 2024-04-02 193658/week @ 2024-04-09 204798/week @ 2024-04-16 206973/week @ 2024-04-23 193094/week @ 2024-04-30 161448/week @ 2024-05-07

802,200 downloads per month
Used in 380 crates (3 directly)

MIT/Apache

730KB
14K SLoC

SQLite database driver.

Note: linkage is semver-exempt.

This driver uses the libsqlite3-sys crate which links the native library for SQLite 3. For portability, we enable the bundled feature which builds and links SQLite from source.

We reserve the right to upgrade the version of libsqlite3-sys as necessary to pick up new 3.x.y versions of SQLite.

Due to Cargo's requirement that only one version of a crate that links a given native library exists in the dependency graph at a time, using SQLx alongside another crate linking libsqlite3-sys like rusqlite is a semver hazard.

If you are doing so, we recommend pinning the version of both SQLx and the other crate you're using to prevent a cargo update from breaking things, e.g.:

sqlx = { version = "=0.7.0", features = ["sqlite"] }
rusqlite = "=0.28.0"

and then upgrade these crates in lockstep when necessary.

Dependencies

~30MB
~574K SLoC