Crate sqlx_sqlite
source ·Expand description
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.
Modules§
- Conversions between Rust and SQLite types.
Structs§
- Sqlite database driver.
- Options and flags which can be used to configure a SQLite connection.
- A connection to an open Sqlite database.
- Implementation of
Row
for SQLite. - Implementation of [
TransactionManager
] for SQLite. - Type information for a SQLite type.
Enums§
- Refer to SQLite documentation for the meaning of the database journaling mode.
- Refer to SQLite documentation for the meaning of the connection locking mode.
- Refer to SQLite documentation for the meaning of various synchronous settings.
Traits§
- An alias for
Executor<'_, Database = Sqlite>
.
Type Aliases§
- An alias for
Pool
, specialized for SQLite. - An alias for
PoolOptions
, specialized for SQLite.