Expand description
Database-specific type exports.
This module contains all the conditional feature exports for different database backends, keeping them organized in one place.
Re-exports§
pub use crate::postgres::Params as PostgresParams;pub use crate::postgres::build_result_set as postgres_build_result_set;
Structs§
- Sqlite
Params Execute - Wrapper for
SQLiteparameters for execution. - Sqlite
Params Query - Wrapper for
SQLiteparameters for queries.
Functions§
- sqlite_
build_ result_ set - Build a result set from a
SQLitequery Only SELECT queries return rows affected. If a DML is sent, it does run it. If there’s more than one query in the statement, idk which statement will be run.