Expand description
Proxy to manipulate SQL queries
Modules§
- mysql
- postgres
- Postgresql connection
- sqlite
- 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 rawrusqlite::Conn
;sqlite::Log
augments a connection by log the requests.
Structs§
- Log
- Implementation of a wrapper that output the statement to as an
info
level log before running the query using the providing connection.