Expand description
SQLite connection - a trait is defined to be implemented by SQLite connection.
This allow functionalities to be added to the connection directly. Two implementations
of the trait are provided: sqlite::Conn
provide a wrapper around the raw rusqlite::Conn
;
sqlite::Log
augments a connection by log the requests.
Structs§
Traits§
- Sqlite
Trait - Generic trait exposing methods used for interaction with SQLite
in
DeriveSqlite
macro implementation.